summaryrefslogtreecommitdiff
path: root/chromium/v8/tools/testrunner/local/verbose.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/tools/testrunner/local/verbose.py')
-rw-r--r--chromium/v8/tools/testrunner/local/verbose.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/tools/testrunner/local/verbose.py b/chromium/v8/tools/testrunner/local/verbose.py
index 00c330d2d9c..f6934675231 100644
--- a/chromium/v8/tools/testrunner/local/verbose.py
+++ b/chromium/v8/tools/testrunner/local/verbose.py
@@ -54,7 +54,7 @@ def PrintReport(tests):
skipped += 1
continue
if statusfile.TIMEOUT in o: timeout += 1
- if statusfile.IsPassOrFail(o): nocrash += 1
+ if statusfile.IsFlaky(o): nocrash += 1
if list(o) == [statusfile.PASS]: passes += 1
if statusfile.IsFailOk(o): fail_ok += 1
if list(o) == [statusfile.FAIL]: fail += 1