summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/plugins/builder_darwin.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/plugins/builder_darwin.py')
-rw-r--r--packages/Python/lldbsuite/test/plugins/builder_darwin.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/Python/lldbsuite/test/plugins/builder_darwin.py b/packages/Python/lldbsuite/test/plugins/builder_darwin.py
deleted file mode 100644
index 1cee39bbb4cb..000000000000
--- a/packages/Python/lldbsuite/test/plugins/builder_darwin.py
+++ /dev/null
@@ -1,26 +0,0 @@
-
-from __future__ import print_function
-import os
-import lldbsuite.test.lldbtest as lldbtest
-
-from builder_base import *
-
-def buildDsym(
- sender=None,
- architecture=None,
- compiler=None,
- dictionary=None,
- testdir=None,
- testname=None):
- """Build the binaries with dsym debug info."""
- commands = []
- commands.append(getMake(testdir, testname) +
- ["MAKE_DSYM=YES",
- getArchSpec(architecture),
- getCCSpec(compiler),
- "all", getCmdLine(dictionary)])
-
- runBuildCommands(commands, sender=sender)
-
- # True signifies that we can handle building dsym.
- return True