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

Side by Side Diff: test/mjsunit/wasm/export-table.js

Issue 2065043002: [wasm] Check for duplicate export names (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address ahaas' comments Created 4 years, 6 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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 // Flags: --expose-wasm 5 // Flags: --expose-wasm
6 6
7 load("test/mjsunit/wasm/wasm-constants.js"); 7 load("test/mjsunit/wasm/wasm-constants.js");
8 load("test/mjsunit/wasm/wasm-module-builder.js"); 8 load("test/mjsunit/wasm/wasm-module-builder.js");
9 9
10 (function testExportedMain() { 10 (function testExportedMain() {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ]) 65 ])
66 .exportAs("0"); 66 .exportAs("0");
67 67
68 var module = builder.instantiate(); 68 var module = builder.instantiate();
69 69
70 assertEquals("object", typeof module.exports); 70 assertEquals("object", typeof module.exports);
71 assertEquals("function", typeof module.exports["0"]); 71 assertEquals("function", typeof module.exports["0"]);
72 72
73 assertEquals(kReturnValue, module.exports["0"]()); 73 assertEquals(kReturnValue, module.exports["0"]());
74 })(); 74 })();
75
76 (function testExportNameClash() {
77 var builder = new WasmModuleBuilder();
78
79 builder.addFunction("one", kSig_v_v).addBody([kExprNop]).exportAs("main");
80 builder.addFunction("two", kSig_v_v).addBody([kExprNop]).exportAs("other");
81 builder.addFunction("three", kSig_v_v).addBody([kExprNop]).exportAs("main");
82
83 try {
84 builder.instantiate();
85 assertUnreachable("should have thrown an exception");
86 } catch (e) {
87 assertContains("Duplicate export", e.toString());
88 }
89 })();
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