jjb: run make check with --keep-going
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 22 Aug 2017 20:30:14 +0000 (16:30 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Tue, 22 Aug 2017 20:30:23 +0000 (16:30 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
scripts/babeltrace/build.sh
scripts/liburcu/build.sh
scripts/lttng-tools/build.sh
scripts/lttng-ust/build.sh

index 680d4d2221adff495d8ffc3182cd7051929c4c2d..920c65960b5dd051ab8c667cbb65741b91514f9f 100755 (executable)
@@ -214,7 +214,7 @@ $MAKE -j "$($NPROC)" V=1
 $MAKE install
 
 # Run tests
-$MAKE check
+$MAKE --keep-going check
 
 # Copy tap logs for the jenkins tap parser
 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
index e731e19b4647b183d93916ebf22e3f59282d6431..6b0298ae8ba9ad676eb8f8ad135a9d64f11f826f 100755 (executable)
@@ -210,7 +210,7 @@ $MAKE -j "$($NPROC)" V=1
 $MAKE install
 
 # Run tests
-$MAKE check
+$MAKE --keep-going check
 # Only run regtest for 0.9 and up
 if vergte "$PACKAGE_VERSION" "0.9"; then
    $MAKE regtest
index 6cfe88cc0c1d1ad40ac73fc36b258f06df84a977..756b4aba0faa318f14c7e645c45af4943f1d6c5d 100755 (executable)
@@ -347,7 +347,7 @@ if [ "$RUN_TESTS" = "yes" ]; then
     if [ "$conf" != "no-ust" ]; then
         # Run 'unit_tests', 2.8 and up has a new test suite
         if vergte "$PACKAGE_VERSION" "2.8"; then
-            make check
+            make --keep-going check
             rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*'" $BUILD_PATH/tests/" "$TAPDIR"
         else
             prove --merge -v --exec '' - < "$BUILD_PATH/tests/unit_tests" --archive "$TAPDIR/unit/" || true
index 883154ebdaf824b3656b1f0078159d84141fe253..8c6e47c9a6012c6bd135079a85a7a414576e8562 100755 (executable)
@@ -165,7 +165,7 @@ $MAKE -j "$($NPROC)" V=1
 $MAKE install
 
 # Run tests
-$MAKE check
+$MAKE --keep-going check
 
 # Copy tap logs for the jenkins tap parser
 rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
This page took 0.025309 seconds and 4 git commands to generate.