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 da53d0c commit 36fc055Copy full SHA for 36fc055
testing/fuzzing/build-fuzz-tests.sh
@@ -6,6 +6,7 @@ scriptdir=$(cd "$(dirname "$0")" && pwd)
6
libs=$(sed -n 's/^NSC_LNETSNMPLIBS="\(.*\)"$/\1/p' ./net-snmp-config;
7
sed -n "s/^PERLLDOPTS_FOR_LIBS='\(.*\)'/\1/p" ./config.log)
8
for fuzzname in testing/fuzzing/*_fuzzer.c; do
9
+ {
10
fuzzname=${fuzzname%_fuzzer.c}
11
fuzzname=${fuzzname#testing/fuzzing/}
12
echo "Compiling testing/fuzzing/${fuzzname}_fuzzer.c"
@@ -23,4 +24,6 @@ for fuzzname in testing/fuzzing/*_fuzzer.c; do
23
24
agent/helpers/.libs/libnetsnmphelpers.a \
25
snmplib/.libs/libnetsnmp.a ${libs} \
26
-o "$OUT/${fuzzname}_fuzzer"
27
+ } &
28
done
29
+wait
0 commit comments