diff options
Diffstat (limited to '.ci/compute_projects_test.py')
| -rw-r--r-- | .ci/compute_projects_test.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.ci/compute_projects_test.py b/.ci/compute_projects_test.py index 7d780b51ca5d..bb1d24174ca3 100644 --- a/.ci/compute_projects_test.py +++ b/.ci/compute_projects_test.py @@ -110,15 +110,15 @@ class TestComputeProjects(unittest.TestCase): ["clang/CMakeLists.txt"], "Windows" ) self.assertEqual( - env_variables["projects_to_build"], "clang;clang-tools-extra;llvm" + env_variables["projects_to_build"], "clang;clang-tools-extra;lld;llvm" ) self.assertEqual( env_variables["project_check_targets"], "check-clang check-clang-tools" ) - self.assertEqual(env_variables["runtimes_to_build"], "") + self.assertEqual(env_variables["runtimes_to_build"], "compiler-rt") self.assertEqual( env_variables["runtimes_check_targets"], - "", + "check-compiler-rt", ) self.assertEqual( env_variables["runtimes_check_targets_needs_reconfig"], @@ -216,8 +216,8 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual(env_variables["projects_to_build"], "clang;flang;llvm") self.assertEqual(env_variables["project_check_targets"], "check-flang") - self.assertEqual(env_variables["runtimes_to_build"], "") - self.assertEqual(env_variables["runtimes_check_targets"], "") + self.assertEqual(env_variables["runtimes_to_build"], "flang-rt") + self.assertEqual(env_variables["runtimes_check_targets"], "check-flang-rt") self.assertEqual(env_variables["runtimes_check_targets_needs_reconfig"], "") self.assertEqual(env_variables["enable_cir"], "OFF") @@ -293,11 +293,11 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"], - "check-compiler-rt check-libc", + "check-compiler-rt check-flang-rt check-libc", ) self.assertEqual( env_variables["runtimes_check_targets_needs_reconfig"], @@ -318,11 +318,11 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "", + "compiler-rt", ) self.assertEqual( env_variables["runtimes_check_targets"], - "", + "check-compiler-rt", ) self.assertEqual( env_variables["runtimes_check_targets_needs_reconfig"], @@ -367,11 +367,11 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"], - "check-compiler-rt check-libc", + "check-compiler-rt check-flang-rt check-libc", ) self.assertEqual( env_variables["runtimes_check_targets_needs_reconfig"], @@ -402,11 +402,11 @@ class TestComputeProjects(unittest.TestCase): ) self.assertEqual( env_variables["runtimes_to_build"], - "compiler-rt;libc;libcxx;libcxxabi;libunwind", + "compiler-rt;flang-rt;libc;libcxx;libcxxabi;libunwind", ) self.assertEqual( env_variables["runtimes_check_targets"], - "check-compiler-rt check-libc", + "check-compiler-rt check-flang-rt check-libc", ) self.assertEqual( env_variables["runtimes_check_targets_needs_reconfig"], |
