We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c65e9 commit dbc0025Copy full SHA for dbc0025
tests/beman/task/CMakeLists.txt
@@ -1,8 +1,6 @@
1
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2
3
-list(
4
- APPEND task_tests
5
- # FIXME! msvc-asan-issue
+set(task_tests
6
allocator_of
7
allocator_support
8
completion
@@ -20,11 +18,14 @@ list(
20
18
single_thread_context
21
19
state_base
22
sub_visit
23
- task
24
task_scheduler
25
with_error
26
)
27
+if(NOT MSVC)
+ list(APPEND task_tests msvc-asan-issue task)
+endif()
28
+
29
foreach(test ${task_tests})
30
add_executable(beman.task.tests.${test})
31
target_sources(beman.task.tests.${test} PRIVATE ${test}.test.cpp)
0 commit comments