diff options
-rwxr-xr-x | scripts/fuzz_opt.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index da221b94e..2a97af64a 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -856,12 +856,6 @@ class CompareVMs(TestCaseHandler): def run(self, wasm): return super(D8Turboshaft, self).run(wasm, extra_d8_flags=['--no-liftoff', '--turboshaft-wasm', '--turboshaft-wasm-instruction-selection-staged']) - class D8TurboFan(D8): - name = 'd8_turbofan' - - def run(self, wasm): - return super(D8TurboFan, self).run(wasm, extra_d8_flags=['--no-liftoff']) - class Wasm2C: name = 'wasm2c' @@ -960,7 +954,6 @@ class CompareVMs(TestCaseHandler): D8(), D8Liftoff(), D8Turboshaft(), - D8TurboFan(), # FIXME: Temprorary disable. See issue #4741 for more details # Wasm2C(), # Wasm2C2Wasm() |