Skip to content

Commit

Permalink
Improved sanitizing.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander committed Sep 15, 2024
1 parent f52c7af commit b016889
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 77 deletions.
75 changes: 0 additions & 75 deletions .github/workflows/cmake-gtest.yml

This file was deleted.

8 changes: 6 additions & 2 deletions sanitize/unsigned/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ set(CMAKE_CXX_STANDARD 20)
add_executable(AesiSanitize main.cpp)

target_compile_options(AesiSanitize PRIVATE -fsanitize=undefined
-fsanitize=unsigned-integer-overflow)
-fsanitize=address
-fsanitize-address-use-after-scope
-fsanitize-coverage=trace-pc)
target_link_options(AesiSanitize PRIVATE -fsanitize=undefined
-fsanitize=unsigned-integer-overflow)
-fsanitize=address
-fsanitize-address-use-after-scope
-fsanitize-coverage=trace-pc)

0 comments on commit b016889

Please sign in to comment.