diff options
author | Eric Christopher <echristo@gmail.com> | 2016-03-14 06:21:07 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2016-03-14 06:21:07 +0000 |
commit | ae6d694ae7a1685b81c3924a3756b246f79cfb24 (patch) | |
tree | a56556dfeefa5712013fb0d64181374da55b5d0e /clang | |
parent | 9e33c7f5d32cdad091296fdffb6030881386e5a7 (diff) | |
download | bcm5719-llvm-ae6d694ae7a1685b81c3924a3756b246f79cfb24.tar.gz bcm5719-llvm-ae6d694ae7a1685b81c3924a3756b246f79cfb24.zip |
Give the test a temporary output so it can be cleaned up.
llvm-svn: 263410
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/Driver/cl-pch-showincludes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Driver/cl-pch-showincludes.cpp b/clang/test/Driver/cl-pch-showincludes.cpp index a78e60e9ba4..9182635fa19 100644 --- a/clang/test/Driver/cl-pch-showincludes.cpp +++ b/clang/test/Driver/cl-pch-showincludes.cpp @@ -8,14 +8,14 @@ // When building the pch, header1.h (included by header2.h), header2.h (the pch // input itself) and header3.h (included directly, above) should be printed. -// RUN: %clang_cl -Werror /showIncludes /I%S/Inputs /Ycheader2.h /FIheader2.h /Fp%t.pch /c -- %s 2>&1 \ +// RUN: %clang_cl -Werror /showIncludes /I%S/Inputs /Ycheader2.h /FIheader2.h /Fp%t.pch /c /Fo%t -- %s 2>&1 \ // RUN: | FileCheck -check-prefix=CHECK-YC %s // CHECK-YC: Note: including file: {{.+header2.h}} // CHECK-YC: Note: including file: {{.+header1.h}} // CHECK-YC: Note: including file: {{.+header3.h}} // When using the pch, only the direct include is printed. -// RUN: %clang_cl -Werror /showIncludes /I%S/Inputs /Yuheader2.h /FIheader2.h /Fp%t.pch /c -- %s 2>&1 \ +// RUN: %clang_cl -Werror /showIncludes /I%S/Inputs /Yuheader2.h /FIheader2.h /Fp%t.pch /c /Fo%t -- %s 2>&1 \ // RUN: | FileCheck -check-prefix=CHECK-YU %s // CHECK-YU-NOT: Note: including file: {{.*pch}} // CHECK-YU-NOT: Note: including file: {{.*header1.h}} |