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.
2 parents ea3513b + a42f660 commit 25cd2bcCopy full SHA for 25cd2bc
container-builds/fuzzing-container/src/entrypoint.sh
@@ -19,7 +19,12 @@ set_main_fuzzer() {
19
main_fuzzer=''
20
if [[ "$avm" == "on" ]]; then
21
main_fuzzer="./build-fuzzing-avm/bin"
22
+ # TODO(defkit): implement cov and post-fuzzer for AVM
23
+ post_fuzzer="./build-fuzzing-avm/bin"
24
+ cov_fuzzer="./build-fuzzing-avm/bin"
25
else
26
+ post_fuzzer="./build-fuzzing-asan/bin"
27
+ cov_fuzzer="./build-fuzzing-cov/bin"
28
case "$asm" in
29
on)
30
main_fuzzer="./build-fuzzing/bin"
@@ -33,9 +38,6 @@ set_main_fuzzer() {
33
38
;;
34
39
esac
35
40
fi
36
-
37
- post_fuzzer="./build-fuzzing-asan/bin"
- cov_fuzzer="./build-fuzzing-cov/bin" # TODO(defkit): implement cov fuzzer for AVM
41
}
42
43
show_fuzzers() {
0 commit comments