Changeset 265090 in webkit
- Timestamp:
- Jul 30, 2020, 11:20:56 AM (5 years ago)
- Location:
- trunk/JSTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r265076 r265090 1 2020-07-30 Yusuke Suzuki <ysuzuki@apple.com> 2 3 Unreviewed, fix bottom-tuple.js test 4 https://bugs.webkit.org/show_bug.cgi?id=214956 5 6 Only thing we would like to check in this test is whether this does not crash. 7 8 * wasm/stress/bottom-tuple.js: 9 (catch): Deleted. 10 1 11 2020-07-29 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/JSTests/wasm/stress/bottom-tuple.js
r265076 r265090 14 14 ]); 15 15 16 var error = undefined;17 16 try { 18 17 let module = new WebAssembly.Module(buffer); … … 20 19 main = function() { return instance.exports.main(); }; 21 20 main(); 22 } catch (err) { 23 error = err; 21 } catch { 24 22 } 25 if (!error || error.message !== "Maximum call stack size exceeded.")26 throw "Expected stack overflow error";
Note:
See TracChangeset
for help on using the changeset viewer.