Changeset 265090 in webkit


Ignore:
Timestamp:
Jul 30, 2020 11:20:56 AM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, fix bottom-tuple.js test
https://bugs.webkit.org/show_bug.cgi?id=214956

Only thing we would like to check in this test is whether this does not crash.

  • wasm/stress/bottom-tuple.js:

(catch): Deleted.

Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r265076 r265090  
     12020-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
    1112020-07-29  Yusuke Suzuki  <ysuzuki@apple.com>
    212
  • trunk/JSTests/wasm/stress/bottom-tuple.js

    r265076 r265090  
    1414]);
    1515
    16 var error = undefined;
    1716try {
    1817    let module = new WebAssembly.Module(buffer);
     
    2019    main = function() { return instance.exports.main(); };
    2120    main();
    22 } catch (err) {
    23     error = err;
     21} catch {
    2422}
    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.