Index: tools/testrunner/local/statusfile.py |
diff --git a/tools/testrunner/local/statusfile.py b/tools/testrunner/local/statusfile.py |
index f86106b9d9cf8e2073e9c8ff123be7aad1649bc8..492b9d991515fcc6ff29e6594729d059b2ed47c1 100644 |
--- a/tools/testrunner/local/statusfile.py |
+++ b/tools/testrunner/local/statusfile.py |
@@ -35,7 +35,6 @@ OKAY = "OKAY" |
TIMEOUT = "TIMEOUT" |
CRASH = "CRASH" |
SLOW = "SLOW" |
-FLAKY = "FLAKY" |
FAST_VARIANTS = "FAST_VARIANTS" |
NO_VARIANTS = "NO_VARIANTS" |
# These are just for the status files and are mapped below in DEFS: |
@@ -46,7 +45,7 @@ FAIL_SLOPPY = "FAIL_SLOPPY" |
ALWAYS = "ALWAYS" |
KEYWORDS = {} |
-for key in [SKIP, FAIL, PASS, OKAY, TIMEOUT, CRASH, SLOW, FLAKY, FAIL_OK, |
+for key in [SKIP, FAIL, PASS, OKAY, TIMEOUT, CRASH, SLOW, FAIL_OK, |
FAST_VARIANTS, NO_VARIANTS, PASS_OR_FAIL, FAIL_SLOPPY, ALWAYS]: |
KEYWORDS[key] = key |
@@ -79,10 +78,6 @@ def OnlyFastVariants(outcomes): |
return FAST_VARIANTS in outcomes |
-def IsFlaky(outcomes): |
- return FLAKY in outcomes |
- |
- |
def IsPassOrFail(outcomes): |
return ((PASS in outcomes) and (FAIL in outcomes) and |
(not CRASH in outcomes) and (not OKAY in outcomes)) |