diff options
Diffstat (limited to 'tools/valgrind')
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index 01ef652..a924b36 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -180,7 +180,7 @@ class ChromeTests: if line.startswith("#") or line.startswith("//") or line.isspace(): continue line = line.rstrip() - test_prefixes = ["FLAKY", "FAILS"] + test_prefixes = ["FLAKY", "FAILS", "MAYBE"] for p in test_prefixes: # Strip prefixes from the test names. line = line.replace(".%s_" % p, ".") |