Skip to content

Commit fe461a4

Browse files
authored
Disable stack switching when GC is disabled in the fuzzer (#7830)
Stack switching depends on part of GC, at least atm. See #7827 (comment)
1 parent 8dca624 commit fe461a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/fuzz_opt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2403,7 +2403,7 @@ def get_random_opts():
24032403
# disabled, its dependent features need to be disabled as well.
24042404
IMPLIED_FEATURE_OPTS = {
24052405
'--disable-reference-types': ['--disable-gc', '--disable-exception-handling', '--disable-strings'],
2406-
'--disable-gc': ['--disable-strings'],
2406+
'--disable-gc': ['--disable-strings', '--disable-stack-switching'],
24072407
}
24082408

24092409
print('''

0 commit comments

Comments
 (0)