From 8c8e49a6363da9c33ac9631931bb8dc6ec1bb9e8 Mon Sep 17 00:00:00 2001 From: "sonmi%netscape.com" Date: Tue, 24 Jul 2001 20:36:48 +0000 Subject: [PATCH] added more errorindicators (segmentation fault, bus error, ..., bug 83418 a recent fix in the toolstest had produced a problem in the diff of the backwardcompatibility test see bug 90244 - fixed --- security/nss/tests/qa_stat | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/security/nss/tests/qa_stat b/security/nss/tests/qa_stat index 77ff161add72..7e4ddf2cfb43 100755 --- a/security/nss/tests/qa_stat +++ b/security/nss/tests/qa_stat @@ -424,6 +424,14 @@ qa_errorlist() grep -vi "fatal" | grep -vi "TCP connection reset" | grep $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP -i failed + grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP "segmentation violation" \ + ${MACHINES_TO_CHECK}*/output.log + grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP "memory fault" \ + ${MACHINES_TO_CHECK}*/output.log + grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP "bus error" \ + ${MACHINES_TO_CHECK}*/output.log + grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP "core dumped" \ + ${MACHINES_TO_CHECK}*/output.log grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP fatal \ ${MACHINES_TO_CHECK}*/output.log grep -i $BEFORE_CONTEXT_GREP $AFTER_CONTEXT_GREP -i\ @@ -629,6 +637,8 @@ CURRENT_TABLE="BC" #so html_line can determine which fields to write for w in `ls */results.html` do diff -b $w bct/$w 2>>$BCMISSINGLIST | + grep -v "Listing signed files in jar .signtool -v.*Passed" | + grep -v "Listing signed files in jar .signtool -w.*Passed" | grep -v "backward compatibility" | grep -v "Can.t run pk12util tests for NSS 3.2" | grep -v "porting Alice.s email cert " | @@ -641,6 +651,8 @@ CURRENT_TABLE="BC" #so html_line can determine which fields to write echo "diff $w bct/$w" echo "=========================================" diff -b $w bct/$w 2>&1 | + grep -v "Listing signed files in jar .signtool -v.*Passed" | + grep -v "Listing signed files in jar .signtool -w.*Passed" | grep -v "backward compatibility" | grep -v "Can.t run pk12util tests for NSS 3.2" | grep -v "porting Alice.s email cert " |