diff options
Diffstat (limited to 'test/Format/line-ranges.cpp')
-rw-r--r-- | test/Format/line-ranges.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/Format/line-ranges.cpp b/test/Format/line-ranges.cpp index 370445a..e81e962 100644 --- a/test/Format/line-ranges.cpp +++ b/test/Format/line-ranges.cpp @@ -1,11 +1,11 @@ -// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp -// RUN: clang-format -style=LLVM -lines=1:1 -lines=5:5 -i %t.cpp -// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s +// RUN: grep -Ev "// *[A-Z-]+:" %s \ +// RUN: | clang-format -style=LLVM -lines=1:1 -lines=5:5 \ +// RUN: | FileCheck -strict-whitespace %s // CHECK: {{^int\ \*i;$}} int*i; -// CHECK: {{^\ \ int\ \ \*\ \ i;$}} - int * i; +// CHECK: {{^int\ \ \*\ \ i;$}} +int * i; -// CHECK: {{^\ \ int\ \*i;$}} - int * i; +// CHECK: {{^int\ \*i;$}} +int * i; |