diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run_tests.bat | 10 | ||||
-rwxr-xr-x | ci/run_tests.sh | 8 |
2 files changed, 18 insertions, 0 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index 0c0339c..44f6e5c 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -132,3 +132,13 @@ if errorlevel 1 exit 1 .\build\gfortran_debug\app\Program_with_module if errorlevel 1 exit 1 + + +cd ..\link_executable +if errorlevel 1 exit 1 + +%fpm_path% build +if errorlevel 1 exit 1 + +.\build\gfortran_debug\app\gomp_test +if errorlevel 1 exit 1 diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 625f37b..894b1f0 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -69,3 +69,11 @@ cd ../submodules cd ../program_with_module "${f_fpm_path}" build ./build/gfortran_debug/app/Program_with_module + +cd ../link_external +"${f_fpm_path}" build +./build/gfortran_debug/app/link_external + +cd ../link_executable +"${f_fpm_path}" build +./build/gfortran_debug/app/gomp_test |