We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa026cc commit de02d8bCopy full SHA for de02d8b
cmake/testing.cmake
@@ -186,6 +186,9 @@ function(add_ydb_multiple_tests)
186
set(ARGS_BASE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
187
else()
188
set(test_prefix "${test_prefix}-${ARGS_BASE_DIR}")
189
+ if (NOT IS_ABSOLUTE "${ARGS_BASE_DIR}")
190
+ set(ARGS_BASE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/${ARGS_BASE_DIR}")
191
+ endif()
192
endif()
193
194
list(GET ARGS_FILES 0 firts_file_path)
@@ -198,6 +201,7 @@ function(add_ydb_multiple_tests)
198
201
foreach (test_path IN LISTS ARGS_FILES)
199
202
get_filename_component(test_suffix "${test_path}" NAME_WLE)
200
203
204
+ set(file_path_kind_error FALSE)
205
if (NOT IS_ABSOLUTE "${test_path}")
206
if (file_path_is_absolute)
207
set(file_path_kind_error TRUE)
0 commit comments