[ruby/prism] Implement mismatched indentation warning
[ruby.git] / misc / call_fuzzer.sh
blobcf4ec76fe825a68ffbfb9216045856ac61a61eb3
1 # Stop at first error
2 set -e
4 # TODO
5 # TODO: boost --num-iters to 1M+ for actual test
6 # TODO
7 export NUM_ITERS=25000
9 # Enable code GC so we don't stop compiling when we hit the code size limit
10 ruby --yjit-call-threshold=1 --yjit-code-gc misc/call_fuzzer.rb --num-iters=$NUM_ITERS
12 # Do another pass with --verify-ctx
13 ruby --yjit-call-threshold=1 --yjit-code-gc --yjit-verify-ctx misc/call_fuzzer.rb --num-iters=$NUM_ITERS