Fix the travis-job script to always run external tests

Run the external tests even when the Bro tests fail.
This commit is contained in:
Daniel Thayer 2018-03-22 19:36:40 -05:00
parent 9271b2032d
commit aadcd5d2cc

View file

@ -47,10 +47,11 @@ run_coverity() {
}
run() {
set -e
# Run the tests
# Run the tests, but don't exit upon failure.
make -C testing/btest btest-verbose
ret=$?
set -e
# Get the test repo
make -C testing/external init
@ -67,6 +68,9 @@ run() {
# Run the external tests
make -C testing/external
# If we get here, then external tests were successful.
exit $ret
}
failure() {