Skip to content
Snippets Groups Projects
Commit fde10a9e authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Update CI scripts: print 'tests/test-suite.log' if the tests fail.

parent 54265dbd
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,6 @@ PKG_CONFIG_PATH="${YAXT_ROOT}/lib/pkgconfig:${PPM_ROOT}/lib/pkgconfig"
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -42,6 +42,6 @@ make -j8
# Run with '-j' to submit as many MPI jobs as possible
# (see '--with-concurrent-mpi-checks'):
make -j check
make -j check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -42,6 +42,6 @@ make -j8
# Run with '-j' to submit as many MPI jobs as possible
# (see '--with-concurrent-mpi-checks'):
make -j check
make -j check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -27,6 +27,6 @@ PKG_CONFIG_PATH="${YAXT_ROOT}/lib/pkgconfig:${PPM_ROOT}/lib/pkgconfig"
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -27,6 +27,6 @@ PKG_CONFIG_PATH="${YAXT_ROOT}/lib/pkgconfig:${PPM_ROOT}/lib/pkgconfig"
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -34,6 +34,6 @@ PKG_CONFIG_PATH="${YAXT_ROOT}/lib/pkgconfig:${PPM_ROOT}/lib/pkgconfig"
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -43,6 +43,6 @@ PKG_CONFIG_PATH="${YAXT_ROOT}/lib/pkgconfig:${PPM_ROOT}/lib/pkgconfig"
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -95,6 +95,6 @@ rsync -uavz "${PPM_ROOT}/" "${LOCAL_PPM_ROOT}" --exclude='*.la' --exclude='*.pc'
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
check_all_tests_passed tests/test-suite.log
......@@ -64,4 +64,4 @@ acx_cv_have_pnetcdf=no
make -j8
make -j8 check
make -j8 check || { cat tests/test-suite.log; exit 1; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment