OLD | NEW |
1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 // TODO(titzer): update spec test suite to version 0x1 |
| 6 if (false) { |
| 7 |
5 // TODO(eholk): Once we have stable test IDs, use those as the key instead. | 8 // TODO(eholk): Once we have stable test IDs, use those as the key instead. |
6 // See https://github.com/WebAssembly/spec/issues/415 | 9 // See https://github.com/WebAssembly/spec/issues/415 |
7 const known_failures = { | 10 const known_failures = { |
8 "'WebAssembly.Module.customSections' method": | 11 "'WebAssembly.Module.customSections' method": |
9 'https://bugs.chromium.org/p/v8/issues/detail?id=5815', | 12 'https://bugs.chromium.org/p/v8/issues/detail?id=5815', |
10 "'WebAssembly.Table.prototype.get' method": | 13 "'WebAssembly.Table.prototype.get' method": |
11 'https://bugs.chromium.org/p/v8/issues/detail?id=5507', | 14 'https://bugs.chromium.org/p/v8/issues/detail?id=5507', |
12 "'WebAssembly.Table.prototype.set' method": | 15 "'WebAssembly.Table.prototype.set' method": |
13 'https://bugs.chromium.org/p/v8/issues/detail?id=5507', | 16 'https://bugs.chromium.org/p/v8/issues/detail?id=5507', |
14 }; | 17 }; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 } else { | 72 } else { |
70 print(` ${failures[i]}`); | 73 print(` ${failures[i]}`); |
71 unexpected = true; | 74 unexpected = true; |
72 } | 75 } |
73 } | 76 } |
74 if (unexpected) { | 77 if (unexpected) { |
75 quit(1); | 78 quit(1); |
76 } | 79 } |
77 } | 80 } |
78 }); | 81 }); |
| 82 |
| 83 } |
OLD | NEW |