diff options
author | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
commit | 173a4f43a911175643bda81ee675e8d9269056ea (patch) | |
tree | 47df2c12b57214af6c31e47404b005675b8b7ffc /test/Frontend/print-header-includes.c | |
parent | 88f7a7d5251a2d813460274c92decc143a11569b (diff) | |
download | FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.zip FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.tar.gz |
Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_350/final@216957
Diffstat (limited to 'test/Frontend/print-header-includes.c')
-rw-r--r-- | test/Frontend/print-header-includes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Frontend/print-header-includes.c b/test/Frontend/print-header-includes.c index aa3e397..e248c76 100644 --- a/test/Frontend/print-header-includes.c +++ b/test/Frontend/print-header-includes.c @@ -1,12 +1,12 @@ -// RUN: %clang_cc1 -include Inputs/test3.h -E -H -o %t.out %s 2> %t.err -// RUN: FileCheck < %t.err %s +// RUN: %clang_cc1 -include Inputs/test3.h -E -H -o %t.out %s 2> %t.stderr +// RUN: FileCheck < %t.stderr %s // CHECK-NOT: test3.h // CHECK: . {{.*test.h}} // CHECK: .. {{.*test2.h}} -// RUN: %clang_cc1 -include Inputs/test3.h -E --show-includes -o %t.out %s 2> %t.err -// RUN: FileCheck --check-prefix=MS < %t.err %s +// RUN: %clang_cc1 -include Inputs/test3.h -E --show-includes -o %t.out %s > %t.stdout +// RUN: FileCheck --check-prefix=MS < %t.stdout %s // MS-NOT: test3.h // MS: Note: including file: {{.*test.h}} // MS: Note: including file: {{.*test2.h}} |