Skip to content

Commit

Permalink
Fix the issue that allocator not disabled for sanitizer cmake presets
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 committed Jan 9, 2025
1 parent f57c37a commit 732198c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cpp/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,36 +557,36 @@
{
"name": "ninja-debug-asan",
"inherits": [
"ninja-debug",
"sanitizer-asan"
"sanitizer-asan",
"ninja-debug"
],
"displayName": "Debug ASAN build with tests and more optional components",
"cacheVariables": {}
},
{
"name": "ninja-debug-tsan",
"inherits": [
"ninja-debug",
"sanitizer-tsan"
"sanitizer-tsan",
"ninja-debug"
],
"displayName": "Debug TSAN build with tests and more optional components",
"cacheVariables": {}
},
{
"name": "ninja-debug-ubsan",
"inherits": [
"ninja-debug",
"sanitizer-ubsan"
"sanitizer-ubsan",
"ninja-debug"
],
"displayName": "Debug UBSAN build with tests and more optional components",
"cacheVariables": {}
},
{
"name": "fuzzing",
"inherits": [
"base",
"sanitizer-asan",
"sanitizer-ubsan"
"sanitizer-ubsan",
"base"
],
"displayName": "Debug build with IPC and Parquet fuzzing targets",
"cacheVariables": {
Expand Down

0 comments on commit 732198c

Please sign in to comment.