Commit 65f8948a authored by Michael Achenbach's avatar Michael Achenbach Committed by V8 LUCI CQ

[test] Neuter stack-size for more tests incompatible with stack-size fuzzing

Also bump the minimum size determined by manually testing with:
mjsunit/harmony/modules-import-13

Bug: v8:12197
Change-Id: Ic21d42547ba14cd927d158388ad4bc6f1891f45c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3147453
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Auto-Submit: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76723}
parent ec987bd1
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
// Flags: --allow-natives-syntax --noturbo-inlining --noturbo-verify-allocation // Flags: --allow-natives-syntax --noturbo-inlining --noturbo-verify-allocation
// This test invokes optimization manually, no need for stress modes: // This test invokes optimization manually, no need for stress modes:
// Flags: --nostress-opt --noalways-opt // Flags: --nostress-opt --noalways-opt
// This neuters too low stack size passed by the flag fuzzer.
// Flags: --stack-size=864
// Ensure that very large stack frames can be used successfully. // Ensure that very large stack frames can be used successfully.
// The flag --noturbo-verify-allocation is to make this run a little faster; it // The flag --noturbo-verify-allocation is to make this run a little faster; it
......
...@@ -269,7 +269,7 @@ class CompactionFuzzer(Fuzzer): ...@@ -269,7 +269,7 @@ class CompactionFuzzer(Fuzzer):
class StackSizeFuzzer(Fuzzer): class StackSizeFuzzer(Fuzzer):
def create_flags_generator(self, rng, test, analysis_value): def create_flags_generator(self, rng, test, analysis_value):
while True: while True:
yield ['--stack-size=%d' % rng.randint(50, 983)] yield ['--stack-size=%d' % rng.randint(54, 983)]
class TaskDelayFuzzer(Fuzzer): class TaskDelayFuzzer(Fuzzer):
def create_flags_generator(self, rng, test, analysis_value): def create_flags_generator(self, rng, test, analysis_value):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment