Re-add clang-format tests to clang/test.
authorDaniel Jasper <djasper@google.com>
Mon, 25 Mar 2013 09:14:25 +0000 (09:14 +0000)
committerDaniel Jasper <djasper@google.com>
Mon, 25 Mar 2013 09:14:25 +0000 (09:14 +0000)
Also now use -strict-whitespace as the tests are confusing otherwise.

llvm-svn: 177853

clang/test/CMakeLists.txt
clang/test/Format/basic.cpp [new file with mode: 0644]
clang/test/Format/diagnostic.cpp [new file with mode: 0644]
clang/test/Format/ranges.cpp [new file with mode: 0644]

index 114015b..a11b83a 100644 (file)
@@ -29,7 +29,7 @@ endif ()
 set(CLANG_TEST_DEPS
   clang clang-headers
   c-index-test diagtool arcmt-test c-arcmt-test
-  clang-check
+  clang-check clang-format
   )
 set(CLANG_TEST_PARAMS
   clang_site_config=${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
diff --git a/clang/test/Format/basic.cpp b/clang/test/Format/basic.cpp
new file mode 100644 (file)
index 0000000..375bbd2
--- /dev/null
@@ -0,0 +1,6 @@
+// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
+// RUN: clang-format -i %t.cpp
+// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s
+
+// CHECK: {{^int\ \*i;}}
+ int   *  i  ;
diff --git a/clang/test/Format/diagnostic.cpp b/clang/test/Format/diagnostic.cpp
new file mode 100644 (file)
index 0000000..2e930ee
--- /dev/null
@@ -0,0 +1,4 @@
+// RUN: clang-format 2>&1 >/dev/null %s |FileCheck %s
+
+}
+// CHECK: diagnostic.cpp:[[@LINE-1]]:1: error: unexpected '}'
diff --git a/clang/test/Format/ranges.cpp b/clang/test/Format/ranges.cpp
new file mode 100644 (file)
index 0000000..0244fc1
--- /dev/null
@@ -0,0 +1,11 @@
+// RUN: grep -Ev "// *[A-Z-]+:" %s > %t.cpp
+// RUN: clang-format -offset=2 -length=0 -offset=28 -length=0 -i %t.cpp
+// RUN: FileCheck -strict-whitespace -input-file=%t.cpp %s
+// CHECK: {{^int\ \*i;$}}
+  int*i;
+
+// CHECK: {{^\ \ int\ \ \*\ \ i;$}}
+  int  *  i; 
+
+// CHECK: {{^\ \ int\ \*i;$}}
+  int   *   i;