We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 405414c commit 7424943Copy full SHA for 7424943
tools/fuzz-harness.sh
@@ -64,6 +64,20 @@ jsfunfuzz_dir="$v8_root/tools/jsfunfuzz"
64
if [ ! -d "$jsfunfuzz_dir" ]; then
65
echo "Unpacking into $jsfunfuzz_dir ..."
66
unzip "$jsfunfuzz_file" -d "$jsfunfuzz_dir" || exit 1
67
+ echo "Patching runner ..."
68
+ cat << EOF | patch -s -p0 -d "$v8_root"
69
+--- tools/jsfunfuzz/jsfunfuzz/multi_timed_run.py~
70
++++ tools/jsfunfuzz/jsfunfuzz/multi_timed_run.py
71
+@@ -125,7 +125,7 @@
72
+
73
+ def many_timed_runs():
74
+ iteration = 0
75
+- while True:
76
++ while iteration < 100:
77
+ iteration += 1
78
+ logfilename = "w%d" % iteration
79
+ one_timed_run(logfilename)
80
+EOF
81
fi
82
83
flags='--debug-code --expose-gc --verify-gc'
0 commit comments