]> granicus.if.org Git - clang/commitdiff
Give the test a temporary output so it can be cleaned up.
authorEric Christopher <echristo@gmail.com>
Mon, 14 Mar 2016 06:21:07 +0000 (06:21 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 14 Mar 2016 06:21:07 +0000 (06:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263410 91177308-0d34-0410-b5e6-96231b3b80d8

test/Driver/cl-pch-showincludes.cpp

index a78e60e9ba4a68dd2bc6c8c6c959f1248b69073a..9182635fa19f76bb9d2910c05eb65ec9df79a893 100644 (file)
@@ -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}}