File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,34 @@ def test_ci(self):
284284 "check-cxx check-cxxabi check-unwind" ,
285285 )
286286
287+ def test_windows_ci (self ):
288+ env_variables = compute_projects .get_env_variables (
289+ [".ci/compute_projects.py" ], "Windows"
290+ )
291+ self .assertEqual (
292+ env_variables ["projects_to_build" ],
293+ "clang;clang-tools-extra;libclc;lld;llvm;mlir;polly" ,
294+ )
295+ self .assertEqual (
296+ env_variables ["project_check_targets" ],
297+ "check-clang check-clang-cir check-clang-tools check-lld check-llvm check-mlir check-polly" ,
298+ )
299+ self .assertEqual (
300+ env_variables ["runtimes_to_build" ],
301+ "libcxx;libcxxabi;libunwind" ,
302+ )
303+ self .assertEqual (
304+ env_variables ["runtimes_check_targets" ],
305+ "" ,
306+ )
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+ self .assertEqual (
311+ env_variables ["runtimes_check_targets_needs_reconfig" ],
312+ "check-cxx check-cxxabi check-unwind" ,
313+ )
314+
287315 def test_lldb (self ):
288316 env_variables = compute_projects .get_env_variables (
289317 ["lldb/CMakeLists.txt" ], "Linux"
You can’t perform that action at this time.
0 commit comments