diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-05 09:58:13 +0100 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-05 09:59:50 +0100 |
commit | 03f79c6d74798dac0c4e5c260c4a700c167cbd53 (patch) | |
tree | 64866e88dbb555f4f34e67e8c1caeb6794a9d9b7 /ci | |
parent | 07c5828c9843e6e64aab50b7407bec05e38e27b3 (diff) | |
parent | 89813e843ccde573bad9c7231ecbd7623c5f1a7b (diff) | |
download | fpm-03f79c6d74798dac0c4e5c260c4a700c167cbd53.tar.gz fpm-03f79c6d74798dac0c4e5c260c4a700c167cbd53.zip |
Merge remote-tracking branch 'awvwgk/fortran-impl' into dependencies-merge
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run_tests.bat | 3 | ||||
-rwxr-xr-x | ci/run_tests.sh | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index 482cf79..ea50a70 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 diff --git a/ci/run_tests.sh b/ci/run_tests.sh index e046910..0d9e7b1 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -5,6 +5,7 @@ set -ex cd fpm fpm build fpm run +fpm test build/gfortran_debug/app/fpm cd ../test/example_packages/hello_world ../../../fpm/build/gfortran_debug/app/fpm build |