[cfe-commits] r85223 - in /cfe/trunk/test/Preprocessor: assembler-with-cpp.c output_paste_avoid.c
Nuno Lopes
nunoplopes at sapo.pt
Tue Oct 27 03:09:30 PDT 2009
Author: nlopes
Date: Tue Oct 27 05:09:29 2009
New Revision: 85223
URL: http://llvm.org/viewvc/llvm-project?rev=85223&view=rev
Log:
fix tests
Modified:
cfe/trunk/test/Preprocessor/assembler-with-cpp.c
cfe/trunk/test/Preprocessor/output_paste_avoid.c
Modified: cfe/trunk/test/Preprocessor/assembler-with-cpp.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Preprocessor/assembler-with-cpp.c?rev=85223&r1=85222&r2=85223&view=diff
==============================================================================
--- cfe/trunk/test/Preprocessor/assembler-with-cpp.c (original)
+++ cfe/trunk/test/Preprocessor/assembler-with-cpp.c Tue Oct 27 05:09:29 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -x assembler-with-cpp -fdollars-in-identifiers=0 -E %s > %t | FileCheck -strict-whitespace -check-prefix=CHECK-Identifiers-False %s &&
+// RUN: clang-cc -x assembler-with-cpp -fdollars-in-identifiers=0 -E %s -o - | FileCheck -strict-whitespace -check-prefix=CHECK-Identifiers-False %s &&
#ifndef __ASSEMBLER__
#error "__ASSEMBLER__ not defined"
@@ -49,7 +49,7 @@
6: FOO(blarg)
// CHECK-Identifiers-False: 6: blarg $foo
-// RUN: clang-cc -x assembler-with-cpp -fdollars-in-identifiers=1 -E %s > %t | FileCheck -check-prefix=CHECK-Identifiers-True -strict-whitespace %s &&
+// RUN: clang-cc -x assembler-with-cpp -fdollars-in-identifiers=1 -E %s -o - | FileCheck -check-prefix=CHECK-Identifiers-True -strict-whitespace %s &&
#define FOO(name) name ## $foo
7: FOO(blarg)
// CHECK-Identifiers-True: 7: blarg$foo
Modified: cfe/trunk/test/Preprocessor/output_paste_avoid.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Preprocessor/output_paste_avoid.c?rev=85223&r1=85222&r2=85223&view=diff
==============================================================================
--- cfe/trunk/test/Preprocessor/output_paste_avoid.c (original)
+++ cfe/trunk/test/Preprocessor/output_paste_avoid.c Tue Oct 27 05:09:29 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -E %s -o %t | FileCheck -strict-whitespace %s
+// RUN: clang-cc -E %s -o - | FileCheck -strict-whitespace %s
#define y(a) ..a
More information about the cfe-commits
mailing list