diff options
Diffstat (limited to 'deps/v8/test/mjsunit/regress/wasm/regress-9447.js')
-rw-r--r-- | deps/v8/test/mjsunit/regress/wasm/regress-9447.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/regress/wasm/regress-9447.js b/deps/v8/test/mjsunit/regress/wasm/regress-9447.js index 80d64b9b2d..77d819d48c 100644 --- a/deps/v8/test/mjsunit/regress/wasm/regress-9447.js +++ b/deps/v8/test/mjsunit/regress/wasm/regress-9447.js @@ -33,5 +33,7 @@ var fun2 = (function GenerateFun2() { })(); // Both exported functions should throw, no matter how often they get wrapped. -assertThrows(fun1, TypeError, /wasm function signature contains illegal type/); -assertThrows(fun2, TypeError, /wasm function signature contains illegal type/); +assertThrows(fun1, TypeError, + /type incompatibility when transforming from\/to JS/); +assertThrows(fun2, TypeError, + /type incompatibility when transforming from\/to JS/); |