summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-12-24 01:23:48 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-12-24 01:23:48 +0000
commit6cebf7f8c053796a02e5d593d8edcc1ad277cfd4 (patch)
tree07784925f2d2a3bb3c890ff33ef65623ed353d7d
parentbd5d1d832a28c7bda9f020940db63998b7e0effe (diff)
downloadbcm5719-llvm-6cebf7f8c053796a02e5d593d8edcc1ad277cfd4.tar.gz
bcm5719-llvm-6cebf7f8c053796a02e5d593d8edcc1ad277cfd4.zip
test/Index/preamble_macro_template.cpp: Tweak for win32.
Using the file immediately after "> file 2>&1" causes weird behavior on win32. For example, "foo > %t 2>&1; FileCheck --input-file=%t" Use "foo 2>&1 | tee %t" instead. Note, mixing stdout and stderr to the same handle might cause unexpected behavior, due to buffering. llvm-svn: 171009
-rw-r--r--clang/test/Index/preamble_macro_template.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/Index/preamble_macro_template.cpp b/clang/test/Index/preamble_macro_template.cpp
index 6a55ae392db..20f16b5df2e 100644
--- a/clang/test/Index/preamble_macro_template.cpp
+++ b/clang/test/Index/preamble_macro_template.cpp
@@ -3,7 +3,7 @@ template void foo(int *);
int main() { }
// RUN: c-index-test -write-pch %t.pch -fno-delayed-template-parsing -x c++-header %S/Inputs/preamble_macro_template.h
-// RUN: env CINDEXTEST_EDITING=1 c-index-test -test-load-source-reparse 5 local -fno-delayed-template-parsing -I %S/Inputs -include %t %s > %t.check.txt 2>&1 && FileCheck --input-file=%t.check.txt %s
+// RUN: env CINDEXTEST_EDITING=1 c-index-test -test-load-source-reparse 5 local -fno-delayed-template-parsing -I %S/Inputs -include %t %s 2>&1 | tee %t.check.txt | FileCheck %s
// CHECK: preamble_macro_template.h:4:6: FunctionDecl=foo:4:6 (Definition) [Specialization of foo:4:6] Extent=[4:1 - 6:2]
// CHECK: preamble_macro_template.h:4:13: ParmDecl=p:4:13 (Definition) Extent=[4:10 - 4:14]
// CHECK: preamble_macro_template.h:4:16: CompoundStmt= Extent=[4:16 - 6:2]
@@ -13,5 +13,3 @@ int main() { }
// CHECK: preamble_macro_template.h:5:25: IntegerLiteral= Extent=[5:25 - 5:26]
// CHECK: preamble_macro_template.cpp:3:5: FunctionDecl=main:3:5 (Definition) Extent=[3:1 - 3:15]
// CHECK: preamble_macro_template.cpp:3:12: CompoundStmt= Extent=[3:12 - 3:15]
-
-// REQUIRES: shell
OpenPOWER on IntegriCloud