File tree 2 files changed +5
-13
lines changed
2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,7 @@ with section("parse"):
26
26
'kwargs': {
27
27
'NAME': '*',
28
28
'SRCS': '*',
29
- 'LIBS': '*',
30
- 'CFGS': '*'}},
29
+ 'LIBS': '*'}},
31
30
'add_umf_library': {
32
31
"pargs": 0,
33
32
"flags": [],
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ function(add_umf_test)
30
30
# * SRCS - source files
31
31
# * LIBS - libraries to be linked with
32
32
set (oneValueArgs NAME )
33
- set (multiValueArgs SRCS LIBS CFGS )
33
+ set (multiValueArgs SRCS LIBS)
34
34
cmake_parse_arguments (
35
35
ARG
36
36
""
@@ -73,7 +73,6 @@ function(add_umf_test)
73
73
add_test (
74
74
NAME ${TEST_NAME}
75
75
COMMAND ${TEST_TARGET_NAME}
76
- CONFIGURATIONS ${ARG_CFGS}
77
76
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} )
78
77
79
78
set_tests_properties (${TEST_NAME} PROPERTIES LABELS "umf" )
@@ -224,22 +223,16 @@ add_umf_test(
224
223
225
224
# tests for the proxy library
226
225
if (UMF_PROXY_LIB_ENABLED AND UMF_BUILD_SHARED_LIBRARY)
227
- # The CFGS variable can be removed when the issue of running the proxy
228
- # library on Windows with Debug configuration is fixed.
229
- if (WINDOWS)
230
- set (CONFIGS Release RelWithDebInfo MinSizeRel)
231
- endif ()
232
226
add_umf_test(
233
227
NAME proxy_lib_basic
234
228
SRCS test_proxy_lib.cpp
235
- LIBS umf_proxy
236
- CFGS ${CONFIGS} )
229
+ LIBS umf_proxy)
230
+
237
231
# the memoryPool test run with the proxy library
238
232
add_umf_test(
239
233
NAME proxy_lib_memoryPool
240
234
SRCS memoryPoolAPI.cpp malloc_compliance_tests.cpp
241
- LIBS umf_proxy
242
- CFGS ${CONFIGS} )
235
+ LIBS umf_proxy)
243
236
target_compile_definitions (umf_test-proxy_lib_memoryPool
244
237
PUBLIC UMF_PROXY_LIB_ENABLED=1)
245
238
endif ()
You can’t perform that action at this time.
0 commit comments