[zorg] r189652 - [llvmlab] Try to get llvmlab's testers to run the long tests again. Also remove the -j command since lit will handle the threading.

Michael Gottesman mgottesman at apple.com
Thu Aug 29 22:57:35 PDT 2013


Author: mgottesman
Date: Fri Aug 30 00:57:35 2013
New Revision: 189652

URL: http://llvm.org/viewvc/llvm-project?rev=189652&view=rev
Log:
[llvmlab] Try to get llvmlab's testers to run the long tests again. Also remove the -j command since lit will handle the threading.

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

Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=189652&r1=189651&r2=189652&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Fri Aug 30 00:57:35 2013
@@ -812,9 +812,9 @@ def phasedClang(config_options, is_boots
     # Save artifacts of this build for use by other builders.
     f = artifacts.uploadArtifacts(f)
     # Run the LLVM and Clang regression tests.
+    cmd_str = 'make VERBOSE=1 LIT_ARGS="-v --param run_long_tests=true" check-all'
     f.addStep(lit_test_command.LitTestCommand(name='run.llvm.tests', haltOnFailure=True,
-                                              command=['make', '-j', WithProperties('%(jobs)s'),
-                                                       'VERBOSE=1', 'check-all'],
+                                              command=cmd_str,
                                               description=['all', 'tests'],
                                               workdir=clang_build_dir))
     return f





More information about the llvm-commits mailing list