blob: c7fdd4b97a43e2733575c4fbcf37c110914d7c9e [file] [log] [blame]
Daniel Jasper0ff72fc2013-03-25 09:14:25 +00001// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
Daniel Jasperc6d82ca2013-04-12 10:12:01 +00002// RUN: clang-format -style=LLVM -offset=2 -length=0 -offset=28 -length=0 -i %t.cpp
Daniel Jasper0ff72fc2013-03-25 09:14:25 +00003// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s
4// CHECK: {{^int\ \*i;$}}
5 int*i;
6
7// CHECK: {{^\ \ int\ \ \*\ \ i;$}}
8 int * i;
9
10// CHECK: {{^\ \ int\ \*i;$}}
11 int * i;