[PATCH] D16694: [llvmlab] Enable clang tests that output to the console when we are on the buildbots

Yunzhong Gao via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 29 14:07:56 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL259248: [llvmlab] Enable clang tests that output to the console when we are on theā€¦ (authored by ygao).

Changed prior to commit:
  http://reviews.llvm.org/D16694?vs=46313&id=46431#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D16694

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

Index: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
===================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
@@ -1367,15 +1367,15 @@
     # Save artifacts of this build for use by other builders.
     f = artifacts.uploadArtifacts(f)
     # Run the LLVM and Clang regression tests.
-    cmd_str = r"""make VERBOSE=1 LIT_ARGS="-v --param run_long_tests=true --filter='^(?!.*debuginfo-tests)'" check-all"""
+    cmd_str = r"""make VERBOSE=1 LIT_ARGS="-v --param run_long_tests=true --param enable_console=1 --filter='^(?!.*debuginfo-tests)'" check-all"""
     f.addStep(lit_test_command.LitTestCommand(name='run.llvm.tests', haltOnFailure=True,
                                               command=cmd_str,
                                               description=['all', 'tests'],
                                               workdir=clang_build_dir))
     # Work around for lldb issue rdar://14929651
     # The crazy filter regex is to remove static-member[2].cpp, which requires xcode5 or later.
     # radar://16295455 tracks the removal of this regex.
-    cmd_str = r"""make VERBOSE=1 LIT_ARGS="-j 1 -v --param run_long_tests=true  --filter='debuginfo-tests.(?!static-member)'" check-all"""
+    cmd_str = r"""make VERBOSE=1 LIT_ARGS="-j 1 -v --param run_long_tests=true --param enable_console=1 --filter='debuginfo-tests.(?!static-member)'" check-all"""
     f.addStep(lit_test_command.LitTestCommand(name='run.llvm.debuginfo-tests', haltOnFailure=True,
                                               command=cmd_str,
                                               description=['all', 'tests'],


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16694.46431.patch
Type: text/x-patch
Size: 1731 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160129/d0965c59/attachment.bin>


More information about the llvm-commits mailing list