File tree Expand file tree Collapse file tree 3 files changed +41
-33
lines changed
Expand file tree Collapse file tree 3 files changed +41
-33
lines changed Original file line number Diff line number Diff line change 3333 "deprecated" : false
3434 },
3535 "cacheVariables" : {
36- "CMAKE_BUILD_TYPE" : " Debug" ,
37- "BEMAN_BUILDSYS_SANITIZER" : " MaxSan"
36+ "CMAKE_BUILD_TYPE" : " Debug"
3837 }
3938 },
4039 {
106105 " _debug-base"
107106 ],
108107 "cacheVariables" : {
108+ "BEMAN_USE_STD_MODULE" : false ,
109109 "BEMAN_USE_MODULES" : false ,
110110 "CMAKE_TOOLCHAIN_FILE" : " infra/cmake/appleclang-toolchain.cmake"
111111 }
118118 " _release-base"
119119 ],
120120 "cacheVariables" : {
121+ "BEMAN_USE_STD_MODULE" : false ,
121122 "BEMAN_USE_MODULES" : false ,
122123 "CMAKE_TOOLCHAIN_FILE" : " infra/cmake/appleclang-toolchain.cmake"
123124 }
Original file line number Diff line number Diff line change @@ -22,39 +22,45 @@ set(TODO tls-scheduler into_optional issue-start-reschedules loop)
2222
2323set (ALL_EXAMPLES
2424 task_scheduler
25- bulk
26- c++now-allocator
27- c++now-cancel
28- c++now-errors
29- alloc
30- affinity
31- odd-return
32- dangling-references
3325 rvalue-task
34- aggregate-return
3526 customize
36- issue-affine_on
3727 issue-symmetric-transfer
38- c++now-affinity
39- c++now-basic
40- # FIXME: c++now-query
41- c++now-result-types
42- c++now-return
43- # FIXME: c++now-stop_token
44- c++now-with_error
45- co_await-result
46- co_await-task
4728 container
48- error
49- escaped-exception
50- friendly
51- hello
52- issue-frame-allocator
53- # FIXME: query
54- result_example
55- # FIXME: stop
5629)
5730
31+ if (NOT MSVC )
32+ list (
33+ APPEND ALL_EXAMPLES
34+ bulk
35+ c++now-allocator
36+ c++now-cancel
37+ c++now-errors
38+ alloc
39+ affinity
40+ odd-return
41+ dangling-references
42+ aggregate-return
43+ issue-affine_on
44+ c++now-affinity
45+ c++now-basic
46+ # FIXME: c++now-query
47+ c++now-result-types
48+ c++now-return
49+ # FIXME: c++now-stop_token
50+ c++now-with_error
51+ co_await-result
52+ co_await-task
53+ error
54+ escaped-exception
55+ friendly
56+ hello
57+ issue-frame-allocator
58+ # FIXME: query
59+ result_example
60+ # FIXME: stop
61+ )
62+ endif ()
63+
5864set (xALL_EXAMPLES issue-symmetric-transfer)
5965set (xALL_EXAMPLES customize)
6066
Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
22
3- list (
4- APPEND task_tests
5- msvc -asan-issue
3+ set (task_tests
64 allocator_of
75 allocator_support
86 completion
@@ -20,11 +18,14 @@ list(
2018 single_thread_context
2119 state_base
2220 sub_visit
23- task
2421 task_scheduler
2522 with_error
2623)
2724
25+ if (NOT MSVC )
26+ list (APPEND task_tests msvc -asan-issue task)
27+ endif ()
28+
2829foreach (test ${task_tests} )
2930 add_executable (beman.task.tests.${test} )
3031 target_sources (beman.task.tests.${test} PRIVATE ${test} .test .cpp)
You can’t perform that action at this time.
0 commit comments