diff options
Diffstat (limited to 'test/Format/ranges.cpp')
-rw-r--r-- | test/Format/ranges.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Format/ranges.cpp b/test/Format/ranges.cpp index c7fdd4b..66b984e 100644 --- a/test/Format/ranges.cpp +++ b/test/Format/ranges.cpp @@ -1,11 +1,11 @@ -// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp -// RUN: clang-format -style=LLVM -offset=2 -length=0 -offset=28 -length=0 -i %t.cpp -// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s +// RUN: grep -Ev "// *[A-Z-]+:" %s \ +// RUN: | clang-format -style=LLVM -offset=2 -length=0 -offset=28 -length=0 \ +// RUN: | FileCheck -strict-whitespace %s // CHECK: {{^int\ \*i;$}} - int*i; +int*i; -// CHECK: {{^\ \ int\ \ \*\ \ i;$}} - int * i; +// CHECK: {{^int\ \ \*\ \ i;$}} +int * i; -// CHECK: {{^\ \ int\ \*i;$}} - int * i; +// CHECK: {{^int\ \*i;$}} +int * i; |