[Lldb-commits] [PATCH] D15065: Define new builder_netbsd

Kamil Rytarowski via lldb-commits lldb-commits at lists.llvm.org
Sun Nov 29 18:17:42 PST 2015


krytarowski created this revision.
krytarowski added reviewers: emaste, tfiala.
krytarowski added subscribers: joerg, lldb-commits.
krytarowski set the repository for this revision to rL LLVM.

This is used in tests.

Repository:
  rL LLVM

http://reviews.llvm.org/D15065

Files:
  packages/Python/lldbsuite/test/lldbtest.py
  packages/Python/lldbsuite/test/plugins/builder_netbsd.py

Index: packages/Python/lldbsuite/test/plugins/builder_netbsd.py
===================================================================
--- /dev/null
+++ packages/Python/lldbsuite/test/plugins/builder_netbsd.py
@@ -0,0 +1,4 @@
+from builder_base import *
+
+def buildDsym(sender=None, architecture=None, compiler=None, dictionary=None, clean=True):
+    return False
Index: packages/Python/lldbsuite/test/lldbtest.py
===================================================================
--- packages/Python/lldbsuite/test/lldbtest.py
+++ packages/Python/lldbsuite/test/lldbtest.py
@@ -430,6 +430,8 @@
 def builder_module():
     if sys.platform.startswith("freebsd"):
         return __import__("builder_freebsd")
+    if sys.platform.startswith("netbsd"):
+        return __import__("builder_netbsd")
     return __import__("builder_" + sys.platform)
 
 def run_adb_command(cmd, device_id):


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15065.41363.patch
Type: text/x-patch
Size: 886 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151130/0dba16c7/attachment.bin>


More information about the lldb-commits mailing list