diff options
author | urbanjost <urbanjost@comcast.net> | 2020-12-03 23:07:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 23:07:03 -0500 |
commit | 185706c62138479dea53b3cb1e49e3f48045a8da (patch) | |
tree | 9bb1c7ee716b57c22b3511fe7193f9e57fce3768 /ci/run_tests.sh | |
parent | add0d607aea2e7ce2e04dd3161b549f4210224fc (diff) | |
parent | af67eaedf86b312c86b9f081a169cc6e220f0cb6 (diff) | |
download | fpm-185706c62138479dea53b3cb1e49e3f48045a8da.tar.gz fpm-185706c62138479dea53b3cb1e49e3f48045a8da.zip |
Merge branch 'master' into compiler
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-x | ci/run_tests.sh | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 894b1f0..3588012 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -1,30 +1,26 @@ #!/bin/bash +set -ex -get_abs_filename() { - # $1 : relative filename - filename=$1 - parentdir=$(dirname "${filename}") +cd $(dirname $0)/../fpm - if [ -d "${filename}" ]; then - echo "$(cd "${filename}" && pwd)" - elif [ -d "${parentdir}" ]; then - echo "$(cd "${parentdir}" && pwd)/$(basename "${filename}")" - fi -} +fpm build $@ -set -ex +# Run fpm executable +fpm run $@ +fpm run $@ -- --version +fpm run $@ -- --help -cd fpm -fpm build -fpm run +# Run tests rm -rf fpm_scratch_*/ -fpm test +fpm test $@ rm -rf fpm_scratch_*/ -f_fpm_path="$(get_abs_filename $(find build -regex 'build/.*/app/fpm'))" -"${f_fpm_path}" +# Build example packages +f_fpm_path="$(fpm run $@ --runner echo)" +cd ../example_packages/ +rm -rf ./*/build -cd ../example_packages/hello_world +cd hello_world "${f_fpm_path}" build ./build/gfortran_debug/app/hello_world @@ -77,3 +73,6 @@ cd ../link_external cd ../link_executable "${f_fpm_path}" build ./build/gfortran_debug/app/gomp_test + +# Cleanup +rm -rf ./*/build
\ No newline at end of file |