| Index: test/mjsunit/wasm/verify-module-basic-errors.js
|
| diff --git a/test/mjsunit/wasm/verify-module-basic-errors.js b/test/mjsunit/wasm/verify-module-basic-errors.js
|
| index 92b056c9bb7ef9d45b17554c330024f972591777..37658d3786ccf4250e2dc41ce7b3101fa200450b 100644
|
| --- a/test/mjsunit/wasm/verify-module-basic-errors.js
|
| +++ b/test/mjsunit/wasm/verify-module-basic-errors.js
|
| @@ -6,13 +6,13 @@
|
|
|
| function Foo() { }
|
|
|
| -assertThrows(function() { WASM.verifyModule(); })
|
| -assertThrows(function() { WASM.verifyModule(0); })
|
| -assertThrows(function() { WASM.verifyModule("s"); })
|
| -assertThrows(function() { WASM.verifyModule(undefined); })
|
| -assertThrows(function() { WASM.verifyModule(1.1); })
|
| -assertThrows(function() { WASM.verifyModule(1/0); })
|
| -assertThrows(function() { WASM.verifyModule(null); })
|
| -assertThrows(function() { WASM.verifyModule(new Foo()); })
|
| -assertThrows(function() { WASM.verifyModule(new ArrayBuffer(0)); })
|
| -assertThrows(function() { WASM.verifyModule(new ArrayBuffer(7)); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(0); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule("s"); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(undefined); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(1.1); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(1/0); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(null); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(new Foo()); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(new ArrayBuffer(0)); })
|
| +assertThrows(function() { _WASMEXP_.verifyModule(new ArrayBuffer(7)); })
|
|
|