]> granicus.if.org Git - vim/commitdiff
patch 8.0.0529: line in test commented out v8.0.0529
authorBram Moolenaar <Bram@vim.org>
Thu, 30 Mar 2017 20:20:29 +0000 (22:20 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 30 Mar 2017 20:20:29 +0000 (22:20 +0200)
Problem:    Line in test commented out.
Solution:   Uncomment the lines for character classes that were failing before
            8.0.0519. (Dominique Pelle, closes #1599)

src/testdir/test_regexp_utf8.vim
src/version.c

index 47bd7014abbbe55ec1c8c41bdc3e7733d4ceb482..c54b65081cc72654e1856018b3b0d7981fadf099 100644 (file)
@@ -112,12 +112,10 @@ func s:classes_test()
   call assert_equal('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', alnumchars)
   call assert_equal("\b", backspacechar)
   call assert_equal("\t ", blankchars)
-  " Commented out: it succeeds on Linux and Windows, but fails on macOs in Travis.
-  " call assert_equal("\x01\x02\x03\x04\x05\x06\x07\b\t\n\x0b\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\e\x1c\x1d\x1e\x1f\x7f", cntrlchars)
+  call assert_equal("\x01\x02\x03\x04\x05\x06\x07\b\t\n\x0b\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\e\x1c\x1d\x1e\x1f\x7f", cntrlchars)
   call assert_equal("0123456789", digitchars)
   call assert_equal("\<Esc>", escapechar)
-  " Commented out: it succeeds on Linux and Windows, but fails on macOs in Travis.
-  " call assert_equal('!"#$%&''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~', graphchars)
+  call assert_equal('!"#$%&''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~', graphchars)
   call assert_equal('abcdefghijklmnopqrstuvwxyzµßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ', lowerchars)
   call assert_equal(' !"#$%&''()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ', printchars)
   call assert_equal('!"#$%&''()*+,-./:;<=>?@[\]^_`{|}~', punctchars)
index fe972df1a8cc7d9369b4c588c85a94a71d425296..82510cdfe37b4695008ed993edb3b87492eb5251 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    529,
 /**/
     528,
 /**/