@@ -45,16 +45,14 @@ def test_llvm_windows(self):
45
45
env_variables ["project_check_targets" ],
46
46
"check-clang check-clang-tools check-lld check-llvm check-mlir check-polly" ,
47
47
)
48
- self .assertEqual (
49
- env_variables ["runtimes_to_build" ], "libcxx;libcxxabi;libunwind"
50
- )
48
+ self .assertEqual (env_variables ["runtimes_to_build" ], "" )
51
49
self .assertEqual (
52
50
env_variables ["runtimes_check_targets" ],
53
51
"" ,
54
52
)
55
53
self .assertEqual (
56
54
env_variables ["runtimes_check_targets_needs_reconfig" ],
57
- "check-cxx check-cxxabi check-unwind " ,
55
+ "" ,
58
56
)
59
57
60
58
def test_llvm_mac (self ):
@@ -69,16 +67,14 @@ def test_llvm_mac(self):
69
67
env_variables ["project_check_targets" ],
70
68
"check-clang check-clang-tools check-lld check-llvm check-mlir" ,
71
69
)
72
- self .assertEqual (
73
- env_variables ["runtimes_to_build" ], "libcxx;libcxxabi;libunwind"
74
- )
70
+ self .assertEqual (env_variables ["runtimes_to_build" ], "" )
75
71
self .assertEqual (
76
72
env_variables ["runtimes_check_targets" ],
77
73
"" ,
78
74
)
79
75
self .assertEqual (
80
76
env_variables ["runtimes_check_targets_needs_reconfig" ],
81
- "check-cxx check-cxxabi check-unwind " ,
77
+ "" ,
82
78
)
83
79
84
80
def test_clang (self ):
@@ -119,16 +115,14 @@ def test_clang_windows(self):
119
115
self .assertEqual (
120
116
env_variables ["project_check_targets" ], "check-clang check-clang-tools"
121
117
)
122
- self .assertEqual (
123
- env_variables ["runtimes_to_build" ], "libcxx;libcxxabi;libunwind"
124
- )
118
+ self .assertEqual (env_variables ["runtimes_to_build" ], "" )
125
119
self .assertEqual (
126
120
env_variables ["runtimes_check_targets" ],
127
121
"" ,
128
122
)
129
123
self .assertEqual (
130
124
env_variables ["runtimes_check_targets_needs_reconfig" ],
131
- "check-cxx check-cxxabi check-unwind " ,
125
+ "" ,
132
126
)
133
127
self .assertEqual (env_variables ["enable_cir" ], "OFF" )
134
128
@@ -298,18 +292,15 @@ def test_windows_ci(self):
298
292
)
299
293
self .assertEqual (
300
294
env_variables ["runtimes_to_build" ],
301
- "libcxx;libcxxabi;libunwind " ,
295
+ "" ,
302
296
)
303
297
self .assertEqual (
304
298
env_variables ["runtimes_check_targets" ],
305
299
"" ,
306
300
)
307
- # TODO(boomanaiden154): We should not be emitting these on Windows.
308
- # It does not currently impact anything because we do not build the
309
- # runtimes on Windows though.
310
301
self .assertEqual (
311
302
env_variables ["runtimes_check_targets_needs_reconfig" ],
312
- "check-cxx check-cxxabi check-unwind " ,
303
+ "" ,
313
304
)
314
305
315
306
def test_lldb (self ):
0 commit comments