[cfe-commits] r172152 - /cfe/trunk/test/TableGen/tg-fixits.td

Dmitri Gribenko gribozavr at gmail.com
Thu Jan 10 16:37:33 PST 2013


Author: gribozavr
Date: Thu Jan 10 18:37:33 2013
New Revision: 172152

URL: http://llvm.org/viewvc/llvm-project?rev=172152&view=rev
Log:
tg-fixits.td: fixup for Linux, which does not have a correct implementation of
llvm::sys::locale::columnWidth()

Modified:
    cfe/trunk/test/TableGen/tg-fixits.td

Modified: cfe/trunk/test/TableGen/tg-fixits.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/TableGen/tg-fixits.td?rev=172152&r1=172151&r2=172152&view=diff
==============================================================================
--- cfe/trunk/test/TableGen/tg-fixits.td (original)
+++ cfe/trunk/test/TableGen/tg-fixits.td Thu Jan 10 18:37:33 2013
@@ -38,4 +38,9 @@
 def Unicode : Warning<"ユニコード">, InGroup<DiagGroup<"name">>;
 //      CHECK: tg-fixits.td:[[@LINE-1]]:51: error: group 'name' is referred to anonymously
 // CHECK-NEXT: def Unicode : Warning<"{{[^"]+}}">, InGroup<DiagGroup<"name">>;
-// CHECK-NEXT: note:
+// Next two lines should not be printed, we get the underline wrong.  Our
+// implementation of diagnostic printing can skip printing these lines on some
+// OSes, but not on all.  See PR14910.
+// CHECK: {{(^                                          ~~~~~~~~\^~~~~~~~~~~~~~~~~~$)?}}
+// CHECK: {{(^                                          InGroup<NamedGroup>$)?}}
+// CHECK: note:





More information about the cfe-commits mailing list