[zorg] r360113 - Updated test build step name to correspond to the actual test targets.

Galina Kistanova via llvm-commits llvm-commits at lists.llvm.org
Mon May 6 21:27:19 PDT 2019


Author: gkistanova
Date: Mon May  6 21:27:19 2019
New Revision: 360113

URL: http://llvm.org/viewvc/llvm-project?rev=360113&view=rev
Log:
Updated test build step name to correspond to the actual test targets.

Modified:
    zorg/trunk/zorg/buildbot/builders/UnifiedTreeBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/UnifiedTreeBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/UnifiedTreeBuilder.py?rev=360113&r1=360112&r2=360113&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/UnifiedTreeBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/UnifiedTreeBuilder.py Mon May  6 21:27:19 2019
@@ -158,7 +158,7 @@ def addNinjaSteps(
 
     # Test just built components if requested.
     if checks:
-      f.addStep(NinjaCommand(name="test-%scheck-all" % step_name,
+      f.addStep(NinjaCommand(name="test-%s%s" % (step_name,"-".join(checks)),
                              targets=checks,
                              description=["Test", "just", "built", "components"],
                              haltOnFailure=kwargs.get('haltOnFailure', True),




More information about the llvm-commits mailing list