]> granicus.if.org Git - clang/commitdiff
Fixed tests where grep was not matching the linefeed
authorAlexandre Ganea <alexandre.ganea@ubisoft.com>
Fri, 10 May 2019 20:11:36 +0000 (20:11 +0000)
committerAlexandre Ganea <alexandre.ganea@ubisoft.com>
Fri, 10 May 2019 20:11:36 +0000 (20:11 +0000)
When files are synchronized locally as CRLF on Windows, grep didn't match the newline. Switched to FileCheck instead.

Differential Revision: https://reviews.llvm.org/D61496

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360467 91177308-0d34-0410-b5e6-96231b3b80d8

test/Preprocessor/indent_macro.c
test/Preprocessor/macro_fn_varargs_named.c
test/Preprocessor/macro_not_define.c
test/Preprocessor/macro_rparen_scan.c

index e69500750f51a39b3f4d587f0766d89c9e7028d8..f1430e9576422893a9bc640aca512c5bbb3d1083 100644 (file)
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -E %s | grep '^   zzap$'
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
+// CHECK:   zzap
 
 // zzap is on a new line, should be indented.
 #define BLAH  zzap
index b50d53d46d0155608cad9af6ecc5ec1d072056ba..d27f5b3985baad193afc5bf4a2fd4c0f61999231 100644 (file)
@@ -1,6 +1,9 @@
-// RUN: %clang_cc1 -E %s | grep '^a: x$'
-// RUN: %clang_cc1 -E %s | grep '^b: x y, z,h$'
-// RUN: %clang_cc1 -E %s | grep '^c: foo(x)$'
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-1
+// CHECK-1:a: x
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-2
+// CHECK-2:b: x y, z,h
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace --check-prefix CHECK-3
+// CHECK-3:c: foo(x)
 
 #define A(b, c...) b c
 a: A(x)
index 82648d47d447bfe53402ccdc433ca2ddd4ea835e..c0e9c858311181fc792f368305edbbc3ee47058a 100644 (file)
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -E %s | grep '^ # define X 3$'
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
+// CHECK: # define X 3
 
 #define H # 
  #define D define 
index e4de5dbcef0c95f92c3aa2d2a0767143b0067a66..7dfa98e4a88cd2dcfb93b408d029191f266a2ab4 100644 (file)
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -E %s | grep '^3 ;$'
+// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
+// CHECK:3 ;
 
 /* Right paren scanning, hard case.  Should expand to 3. */
 #define i(x) 3