| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <link rel="import" href="../ct-builder-grid.html"> | 7 <link rel="import" href="../ct-builder-grid.html"> |
| 8 | 8 |
| 9 <link rel="import" href="../ct-builder.html"> | 9 <link rel="import" href="../ct-builder.html"> |
| 10 | 10 |
| 11 <script> | 11 <script> |
| 12 (function () { | 12 (function () { |
| 13 | 13 |
| 14 var assert = chai.assert; | 14 var assert = chai.assert; |
| 15 | 15 |
| 16 var kExampleFailures = [{ | 16 var kExampleFailures = [ |
| 17 "testName": "plugins/gesture-events-scrolled.html", | 17 new CTFailure('layout_tests', "plugins/gesture-events-scrolled.html", |
| 18 "resultNodesByBuilder": { | 18 { |
| 19 "WebKit Win7 (dbg)": { | 19 "WebKit Win7 (dbg)": { |
| 20 "actual": "CRASH", | 20 "actual": "CRASH", |
| 21 "masterUrl": "http://master-one", | 21 "masterUrl": "http://master-one", |
| 22 "earliestFailingBuild": "1", | 22 "earliestFailingBuild": "1", |
| 23 }, | 23 }, |
| 24 "WebKit Mac10.6 (dbg)": { | 24 "WebKit Mac10.6 (dbg)": { |
| 25 "actual": "CRASH", | 25 "actual": "CRASH", |
| 26 "masterUrl": "http://master-one", | 26 "masterUrl": "http://master-one", |
| 27 "earliestFailingBuild": "2", | 27 "earliestFailingBuild": "2", |
| 28 }, | 28 }, |
| 29 "WebKit Mac10.7": { | 29 "WebKit Mac10.7": { |
| 30 "actual": "TEXT", | 30 "actual": "TEXT", |
| 31 "masterUrl": "http://master-one", | 31 "masterUrl": "http://master-one", |
| 32 "earliestFailingBuild": "3", | 32 "earliestFailingBuild": "3", |
| 33 } | 33 } |
| 34 }, | 34 }, 177164, 177165), |
| 35 "oldestFailingRevision": 177164, | 35 new CTFailure('layout_tests', "plugins/transformed-events.html", |
| 36 "newestPassingRevision": 177165 | 36 { |
| 37 }, { | 37 "WebKit Win7 (dbg)": { |
| 38 "testName": "plugins/transformed-events.html", | 38 "actual": "TEXT", |
| 39 "resultNodesByBuilder": { | 39 "masterUrl": "http://master-one", |
| 40 "WebKit Win7 (dbg)": { | 40 "earliestFailingBuild": "1", |
| 41 "actual": "TEXT", | 41 }, |
| 42 "masterUrl": "http://master-one", | 42 "WebKit Mac10.7": { |
| 43 "earliestFailingBuild": "1", | 43 "actual": "CRASH", |
| 44 }, | 44 "masterUrl": "http://master-two", |
| 45 "WebKit Mac10.7": { | 45 "earliestFailingBuild": "4", |
| 46 "actual": "CRASH", | 46 }, |
| 47 "masterUrl": "http://master-two", | 47 }, 177164, 177165 |
| 48 "earliestFailingBuild": "4", | 48 ) |
| 49 }, | 49 ]; |
| 50 }, | |
| 51 "oldestFailingRevision": 177164, | |
| 52 "newestPassingRevision": 177165 | |
| 53 }]; | |
| 54 | 50 |
| 55 var kExampleBuilderLatestRevisions = { | 51 var kExampleBuilderLatestRevisions = { |
| 56 'WebKit Mac10.7': { | 52 'WebKit Mac10.7': { |
| 57 blink: 177164, | 53 blink: 177164, |
| 58 }, | 54 }, |
| 59 'WebKit Mac10.6 (dbg)': { | 55 'WebKit Mac10.6 (dbg)': { |
| 60 blink: 177166, | 56 blink: 177166, |
| 61 }, | 57 }, |
| 62 'WebKit Win7 (dbg)': { | 58 'WebKit Win7 (dbg)': { |
| 63 blink: 177166, | 59 blink: 177166, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 85 assert.deepEqual(builders[2].builder, new CTBuilder( | 81 assert.deepEqual(builders[2].builder, new CTBuilder( |
| 86 'http://master-two', 'WebKit Mac10.7', '4')); | 82 'http://master-two', 'WebKit Mac10.7', '4')); |
| 87 assert.deepEqual(builders[3].builder, new CTBuilder( | 83 assert.deepEqual(builders[3].builder, new CTBuilder( |
| 88 'http://master-one', 'WebKit Win7 (dbg)', '1')); | 84 'http://master-one', 'WebKit Win7 (dbg)', '1')); |
| 89 }); | 85 }); |
| 90 }); | 86 }); |
| 91 }); | 87 }); |
| 92 | 88 |
| 93 })() | 89 })() |
| 94 </script> | 90 </script> |
| OLD | NEW |