Skip to content

Commit 4098cc3

Browse files
committed
fix
1 parent 349b652 commit 4098cc3

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CMakePresets.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,13 @@
100100
},
101101
{
102102
"name": "all",
103+
"inherits": "common",
103104
"displayName": "Run All Tests",
104105
"configurePreset": "base"
105106
},
106107
{
107108
"name": "unit",
109+
"inherits": "common",
108110
"displayName": "Run Unit Tests",
109111
"configurePreset": "base",
110112
"filter": {
@@ -115,6 +117,7 @@
115117
},
116118
{
117119
"name": "integration",
120+
"inherits": "common",
118121
"displayName": "Run Integration Tests",
119122
"configurePreset": "base",
120123
"filter": {

util/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,12 @@ if (YDB_SDK_TESTS)
316316
cpp-testing-unittest_main
317317
LABELS
318318
unit
319+
TEST_ARG
320+
--filter-file filter.txt
321+
)
322+
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/system/filter.txt
323+
"-TBackTraceTest::TestPrintBackTrace\n"
324+
"-TBackTraceTest::TestSetFormatBackTraceFn"
319325
)
320326

321327
add_ydb_test(NAME util-system-unaligned_mem_ut

0 commit comments

Comments
 (0)