-
Notifications
You must be signed in to change notification settings - Fork 1.1k
chore: clean up sanitizers checks #6173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,10 +103,6 @@ if (PRINT_STACKTRACES_ON_SIGNAL) | |
| target_compile_definitions(dragonfly_lib PRIVATE PRINT_STACKTRACES_ON_SIGNAL) | ||
| endif() | ||
|
|
||
| if (WITH_ASAN OR WITH_USAN) | ||
| target_compile_definitions(dfly_transaction PRIVATE SANITIZERS) | ||
| endif() | ||
|
|
||
| if (WITH_AWS) | ||
| SET(AWS_LIB awsv2_lib) | ||
| add_definitions(-DWITH_AWS) | ||
|
|
@@ -132,10 +128,6 @@ endif() | |
| add_library(dfly_test_lib test_utils.cc) | ||
| cxx_link(dfly_test_lib dragonfly_lib facade_test gtest_main_ext) | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With 🤖 Was this useful? React with 👍 or 👎 |
||
| if (WITH_ASAN OR WITH_USAN) | ||
| target_compile_definitions(dfly_test_lib PRIVATE SANITIZERS) | ||
| endif() | ||
|
|
||
| cxx_test(dragonfly_test dfly_test_lib LABELS DFLY) | ||
| cxx_test(multi_test dfly_test_lib LABELS DFLY) | ||
| cxx_test(generic_family_test dfly_test_lib LABELS DFLY) | ||
|
|
@@ -162,14 +154,6 @@ cxx_test(cluster/cluster_config_test dfly_test_lib LABELS DFLY) | |
| cxx_test(cluster/cluster_family_test dfly_test_lib LABELS DFLY) | ||
| cxx_test(acl/acl_family_test dfly_test_lib LABELS DFLY) | ||
| cxx_test(engine_shard_set_test dfly_test_lib LABELS DFLY) | ||
| if (WITH_ASAN OR WITH_USAN) | ||
| target_compile_definitions(stream_family_test PRIVATE SANITIZERS) | ||
| target_compile_definitions(multi_test PRIVATE SANITIZERS) | ||
| target_compile_definitions(search_family_test PRIVATE SANITIZERS) | ||
| target_compile_definitions(json_family_test PRIVATE SANITIZERS) | ||
| target_compile_definitions(json_family_memory_test PRIVATE SANITIZERS) | ||
| target_compile_definitions(dragonfly_test PRIVATE SANITIZERS) | ||
| endif() | ||
|
|
||
| add_dependencies(check_dfly dragonfly_test json_family_test list_family_test | ||
| generic_family_test memcache_parser_test rdb_test journal_test | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.