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

Side by Side Diff: test/mjsunit/wasm/jsapi-harness.js

Issue 2709753003: [wasm] Remove support for experimental version 0xD. (Closed)
Patch Set: Fix jsapi-harness.js Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « src/wasm/module-decoder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/wasm/module-decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698