Ignore:
Timestamp:
Jun 3, 2021, 3:44:03 PM (4 years ago)
Author:
[email protected]
Message:

Unreviewed, reverting r278356.
https://bugs.webkit.org/show_bug.cgi?id=226606

"Breaks jsc tests".

Reverted changeset:

"Convert small JIT pool tests into executable fuzzing"
https://bugs.webkit.org/show_bug.cgi?id=226279
https://trac.webkit.org/changeset/278356

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r278356 r278425  
    34903490        if (Options::useExceptionFuzz())
    34913491            printf("JSC EXCEPTION FUZZ: encountered %u checks.\n", numberOfExceptionFuzzChecks());
    3492         if (Options::useExecutableAllocationFuzz() && Options::verboseExecutableAllocationFuzz())
     3492        bool fireAtEnabled =
     3493        Options::fireExecutableAllocationFuzzAt() || Options::fireExecutableAllocationFuzzAtOrAfter();
     3494        if (Options::useExecutableAllocationFuzz() && (!fireAtEnabled || Options::verboseExecutableAllocationFuzz()))
    34933495            printf("JSC EXECUTABLE ALLOCATION FUZZ: encountered %u checks.\n", numberOfExecutableAllocationFuzzChecks());
    34943496        if (Options::useOSRExitFuzz() && Options::verboseOSRExitFuzz()) {
Note: See TracChangeset for help on using the changeset viewer.