Skip to content

Commit 25aa343

Browse files
committed
MDEV-40386: MSAN/UBASAN - disable DuckDB
It doesn't link correctly. After that's resolved explict --suite=duckdb would need to be enabled in the test for it to be useful.
1 parent f9239f6 commit 25aa343

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

configuration/builders/sequences/sanitizers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def asan_ubsan(
7676
CMakeOption(WITH.UBSAN, True),
7777
CMakeOption(WITH.UNIT_TESTS, False),
7878
CMakeOption(PLUGIN.COLUMNSTORE_STORAGE_ENGINE, False),
79+
CMakeOption(PLUGIN.DUCKDB_STORAGE_ENGINE, False),
7980
]
8081
if isDebugBuildType:
8182
flags.extend(
@@ -231,6 +232,7 @@ def msan(
231232
CMakeOption(PLUGIN.SPIDER_STORAGE_ENGINE, isDebugBuildType or isExperimental),
232233
CMakeOption(PLUGIN.ROCKSDB_STORAGE_ENGINE, False),
233234
CMakeOption(PLUGIN.OQGRAPH_STORAGE_ENGINE, False),
235+
CMakeOption(PLUGIN.DUCKDB_STORAGE_ENGINE, False),
234236
]
235237
if isDebugBuildType:
236238
flags.extend(

0 commit comments

Comments
 (0)