diff options
author | Lubos Lunak <l.lunak@centrum.cz> | 2014-05-01 22:40:00 +0000 |
---|---|---|
committer | Lubos Lunak <l.lunak@centrum.cz> | 2014-05-01 22:40:00 +0000 |
commit | 66a40c9b848f94864eb9ebadda81d3acfcf78975 (patch) | |
tree | 38fc2fa4bd17b2ceabbeeb6a2da940161e20761b /test | |
parent | 11ddfb867eec693bf64f9025156ff515cd0951e9 (diff) | |
download | clang-66a40c9b848f94864eb9ebadda81d3acfcf78975.tar.gz |
do not hide clang stderr output during a test
I don't know why this fails on the buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207808 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Frontend/rewrite-includes-messages.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Frontend/rewrite-includes-messages.c b/test/Frontend/rewrite-includes-messages.c index b7170afc0e..b1cd9bbf15 100644 --- a/test/Frontend/rewrite-includes-messages.c +++ b/test/Frontend/rewrite-includes-messages.c @@ -1,5 +1,5 @@ -// RUN: %clang -E -frewrite-includes %s -I%S/Inputs/ | %clang -Wall -Wunused-macros -x c -c - 2> %t.1 -// RUN: %clang -I%S/Inputs/ -Wall -Wunused-macros -c %s 2> %t.2 +// RUN: %clang -E -frewrite-includes %s -I%S/Inputs/ | %clang -Wall -Wunused-macros -x c -c - 2>&1 | tee %t.1 +// RUN: %clang -I%S/Inputs/ -Wall -Wunused-macros -c %s 2>&1 | tee %t.2 // RUN: diff %t.1 %t.2 // expected-no-diagnostics // REQUIRES: shell |