We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f72fd5a commit f17d890Copy full SHA for f17d890
utils/swift_build_support/tests/test_toolchain.py
@@ -53,9 +53,8 @@ def test_misc_tools(self):
53
tc = host_toolchain()
54
55
# CMake
56
- self.assertIsNotNone(tc.cmake)
57
- self.assertTrue(
58
- os.path.basename(tc.cmake).startswith('cmake'))
+ self.assertTrue(tc.cmake is None or
+ os.path.basename(tc.cmake).startswith('cmake'))
59
60
# Ninja
61
self.assertTrue(tc.ninja is None or
0 commit comments