aboutsummaryrefslogtreecommitdiff
path: root/test/Format/disable-include-sorting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Format/disable-include-sorting.cpp')
-rw-r--r--test/Format/disable-include-sorting.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Format/disable-include-sorting.cpp b/test/Format/disable-include-sorting.cpp
new file mode 100644
index 000000000000..875a0af400e9
--- /dev/null
+++ b/test/Format/disable-include-sorting.cpp
@@ -0,0 +1,10 @@
+// RUN: clang-format %s | 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
+
+#include <b>
+#include <a>
+// CHECK: <a>
+// CHECK-NEXT: <b>
+// NOT-SORTED: <b>
+// NOT-SORTED-NEXT: <a>