JavaScript Tests - fix false negatives due to embedded "false!" in output, bug 397545, r=jorendorff, not part of the build

git-svn-id: svn://10.0.0.236/trunk@236712 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bclary%bclary.com 2007-09-26 14:24:01 +00:00
parent 68a71c4730
commit aa04bf37e6

View File

@ -314,7 +314,7 @@ sub execute_tests {
}
# watch for failures
if ($line =~ /failed!/i) {
if ($line =~ /^\wFAILED!/) {
$failure_lines .= $line;
}