Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2169)

Unified Diff: Tools/TestResultServer/model/jsonresults.py

Issue 296423002: TestResultServer: Add failure 'LEAK' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Modify jsonresults_unittest.py Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/TestResultServer/model/jsonresults.py
diff --git a/Tools/TestResultServer/model/jsonresults.py b/Tools/TestResultServer/model/jsonresults.py
old mode 100755
new mode 100644
index 984808bd161ad48cfc8c31cd6bcb5717052780ed..7a50ff880f20a832df3a152fc8cff70337c6bbca
--- a/Tools/TestResultServer/model/jsonresults.py
+++ b/Tools/TestResultServer/model/jsonresults.py
@@ -72,6 +72,7 @@ PASS = "P"
SKIP = "X"
TEXT = "F"
TIMEOUT = "T"
+LEAK = "K"
AUDIO_STRING = "AUDIO"
CRASH_STRING = "CRASH"
@@ -86,6 +87,7 @@ PASS_STRING = "PASS"
SKIP_STRING = "SKIP"
TEXT_STRING = "TEXT"
TIMEOUT_STRING = "TIMEOUT"
+LEAK_STRING = "LEAK"
FAILURE_TO_CHAR = {
AUDIO_STRING: AUDIO,
@@ -101,6 +103,7 @@ FAILURE_TO_CHAR = {
SKIP_STRING: SKIP,
TEXT_STRING: TEXT,
TIMEOUT_STRING: TIMEOUT,
+ LEAK_STRING: LEAK,
}
# FIXME: Use dict comprehensions once we update the server to python 2.7.

Powered by Google App Engine
This is Rietveld 408576698