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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b795165fd57ea31cbdb4fa0ef75b2eaa0bdd57ba |
--- /dev/null |
+++ b/test/mjsunit/wasm/verify-module-basic-errors.js |
@@ -0,0 +1,16 @@ |
+// Copyright 2015 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+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)); }) |