summaryrefslogtreecommitdiffstats
path: root/test/Index
diff options
context:
space:
mode:
authorIlya Biryukov <ibiryukov@google.com>2017-12-14 14:51:17 +0000
committerIlya Biryukov <ibiryukov@google.com>2017-12-14 14:51:17 +0000
commitf19939b529be1bdd8adce0ff0e648ab3ae0faa6a (patch)
tree45839c6304773be79ac43af78dc91f0214bfcbea /test/Index
parent6c3c48f7a30186ac9d31b7e913c61786ae6526e7 (diff)
Renamed test file to use proper naming convention
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
Diffstat (limited to 'test/Index')
-rw-r--r--test/Index/skipped-function-bodies.cpp (renamed from test/Index/skipped_function_bodies.cpp)2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Index/skipped_function_bodies.cpp b/test/Index/skipped-function-bodies.cpp
index 4258f71f42..9378f664bb 100644
--- a/test/Index/skipped_function_bodies.cpp
+++ b/test/Index/skipped-function-bodies.cpp
@@ -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