File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,19 +56,19 @@ echo "✅ Build verification passed - $FUZZER_COUNT fuzzers properly configured"
56
56
57
57
# Performance testing and reporting
58
58
echo " Performance testing:"
59
- FUZZER_COUNT =0
59
+ PERF_COUNT =0
60
60
61
61
for fuzzer in fuzz_json_decoder fuzz_http_header fuzz_proxy_security fuzz_mcp_decoder fuzz_url; do
62
62
if [ -f " $OUT /$fuzzer " ] && [ -x " $OUT /$fuzzer " ]; then
63
63
echo " $fuzzer : built and executable ✅"
64
- (( FUZZER_COUNT ++ ))
64
+ (( PERF_COUNT ++ ))
65
65
else
66
66
echo " $fuzzer : not found or not executable ❌"
67
67
fi
68
68
done
69
69
70
- if [ " $FUZZER_COUNT " -gt 0 ]; then
71
- echo " Performance summary: $FUZZER_COUNT fuzzers tested"
70
+ if [ " $PERF_COUNT " -gt 0 ]; then
71
+ echo " Performance summary: $PERF_COUNT fuzzers tested"
72
72
echo " ✅ All fuzzers are properly built and executable"
73
73
else
74
74
echo " No fuzzers found for performance testing"
@@ -86,7 +86,7 @@ OSS-Fuzz Build Report - $(date)
86
86
================================
87
87
Project: gemini-cli
88
88
Fuzzers Compiled: $FUZZER_COUNT
89
- Average Performance: ${AVG_EXEC} exec/s
89
+ Performance: $PERF_COUNT fuzzers verified
90
90
Build Status: SUCCESS
91
91
Security: Address sanitizer enabled
92
92
EOF
You can’t perform that action at this time.
0 commit comments