Updated test build step name to correspond to the actual test targets.

git-svn-id: https://llvm.org/svn/llvm-project/zorg/trunk@360113 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/zorg/buildbot/builders/UnifiedTreeBuilder.py b/zorg/buildbot/builders/UnifiedTreeBuilder.py
index f68a045..3171e29 100644
--- a/zorg/buildbot/builders/UnifiedTreeBuilder.py
+++ b/zorg/buildbot/builders/UnifiedTreeBuilder.py
@@ -158,7 +158,7 @@
 
     # 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),