From: Ilya Biryukov Date: Thu, 14 Dec 2017 14:51:17 +0000 (+0000) Subject: Renamed test file to use proper naming convention X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f19939b529be1bdd8adce0ff0e648ab3ae0faa6a;p=clang 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 --- diff --git a/test/Index/skipped_function_bodies.cpp b/test/Index/skipped-function-bodies.cpp similarity index 100% rename from test/Index/skipped_function_bodies.cpp rename to 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