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'],
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'],
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits