Index: test/mjsunit/wasm/ffi.js |
diff --git a/test/mjsunit/wasm/ffi.js b/test/mjsunit/wasm/ffi.js |
index 9db8ea6f5585425d728101351c66f741d4f5df57..e96210e1d949881587c951d24c43794ab20bb11c 100644 |
--- a/test/mjsunit/wasm/ffi.js |
+++ b/test/mjsunit/wasm/ffi.js |
@@ -54,6 +54,9 @@ function check_FOREIGN_SUB(r, a, b) { |
testCallFFI(FOREIGN_SUB, check_FOREIGN_SUB); |
+var proxy_sub = new Proxy(FOREIGN_SUB, { |
+}); |
+testCallFFI(proxy_sub, check_FOREIGN_SUB); |
Benedikt Meurer
2016/08/03 17:14:43
I'd like to see appropriate tests for all the spec
|
function FOREIGN_ABCD(a, b, c, d) { |
print("FOREIGN_ABCD(" + a + ", " + b + ", " + c + ", " + d + ")"); |