[zorg] r259248 - [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:03:54 PST 2016
Author: ygao
Date: Fri Jan 29 16:03:54 2016
New Revision: 259248
URL: http://llvm.org/viewvc/llvm-project?rev=259248&view=rev
Log:
[llvmlab] Enable clang tests that output to the console when we are on the buildbots
These tests are otherwise not exercised. Note that the outputs will stay on the
console and will not be saved into the test log.
Differential Revision: http://reviews.llvm.org/D16694
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=259248&r1=259247&r2=259248&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Fri Jan 29 16:03:54 2016
@@ -1367,7 +1367,7 @@ 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 = 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'],
@@ -1375,7 +1375,7 @@ def phasedClang(config_options, is_boots
# 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'],
More information about the llvm-commits
mailing list