summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Stahl <r.stahl@tum.de>2019-07-12 15:56:18 +0000
committerRafael Stahl <r.stahl@tum.de>2019-07-12 15:56:18 +0000
commit4c6730341004932dea39f782fc7b811222dffce4 (patch)
tree099a89e70dc1d0aef384868591a333f11202c3ed
parentfb5e42106a4a6083b0a56b66082c6ee39c6f043b (diff)
downloadclang-4c6730341004932dea39f782fc7b811222dffce4.tar.gz
[clang-format][tests] Explicitly specify style in some tests
Summary: This fixes broken tests when doing an out-of-source build that picks up a random .clang-format on the file system due to the default "file" style. Reviewers: djasper, klimek, MyDeveloperDay, krasimir Reviewed By: MyDeveloperDay Subscribers: lebedev.ri, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D61001 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365909 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Format/adjust-indent.cpp2
-rw-r--r--test/Format/disable-include-sorting.cpp2
-rw-r--r--test/Format/language-detection.cpp4
-rw-r--r--test/Format/xmloutput.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/test/Format/adjust-indent.cpp b/test/Format/adjust-indent.cpp
index 5565dc00b6..a97eed30af 100644
--- a/test/Format/adjust-indent.cpp
+++ b/test/Format/adjust-indent.cpp
@@ -1,4 +1,4 @@
-// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -lines=2:2 \
+// RUN: grep -Ev "// *[A-Z-]+:" %s | clang-format -style=LLVM -lines=2:2 \
// RUN: | FileCheck -strict-whitespace %s
void f() {
diff --git a/test/Format/disable-include-sorting.cpp b/test/Format/disable-include-sorting.cpp
index 875a0af400..2e9d378c28 100644
--- a/test/Format/disable-include-sorting.cpp
+++ b/test/Format/disable-include-sorting.cpp
@@ -1,4 +1,4 @@
-// RUN: clang-format %s | FileCheck %s
+// RUN: clang-format %s -style=LLVM | FileCheck %s
// RUN: clang-format %s -sort-includes -style="{SortIncludes: false}" | FileCheck %s
// RUN: clang-format %s -sort-includes=false | FileCheck %s -check-prefix=NOT-SORTED
diff --git a/test/Format/language-detection.cpp b/test/Format/language-detection.cpp
index 2a53be71da..72e2146c54 100644
--- a/test/Format/language-detection.cpp
+++ b/test/Format/language-detection.cpp
@@ -1,8 +1,8 @@
// RUN: grep -Ev "// *[A-Z0-9_]+:" %s \
-// RUN: | clang-format -style=llvm -assume-filename=foo.js \
+// RUN: | clang-format -style=LLVM -assume-filename=foo.js \
// RUN: | FileCheck -strict-whitespace -check-prefix=CHECK1 %s
// RUN: grep -Ev "// *[A-Z0-9_]+:" %s \
-// RUN: | clang-format -style=llvm -assume-filename=foo.cpp \
+// RUN: | clang-format -style=LLVM -assume-filename=foo.cpp \
// RUN: | FileCheck -strict-whitespace -check-prefix=CHECK2 %s
// CHECK1: {{^a >>>= b;$}}
// CHECK2: {{^a >> >= b;$}}
diff --git a/test/Format/xmloutput.cpp b/test/Format/xmloutput.cpp
index 3d84a2f5e4..525810143f 100644
--- a/test/Format/xmloutput.cpp
+++ b/test/Format/xmloutput.cpp
@@ -1,4 +1,4 @@
-// RUN: clang-format -output-replacements-xml -sort-includes %s \
+// RUN: clang-format -style=LLVM -output-replacements-xml -sort-includes %s \
// RUN: | FileCheck -strict-whitespace %s
// CHECK: <?xml