diff options
Diffstat (limited to 'libnetdata/gorilla/fuzzer.sh')
-rwxr-xr-x | libnetdata/gorilla/fuzzer.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libnetdata/gorilla/fuzzer.sh b/libnetdata/gorilla/fuzzer.sh deleted file mode 100755 index 19098a615..000000000 --- a/libnetdata/gorilla/fuzzer.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# -# SPDX-License-Identifier: GPL-3.0-or-later -# - -set -exu -o pipefail - -clang++ \ - -std=c++11 -Wall -Wextra \ - -DENABLE_FUZZER -O2 -g \ - -fsanitize=fuzzer \ - -o gorilla_fuzzer gorilla.cc - -./gorilla_fuzzer -workers=12 -jobs=16 |