diff options
| author | Andrew Trick <atrick@apple.com> | 2011-08-30 17:42:33 +0000 |
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2011-08-30 17:42:33 +0000 |
| commit | d74c19449eee5d2cc0009fb1c48421f9b2b2d384 (patch) | |
| tree | 27b684d661efe2693249145ab2d93ad36115bc02 /llvm/test | |
| parent | 59b75285f612336f2a6493a999703b983bb5d51f (diff) | |
| download | bcm5719-llvm-d74c19449eee5d2cc0009fb1c48421f9b2b2d384.tar.gz bcm5719-llvm-d74c19449eee5d2cc0009fb1c48421f9b2b2d384.zip | |
Lit option for ignoring stderr output.
This is useful for testing a build a temporarily hand instrumented
build.
Patch by arrowdodger!
llvm-svn: 138804
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/lit.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index ef56473af58..af043372328 100644 --- a/llvm/test/lit.cfg +++ b/llvm/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 = [] |

