suricata: do not run MSAN for branch 6 (#9412)

Follows #9391 to fix FPs
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=55027
This commit is contained in:
Catena cyber 2023-01-12 21:13:48 +01:00 committed by GitHub
parent d1c03f00f1
commit d5f62adaae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -82,7 +82,13 @@ then
export RUSTFLAGS="$RUSTFLAGS -Cdebug-assertions=yes"
fi
for branch in "" 6; do
fuzz_branches=("")
if [[ "$SANITIZER" != "memory" ]]
then
fuzz_branches+=("6")
fi
for branch in "${fuzz_branches[@]}"; do
#we did not put libhtp there before so that cifuzz does not remove it
cp -r libhtp suricata$branch/
# build project