Changeset 267115 in webkit


Ignore:
Timestamp:
Sep 15, 2020 4:51:40 PM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, skip construct-return-early-from-infinite-loop-for-fuzzer.js when JIT is disabled
https://bugs.webkit.org/show_bug.cgi?id=216406

We are not supporting returnEarlyFromInfiniteLoopsForFuzzing option for CLoop.

  • stress/construct-return-early-from-infinite-loop-for-fuzzer.js:

(vm.useJIT):

Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r267114 r267115  
     12020-09-15  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, skip construct-return-early-from-infinite-loop-for-fuzzer.js when JIT is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=216406
     5
     6        We are not supporting returnEarlyFromInfiniteLoopsForFuzzing option for CLoop.
     7
     8        * stress/construct-return-early-from-infinite-loop-for-fuzzer.js:
     9        (vm.useJIT):
     10
    1112020-09-15  Tadeu Zagallo  <tzagallo@apple.com>
    212
  • trunk/JSTests/stress/construct-return-early-from-infinite-loop-for-fuzzer.js

    r266770 r267115  
    11//@ skip if $architecture != "arm64" and $architecture != "x86-64"
    22//@ runDefault("--returnEarlyFromInfiniteLoopsForFuzzing=1")
     3
    34function foo() {
    45  while(1);
    56}
    6 Reflect.construct(foo, {});
     7
     8if ($vm.useJIT()) {
     9    Reflect.construct(foo, {});
     10}
Note: See TracChangeset for help on using the changeset viewer.