Skip to content

Commit 2e35242

Browse files
committed
Reduce fuzzing iteration on lsps_message_target
This target is actually quite slow, but was added after we tuned the fuzzing runtime, so here we also reduce the iterations on lsps_message_target as well.
1 parent 290b2de commit 2e35242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/ci-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ for TARGET in src/bin/*.rs; do
3636
HFUZZ_RUN_ARGS="--exit_upon_crash -v -n8"
3737
if [ "$FILE" = "chanmon_consistency_target" ]; then
3838
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N1000"
39-
elif [ "$FILE" = "process_network_graph_target" -o "$FILE" = "full_stack_target" -o "$FILE" = "router_target" ]; then
39+
elif [ "$FILE" = "process_network_graph_target" -o "$FILE" = "full_stack_target" -o "$FILE" = "router_target" -o "$FILE" = "lsps_message_target" ]; then
4040
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N10000"
4141
elif [ "$FILE" = "indexedmap_target" ]; then
4242
HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N100000"

0 commit comments

Comments
 (0)