diff options
Diffstat (limited to 'clang/test/Format/style-on-command-line.cpp')
-rw-r--r-- | clang/test/Format/style-on-command-line.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Format/style-on-command-line.cpp b/clang/test/Format/style-on-command-line.cpp index 3e22daddc22..7fd61341c5a 100644 --- a/clang/test/Format/style-on-command-line.cpp +++ b/clang/test/Format/style-on-command-line.cpp @@ -8,6 +8,10 @@ // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK5 %s // RUN: printf "\n" > %T/.clang-format // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK6 %s +// RUN: [ ! -e %T/.clang-format ] || rm %T/.clang-format +// RUN: [ ! -e %T/_clang-format ] || rm %T/_clang-format +// RUN: printf "BasedOnStyle: google\nIndentWidth: 6\n" > %T/_clang-format +// RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK7 %s void f() { // CHECK1: {{^ int\* i;$}} // CHECK2: {{^ int \*i;$}} @@ -19,6 +23,7 @@ void f() { // CHECK5: {{^ int\* i;$}} // CHECK6: {{^Error reading .*\.clang-format: Invalid argument}} // CHECK6: {{^ int \*i;$}} +// CHECK7: {{^ int\* i;$}} int*i; int j; } |