]> granicus.if.org Git - clang/commitdiff
Renamed test file to use proper naming convention
authorIlya Biryukov <ibiryukov@google.com>
Thu, 14 Dec 2017 14:51:17 +0000 (14:51 +0000)
committerIlya Biryukov <ibiryukov@google.com>
Thu, 14 Dec 2017 14:51:17 +0000 (14:51 +0000)
Also changed the order of CHECK statements.
CHEKC-NOT must come before CHECK in skipped-function-bodies.cpp

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320702 91177308-0d34-0410-b5e6-96231b3b80d8

test/Index/skipped-function-bodies.cpp [moved from test/Index/skipped_function_bodies.cpp with 100% similarity]

similarity index 100%
rename from test/Index/skipped_function_bodies.cpp
rename to test/Index/skipped-function-bodies.cpp
index 4258f71f42f856d0a56d0fa884a6bdb37f4a8ec8..9378f664bb6f84e78df13243cf923dfbdc7b6d1f 100644 (file)
@@ -5,5 +5,5 @@ inline int with_body() { return 10; }
 inline int without_body();
 
 int x = with_body() + without_body();
-// CHECK: warning: inline function 'without_body' is not defined
 // CHECK-NOT: warning: inline function 'with_body' is not defined
+// CHECK: warning: inline function 'without_body' is not defined