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

Unified Diff: Tools/GardeningServer/ui/ct-results-panel-tests.html

Issue 459983002: Kill ui.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated to ToT Created 6 years, 4 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/GardeningServer/ui/ct-results-panel-tests.html
diff --git a/Tools/GardeningServer/ui/ct-results-panel-tests.html b/Tools/GardeningServer/ui/ct-results-panel-tests.html
index cdc4e096206b17159b6bc015d46c3c0cf1af04db..c81e4c0fbc28d998d8638b35941908228e42aabb 100644
--- a/Tools/GardeningServer/ui/ct-results-panel-tests.html
+++ b/Tools/GardeningServer/ui/ct-results-panel-tests.html
@@ -9,85 +9,83 @@ found in the LICENSE file.
<script>
(function () {
-var kExampleFailures = [{
- "testName": "plugins/gesture-events-scrolled.html",
- "resultNodesByBuilder": {
- "WebKit Win7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "time": 0.9
- },
- "WebKit Mac10.6 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 1.8
- },
- "WebKit Mac10.7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 3.2
- }
+var kExampleFailures = [
+ new CTFailure("testName", "plugins/gesture-events-scrolled.html",
+ {
+ "WebKit Win7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "time": 0.9
+ },
+ "WebKit Mac10.6 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 1.8
+ },
+ "WebKit Mac10.7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 3.2
+ }
},
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165
-}, {
- "testName": "plugins/transformed-events.html",
- "resultNodesByBuilder": {
- "WebKit Win7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "time": 0.6
- },
- "WebKit Mac10.6 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 1.4
- },
- "WebKit Mac10.7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 3
- }
+ 177164, 177165
+ ),
+ new CTFailure("testName", "plugins/transformed-events.html",
+ {
+ "WebKit Win7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "time": 0.6
+ },
+ "WebKit Mac10.6 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 1.4
+ },
+ "WebKit Mac10.7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 3
+ }
},
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165
-}, {
- "testName": "plugins/gesture-events.html",
- "resultNodesByBuilder": {
- "WebKit Win7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "time": 1.7
- },
- "WebKit Mac10.6 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 2.5
- },
- "WebKit Mac10.7 (dbg)": {
- "expected": "PASS",
- "is_unexpected": true,
- "actual": "CRASH",
- "has_stderr": true,
- "time": 3.4
- }
+ 177164, 177165
+ ),
+ new CTFailure("testName", "plugins/gesture-events.html",
+ {
+ "WebKit Win7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "time": 1.7
+ },
+ "WebKit Mac10.6 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 2.5
+ },
+ "WebKit Mac10.7 (dbg)": {
+ "expected": "PASS",
+ "is_unexpected": true,
+ "actual": "CRASH",
+ "has_stderr": true,
+ "time": 3.4
+ }
},
- "oldestFailingRevision": 177164,
- "newestPassingRevision": 177165
-}];
+ 177164, 177165
+ ),
+];
module("ct-results-panel");
« no previous file with comments | « Tools/GardeningServer/ui/ct-results-detail-tests.html ('k') | Tools/GardeningServer/ui/ct-sheriff-o-matic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698