aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorLKedward <laurence.kedward@bristol.ac.uk>2020-09-07 10:10:27 +0100
committerLKedward <laurence.kedward@bristol.ac.uk>2020-09-07 10:10:27 +0100
commit5500927beb1a81a39cf3f155a66b8fe5cad5b769 (patch)
tree450a290be685f2e48d1227f0570dbcafef40faa4 /ci
parentdd6ac6fc0fedd377bb95f92616aec29a01f0dcbf (diff)
downloadfpm-5500927beb1a81a39cf3f155a66b8fe5cad5b769.tar.gz
fpm-5500927beb1a81a39cf3f155a66b8fe5cad5b769.zip
Update: test scripts for fortran fpm
Fortran fpm can now build 'hello_complex' example
Diffstat (limited to 'ci')
-rwxr-xr-xci/run_tests.bat21
-rwxr-xr-xci/run_tests.sh10
2 files changed, 29 insertions, 2 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat
index ea50a70..9435e0d 100755
--- a/ci/run_tests.bat
+++ b/ci/run_tests.bat
@@ -21,5 +21,24 @@ if errorlevel 1 exit 1
..\..\..\fpm\build\gfortran_debug\app\fpm build
if errorlevel 1 exit 1
-.\build\gfortran_debug\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
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
index 0d9e7b1..3033c2a 100755
--- a/ci/run_tests.sh
+++ b/ci/run_tests.sh
@@ -7,6 +7,14 @@ fpm build
fpm run
fpm test
build/gfortran_debug/app/fpm
+
cd ../test/example_packages/hello_world
../../../fpm/build/gfortran_debug/app/fpm build
-./build/gfortran_debug/hello_world
+./build/gfortran_debug/app/hello_world
+
+cd ../hello_complex
+../../../fpm/build/gfortran_debug/app/fpm build
+./build/gfortran_debug/app/say_Hello
+./build/gfortran_debug/app/say_goodbye
+./build/gfortran_debug/test/greet_test
+./build/gfortran_debug/test/farewell_test \ No newline at end of file