diff options
author | Jeffrey Walton <noloader@gmail.com> | 2017-05-26 09:29:05 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2017-05-26 09:29:05 -0400 |
commit | 3bb801101f7f6eaea51cbb6a7ba0ae5349885b99 (patch) | |
tree | 90eb47468b718868840486287da95d201cdf7e52 /TestScripts/cryptest.sh | |
parent | b770b21dc4fee01bde807f4c19e859a680dd9156 (diff) | |
download | cryptopp-git-3bb801101f7f6eaea51cbb6a7ba0ae5349885b99.tar.gz |
Updated test script
Diffstat (limited to 'TestScripts/cryptest.sh')
-rwxr-xr-x | TestScripts/cryptest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TestScripts/cryptest.sh b/TestScripts/cryptest.sh index a1a0dfd3..e2a058d6 100755 --- a/TestScripts/cryptest.sh +++ b/TestScripts/cryptest.sh @@ -5560,7 +5560,7 @@ echo | tee -a "$TEST_RESULTS" # "Error" is from the GNU assembler # "error" is from the sanitizers # "Illegal", "Conditional", "0 errors" and "suppressed errors" are from Valgrind. -ECOUNT=$("$EGREP" '(Error|ERROR|error|FAILED|Illegal|Conditional|CryptoPP::Exception)' $TEST_RESULTS | "$EGREP" -v '( 0 errors|suppressed errors|error detector)' | wc -l | "$AWK" '{print $1}') +ECOUNT=$("$EGREP" '(Error|ERROR|error|FAILED|Illegal|Conditional|CryptoPP::Exception)' $TEST_RESULTS | "$EGREP" -v '( 0 errors|suppressed errors|error detector|format-security)' | wc -l | "$AWK" '{print $1}') if (( "$ECOUNT" == "0" )); then echo "No failures detected" | tee -a "$TEST_RESULTS" else |