Skip to content

Commit f151da0

Browse files
committed
Merge pull request #85 from pmienk/master
Regenerate build artifacts.
2 parents 525e395 + 15905d6 commit f151da0

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

install.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,16 @@ make_tests()
401401

402402
# Build and run unit tests relative to the primary directory.
403403
# VERBOSE=1 ensures test-suite.log output sent to console (gcc).
404-
make_jobs $JOBS check VERBOSE=1
404+
if ! make_jobs $JOBS check VERBOSE=1; then
405+
if [ -e "test-suite.log" ]; then
406+
echo "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"
407+
echo "cat test-suite.log"
408+
echo "------------------------------"
409+
cat "test-suite.log"
410+
echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
411+
fi
412+
exit 1
413+
fi
405414
}
406415

407416
pop_directory()

0 commit comments

Comments
 (0)