summaryrefslogtreecommitdiffstats
path: root/regress/misc/fuzz-harness/Makefile
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2020-12-04 03:57:43 +0100
committerDamien Miller <djm@mindrot.org>2020-12-04 03:57:43 +0100
commit021ff33e383c77b11badd60cec5b141a3e3fa532 (patch)
tree2c79470befffb6284039b5be24dc330ea75a5957 /regress/misc/fuzz-harness/Makefile
parentupstream: shuffle a few utility functions into sftp-client.c; from (diff)
downloadopenssh-021ff33e383c77b11badd60cec5b141a3e3fa532.tar.xz
openssh-021ff33e383c77b11badd60cec5b141a3e3fa532.zip
use options that work with recent clang
Diffstat (limited to '')
-rw-r--r--regress/misc/fuzz-harness/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/misc/fuzz-harness/Makefile b/regress/misc/fuzz-harness/Makefile
index 64fbdbab1..521a1054c 100644
--- a/regress/misc/fuzz-harness/Makefile
+++ b/regress/misc/fuzz-harness/Makefile
@@ -1,6 +1,6 @@
# NB. libssh and libopenbsd-compat should be built with the same sanitizer opts.
-CXX=clang++-6.0
-FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge,trace-pc
+CXX=clang++-9
+FUZZ_FLAGS=-fsanitize=address,fuzzer
FUZZ_LIBS=-lFuzzer
CXXFLAGS=-O2 -g -Wall -Wextra -Wno-unused-parameter -I ../../.. $(FUZZ_FLAGS)