We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d443a commit 515b6d6Copy full SHA for 515b6d6
fuzz/ci-fuzz.sh
@@ -40,6 +40,9 @@ for TARGET in src/bin/*.rs; do
40
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N10000"
41
elif [ "$FILE" = "indexedmap_target" ]; then
42
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N100000"
43
+ elif [ "$FILE" = "fs_store_target" ]; then
44
+ # Limit fs_store iterations because it uses an actual disk.
45
+ HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000"
46
else
47
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
48
fi
0 commit comments