Index: test/mjsunit/wasm/wasm-object-api.js |
diff --git a/test/mjsunit/wasm/wasm-object-api.js b/test/mjsunit/wasm/wasm-object-api.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a41e6d978a89b35f7cb7ec606bc193a496ccc8c7 |
--- /dev/null |
+++ b/test/mjsunit/wasm/wasm-object-api.js |
@@ -0,0 +1,9 @@ |
+// 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. |
+ |
+assertFalse(undefined === WASM); |
+assertFalse(undefined == WASM); |
+assertEquals("function", typeof WASM.verifyModule); |
+assertEquals("function", typeof WASM.verifyFunction); |
+assertEquals("function", typeof WASM.compileRun); |