Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / builders / __init__.py
blob9dd82cb3ebccfe27ccb9ad458716bbd5073f5efb
1 """
2 This module builds test binaries for the test suite using Make.
4 Platform specific builders can override methods in the Builder base class. The
5 factory method below hands out builders based on the given platform.
6 """
9 def get_builder(platform):
10 """Returns a Builder instance for the given platform."""
11 if platform == "darwin":
12 from .darwin import BuilderDarwin
14 return BuilderDarwin()
16 from .builder import Builder
18 return Builder()