| Index: Tools/GardeningServer/ui/test/ct-builder-grid-tests.html
|
| diff --git a/Tools/GardeningServer/ui/test/ct-builder-grid-tests.html b/Tools/GardeningServer/ui/test/ct-builder-grid-tests.html
|
| index 77c090664f335ffdbd01c5e1ecdd2c6edeeebc99..340138cf2937feb2778d7c4741f16471aaf6fe92 100644
|
| --- a/Tools/GardeningServer/ui/test/ct-builder-grid-tests.html
|
| +++ b/Tools/GardeningServer/ui/test/ct-builder-grid-tests.html
|
| @@ -11,34 +11,30 @@ found in the LICENSE file.
|
|
|
| var assert = chai.assert;
|
|
|
| -var kExampleFailures = [{
|
| - "testName": "plugins/gesture-events-scrolled.html",
|
| - "resultNodesByBuilder": {
|
| - "WebKit Win7 (dbg)": {
|
| - "actual": "CRASH",
|
| - },
|
| - "WebKit Mac10.6 (dbg)": {
|
| - "actual": "CRASH",
|
| - },
|
| - "WebKit Mac10.7": {
|
| - "actual": "TEXT",
|
| - }
|
| - },
|
| - "oldestFailingRevision": 177164,
|
| - "newestPassingRevision": 177165
|
| -}, {
|
| - "testName": "plugins/transformed-events.html",
|
| - "resultNodesByBuilder": {
|
| - "WebKit Win7 (dbg)": {
|
| - "actual": "TEXT",
|
| - },
|
| - "WebKit Mac10.7": {
|
| - "actual": "CRASH",
|
| - },
|
| - },
|
| - "oldestFailingRevision": 177164,
|
| - "newestPassingRevision": 177165
|
| -}];
|
| +var kExampleFailures = [
|
| + new CTFailure('layout_tests', "plugins/gesture-events-scrolled.html",
|
| + {
|
| + "WebKit Win7 (dbg)": {
|
| + "actual": "CRASH",
|
| + },
|
| + "WebKit Mac10.6 (dbg)": {
|
| + "actual": "CRASH",
|
| + },
|
| + "WebKit Mac10.7": {
|
| + "actual": "TEXT",
|
| + }, 177164, 177165),
|
| + new CTFailure('layout_tests', "plugins/transformed-events.html",
|
| + {
|
| + "WebKit Win7 (dbg)": {
|
| + "actual": "TEXT",
|
| + },
|
| + "WebKit Mac10.7": {
|
| + "actual": "CRASH",
|
| + },
|
| + }, 177164, 177165
|
| + )
|
| +];
|
| +
|
|
|
| var kExampleBuilderLatestRevisions = {
|
| 'WebKit Mac10.7': {
|
|
|