Skip to content

Commit deefb9a

Browse files
committed
[lldb] Fix lldb-dotest on macOS
1 parent 3b5aff5 commit deefb9a

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/builders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
def get_builder(platform):
1010
"""Returns a Builder instance for the given platform."""
11-
if platform == "darwin":
11+
if platform in ("darwin", "macosx"):
1212
from .darwin import BuilderDarwin
1313

1414
return BuilderDarwin()

0 commit comments

Comments
 (0)