From 5717f84d1f12b2003e03801b30cf6fc8e3b78c8f Mon Sep 17 00:00:00 2001 From: David Mandelin Date: Wed, 6 Jan 2010 15:23:19 -0800 Subject: [PATCH] Bug 537304: fix spurious PASS output in trace-tests console output, r=jorendorff --HG-- extra : rebase_source : c9fe259a9538c4446e201372b17131c6a6b9b2fd --- js/src/tests/jstests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/tests/jstests.py b/js/src/tests/jstests.py index c2c6fe33d562..5c625759ae77 100644 --- a/js/src/tests/jstests.py +++ b/js/src/tests/jstests.py @@ -156,7 +156,7 @@ class ResultsSink: print 'FAIL' + suffix def all_passed(self): - return not self.groups.get((False, True, False)) + return 'REGRESSIONS' not in self.groups def run_tests(tests, results): """Run the given tests, sending raw results to the given results accumulator."""