[Lldb-commits] [PATCH] D21159: [zorg] Add a step to run unit tests to the scripted LLDB builder

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 9 14:20:39 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL272311: [zorg] Add a step to run unit tests to the scripted LLDB builder (authored by labath).

Changed prior to commit:
  http://reviews.llvm.org/D21159?vs=60121&id=60235#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D21159

Files:
  zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py

Index: zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
===================================================================
--- zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
+++ zorg/trunk/zorg/buildbot/builders/LLDBBuilder.py
@@ -967,6 +967,13 @@
 
     # Test
     if runTest:
+        f.addStep(LitTestCommand(name="run unit tests",
+                                 command=[pathSep + 'testUnit' + scriptExt],
+                                 description=["testing"],
+                                 descriptionDone=["unit test"],
+                                 flunkOnFailure=False,
+                                 warnOnFailure=False,
+                                 workdir='scripts'))
         getTestSteps(f, scriptExt, pathSep)
         # upload test traces
         getShellCommandStep(f, name='upload test traces',


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21159.60235.patch
Type: text/x-patch
Size: 840 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160609/8198cda9/attachment.bin>


More information about the lldb-commits mailing list