Added more Windows tests
This commit is contained in:
parent
adb349125f
commit
a376d08c5b
@ -42,17 +42,17 @@ cd %srcdir%\test\cmbuild
|
||||
|
||||
rem build release version
|
||||
cd %srcdir%\cmbuild
|
||||
rem %MSBUILD% HYPRE.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\lib-release.out
|
||||
rem %MSBUILD% INSTALL.vcxproj /p:Configuration=Release >> %outdir%\lib-release.out
|
||||
%MSBUILD% HYPRE.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\lib-release.out
|
||||
%MSBUILD% INSTALL.vcxproj /p:Configuration=Release >> %outdir%\lib-release.out
|
||||
cd %srcdir%\test\cmbuild
|
||||
rem %MSBUILD% ALL_BUILD.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\test-release.out
|
||||
%MSBUILD% ALL_BUILD.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\test-release.out
|
||||
|
||||
rem build debug version
|
||||
cd %srcdir%\cmbuild
|
||||
rem %MSBUILD% HYPRE.vcxproj /t:Rebuild /p:Configuration=Debug > %outdir%\lib-debug.out
|
||||
rem %MSBUILD% INSTALL.vcxproj /p:Configuration=Debug >> %outdir%\lib-debug.out
|
||||
%MSBUILD% HYPRE.vcxproj /t:Rebuild /p:Configuration=Debug > %outdir%\lib-debug.out
|
||||
%MSBUILD% INSTALL.vcxproj /p:Configuration=Debug >> %outdir%\lib-debug.out
|
||||
cd %srcdir%\test\cmbuild
|
||||
rem %MSBUILD% ALL_BUILD.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\test-debug.out
|
||||
%MSBUILD% ALL_BUILD.vcxproj /t:Rebuild /p:Configuration=Release > %outdir%\test-debug.out
|
||||
|
||||
rem create error file - inspect output file lines with "Error(s)" substring
|
||||
cd %rundir%
|
||||
|
||||
@ -27,11 +27,21 @@ rem run the cmake.bat script from rundir in a subshell to avoid overwriting vari
|
||||
rem (i.e., use 'cmd /c')
|
||||
cd %rundir%
|
||||
|
||||
cmd /c %scriptdir%\cmake.bat %srcdir% " "
|
||||
move %rundir%\cmake.dir %outdir%\cmake-default.dir
|
||||
move %rundir%\cmake.err %outdir%\cmake-default.err
|
||||
|
||||
cmd /c %scriptdir%\cmake.bat %srcdir% "-DHYPRE_USING_OPENMP=ON"
|
||||
move %rundir%\cmake.dir %outdir%\cmake-openmp.dir
|
||||
move %rundir%\cmake.err %outdir%\cmake-openmp.err
|
||||
|
||||
cmd /c %scriptdir%\cmake.bat %srcdir% "-DHYPRE_SEQUENTIAL=ON"
|
||||
move %rundir%\cmake.dir %outdir%\cmake-sequential.dir
|
||||
move %rundir%\cmake.err %outdir%\cmake-sequential.err
|
||||
|
||||
rem put more tests here...
|
||||
cmd /c %scriptdir%\cmake.bat %srcdir% "-DHYPRE_BIGINT=ON"
|
||||
move %rundir%\cmake.dir %outdir%\cmake-bigint.dir
|
||||
move %rundir%\cmake.err %outdir%\cmake-bigint.err
|
||||
|
||||
rem create error file - check file size of cmake error files
|
||||
cd %rundir%
|
||||
|
||||
Loading…
Reference in New Issue
Block a user