Fixing coverage.bare-mode-errors test.

This commit is contained in:
Robin Sommer 2013-05-01 15:28:45 -07:00
parent 6e74dc4dca
commit 9d483b7e74
12 changed files with 21 additions and 13 deletions

View file

@ -1,4 +1,11 @@
2.1-486 | 2013-05-01 15:28:45 -0700
* New framework for computing summary statistics in
base/framework/sumstats. This replaces the metrics frameworks, and
comes with a number of applications build on top, see NEWS. More
documentation to follow. (Seth Hall)
2.1-397 | 2013-04-29 21:19:00 -0700
* Fixing memory leaks in CompHash implementation. Addresses #987.

View file

@ -1 +1 @@
2.1-397
2.1-486

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
module SumStats;

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
module SumStats;

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
module SumStats;

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
@load base/utils/queue
module SumStats;

View file

@ -1,5 +1,5 @@
@load base/frameworks/sumstats/main
@load ./variance
@load base/frameworks/sumstats
module SumStats;

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
module SumStats;

View file

@ -1,4 +1,4 @@
@load base/frameworks/sumstats
@load base/frameworks/sumstats/main
module SumStats;

View file

@ -1,5 +1,5 @@
@load base/frameworks/sumstats/main
@load ./average
@load base/frameworks/sumstats
module SumStats;

View file

@ -3,12 +3,13 @@
# scripts that block after loading, e.g. start listening on a socket.
#
# Commonly, this test may fail if one forgets to @load some base/ scripts
# when writing a new bro scripts.
# when writing a new bro scripts. Look into "allerrors" to find out
# which script had trouble.
#
# @TEST-SERIALIZE: comm
#
# @TEST-EXEC: test -d $DIST/scripts
# @TEST-EXEC: for script in `find $DIST/scripts/ -name \*\.bro -not -path '*/site/*'`; do echo $script; if echo "$script" | egrep -q 'communication/listen|controllee'; then rm -rf load_attempt .bgprocs; btest-bg-run load_attempt bro -b $script; btest-bg-wait -k 2; cat load_attempt/.stderr >>allerrors; else bro -b $script 2>>allerrors; fi done || exit 0
# @TEST-EXEC: cat allerrors | grep -v "received termination signal" | sort | uniq > unique_errors
# @TEST-EXEC: for script in `find $DIST/scripts/ -name \*\.bro -not -path '*/site/*'`; do echo "=== $script" >>allerrors; if echo "$script" | egrep -q 'communication/listen|controllee'; then rm -rf load_attempt .bgprocs; btest-bg-run load_attempt bro -b $script; btest-bg-wait -k 2; cat load_attempt/.stderr >>allerrors; else bro -b $script 2>>allerrors; fi done || exit 0
# @TEST-EXEC: cat allerrors | grep -v "received termination signal" | grep -v '===' | sort | uniq > unique_errors
# @TEST-EXEC: if [ $(grep -c LibCURL_INCLUDE_DIR-NOTFOUND $BUILD/CMakeCache.txt) -ne 0 ]; then cp unique_errors unique_errors_no_elasticsearch; fi
# @TEST-EXEC: if [ $(grep -c LibCURL_INCLUDE_DIR-NOTFOUND $BUILD/CMakeCache.txt) -ne 0 ]; then btest-diff unique_errors_no_elasticsearch; else btest-diff unique_errors; fi