diff options
author | Philipp <pengel@hs-nb.de> | 2020-09-12 17:12:37 +0200 |
---|---|---|
committer | Philipp <pengel@hs-nb.de> | 2020-09-12 17:12:37 +0200 |
commit | c7c6ef042b7cf0bbad132dd5824a8446214caec4 (patch) | |
tree | 461b75b503fb838b26f05331b6cc976f3017d3ca /ci/run_tests.bat | |
parent | 61b84f8da66fa19be902baf8e6cbe711856f687f (diff) | |
parent | e02171d28bb783bb419b44ef453ca56286b389a6 (diff) | |
download | fpm-c7c6ef042b7cf0bbad132dd5824a8446214caec4.tar.gz fpm-c7c6ef042b7cf0bbad132dd5824a8446214caec4.zip |
Added new OS type checks.
Diffstat (limited to 'ci/run_tests.bat')
-rwxr-xr-x | ci/run_tests.bat | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index 99d0296..9435e0d 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -9,6 +9,9 @@ if errorlevel 1 exit 1 fpm run if errorlevel 1 exit 1 +fpm test +if errorlevel 1 exit 1 + build\gfortran_debug\app\fpm if errorlevel 1 exit 1 @@ -18,5 +21,24 @@ if errorlevel 1 exit 1 ..\..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 -.\hello_world +.\build\gfortran_debug\app\hello_world +if errorlevel 1 exit 1 + + +cd ..\hello_complex +if errorlevel 1 exit 1 + +..\..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 + +.\build\gfortran_debug\app\say_Hello +if errorlevel 1 exit 1 + +.\build\gfortran_debug\app\say_goodbye +if errorlevel 1 exit 1 + +.\build\gfortran_debug\test\greet_test +if errorlevel 1 exit 1 + +.\build\gfortran_debug\test\farewell_test +if errorlevel 1 exit 1
\ No newline at end of file |