[llvm-commits] [zorg] r172002 - in /zorg/trunk/zorg/buildbot: builders/ClangBuilder.py builders/LNTBuilder.py commands/LitTestCommand.py commands/__init__.py

David Blaikie dblaikie at gmail.com
Wed Jan 9 13:24:24 PST 2013


Author: dblaikie
Date: Wed Jan  9 15:24:24 2013
New Revision: 172002

URL: http://llvm.org/viewvc/llvm-project?rev=172002&view=rev
Log:
Undo r171416 based on review feedback by Takumi and Daniel.

Added:
    zorg/trunk/zorg/buildbot/commands/LitTestCommand.py
      - copied unchanged from r171415, zorg/trunk/zorg/buildbot/commands/LitTestCommand.py
Modified:
    zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
    zorg/trunk/zorg/buildbot/builders/LNTBuilder.py
    zorg/trunk/zorg/buildbot/commands/__init__.py

Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=172002&r1=172001&r2=172002&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Wed Jan  9 15:24:24 2013
@@ -12,6 +12,7 @@
 from zorg.buildbot.commands import DejaGNUCommand
 from zorg.buildbot.commands.BatchFileDownload import BatchFileDownload
 from zorg.buildbot.commands.ClangTestCommand import ClangTestCommand
+from zorg.buildbot.commands.LitTestCommand import LitTestCommand
 from zorg.buildbot.PhasedBuilderUtils import GetLatestValidated, find_cc
 
 def getClangBuildFactory(
@@ -744,7 +745,7 @@
     # Save artifacts of this build for use by other builders.
     f = uploadArtifacts(f)
     # Run the LLVM and Clang regression tests.
-    f.addStep(ClangTestCommand(name='check-all', haltOnFailure=True,
+    f.addStep(LitTestCommand(name='run.llvm.tests', haltOnFailure=True,
                              command=['make', '-j', WithProperties('%(jobs)s'),
                              'VERBOSE=1', 'check-all'],
                              description=['all', 'tests'],

Modified: zorg/trunk/zorg/buildbot/builders/LNTBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LNTBuilder.py?rev=172002&r1=172001&r2=172002&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LNTBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LNTBuilder.py Wed Jan  9 15:24:24 2013
@@ -124,7 +124,7 @@
     if parallel:
         args.extend(['-j', WithProperties(jobs)])
     args.extend(nt_flags)
-    f.addStep(zorg.buildbot.commands.ClangTestCommand.ClangTestCommand(
+    f.addStep(zorg.buildbot.commands.LitTestCommand.LitTestCommand(
             name='lnt.nightly-test', command=args, haltOnFailure=True,
             description=['nightly test'], workdir='tests',
             logfiles={'configure.log' : 'nt/build/configure.log',

Modified: zorg/trunk/zorg/buildbot/commands/__init__.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/commands/__init__.py?rev=172002&r1=172001&r2=172002&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/commands/__init__.py (original)
+++ zorg/trunk/zorg/buildbot/commands/__init__.py Wed Jan  9 15:24:24 2013
@@ -1,6 +1,7 @@
 import AnalyzerCompareCommand
 import BatchFileDownload
 import ClangTestCommand
+import LitTestCommand
 import DejaGNUCommand
 import GTestCommand
 





More information about the llvm-commits mailing list