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',
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',
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits