summaryrefslogtreecommitdiff
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-08-30 17:42:33 +0000
committerAndrew Trick <atrick@apple.com>2011-08-30 17:42:33 +0000
commit7c12837916e647a9225fe2433f826588f2f28726 (patch)
tree5bfadd50a629303c28bacd808f029525c59b5c37 /test/lit.cfg
parent0aaa9195b53e693eb8618fef305e3799b5b77771 (diff)
downloadllvm-7c12837916e647a9225fe2433f826588f2f28726.tar.gz
llvm-7c12837916e647a9225fe2433f826588f2f28726.tar.bz2
llvm-7c12837916e647a9225fe2433f826588f2f28726.tar.xz
Lit option for ignoring stderr output.
This is useful for testing a build a temporarily hand instrumented build. Patch by arrowdodger! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138804 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index ef56473af5..af04337232 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -12,6 +12,9 @@ config.name = 'LLVM'
# testFormat: The test format to use to interpret tests.
config.test_format = lit.formats.TclTest()
+# To ignore test output on stderr so it doesn't trigger failures uncomment this:
+#config.test_format = lit.formats.TclTest(ignoreStdErr=True)
+
# suffixes: A list of file extensions to treat as test files, this is actually
# set by on_clone().
config.suffixes = []