Skip to content

Commit 605d41c

Browse files
committed
Fixed typos in conditions for displaying warning: "You need asan or tsan enabled for meaningful fuzz testing"
1 parent 759d718 commit 605d41c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ endif()
7676

7777
if(myproject_BUILD_FUZZ_TESTS)
7878
message(AUTHOR_WARNING "Building Fuzz Tests, using fuzzing sanitizer https://www.llvm.org/docs/LibFuzzer.html")
79-
if (NOT myproject_ENABLE_ADDRESS_SANITIZER AND NOT myproject_ENABLE_THREAD_SANITIZER)
79+
if (NOT myproject_ENABLE_SANITIZER_ADDRESS AND NOT myproject_ENABLE_SANITIZER_THREAD)
8080
message(WARNING "You need asan or tsan enabled for meaningful fuzz testing")
8181
endif()
8282
add_subdirectory(fuzz_test)

0 commit comments

Comments
 (0)