gitlab-ci tests: switched to 'cmake test' target

This commit is contained in:
Nick 2018-05-16 22:01:11 +02:00
parent 809857ab98
commit fa0b7a295e
2 changed files with 4 additions and 4 deletions

View File

@ -69,8 +69,8 @@ test_x86:
script:
- mkdir -p output.dir/
- cd output.dir
- cmake -DTESTS=True ../
- make VERBOSE=1
- cmake ../
- make
# execute all tests
- ./test_*
- make VERBOSE=1 CTEST_OUTPUT_ON_FAILURE=1 test

View File

@ -24,7 +24,7 @@ function teardown() {
}
trap teardown EXIT
setup || exit 1
setup || (echo "failed to setup" && exit 1)
$CWD/run_itests.py || exit 1