mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
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:
parent
9271b2032d
commit
aadcd5d2cc
1 changed files with 7 additions and 3 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue