From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: test: remove test suite The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step. --- test/regex/categorize.dat | 62 ----------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 test/regex/categorize.dat (limited to 'test/regex/categorize.dat') diff --git a/test/regex/categorize.dat b/test/regex/categorize.dat deleted file mode 100644 index d34851278..000000000 --- a/test/regex/categorize.dat +++ /dev/null @@ -1,62 +0,0 @@ -NOTE regex implementation categorization 2004-05-31 - -?E aa* xaxaax (1,2) POSITION=leftmost -; POSITION=bug - -?E (a*)(ab)*(b*) abc (0,2)(0,1)(?,?)(1,2) ASSOCIATIVITY=right -|E (a*)(ab)*(b*) abc (0,2)(0,0)(0,2)(2,2) ASSOCIATIVITY=left -; ASSOCIATIVITY=bug - -?E ((a*)(ab)*)((b*)(a*)) aba (0,3)(0,2)(0,0)(0,2)(2,3)(2,2)(2,3) SUBEXPRESSION=precedence -|E ((a*)(ab)*)((b*)(a*)) aba (0,3)(0,1)(0,1)(?,?)(1,3)(1,2)(2,3) SUBEXPRESSION=grouping -; SUBEXPRESSION=bug - -?E (...?.?)* xxxxxx (0,6)(4,6) REPEAT_LONGEST=first -|E (...?.?)* xxxxxx (0,6)(2,6) REPEAT_LONGEST=last -|E (...?.?)* xxxxxx OK REPEAT_LONGEST=unknown -; REPEAT_LONGEST=bug - -?E (a|ab)(bc|c) abcabc (0,3)(0,2)(2,3) EXPECTED -|E (a|ab)(bc|c) abcabc (0,3)(0,1)(1,3) BUG=alternation-order -; BUG=alternation-order-UNKNOWN - -?E (aba|a*b)(aba|a*b) ababa (0,5)(0,2)(2,5) EXPECTED -|E (aba|a*b)(aba|a*b) ababa (0,4)(0,3)(3,4) BUG=first-match -; BUG=unknown-match - -?B a\(b\)*\1 a NOMATCH EXPECTED -|B a\(b\)*\1 a (0,1) BUG=nomatch-match -|B a\(b\)*\1 abab (0,2)(1,2) # BUG=repeat-any -; BUG=nomatch-match-UNKNOWN - -?E (a*){2} xxxxx (0,0)(0,0) EXPECTED -|E (a*){2} xxxxx (5,5)(5,5) BUG=range-null -; BUG=range-null-UNKNOWN - -?B a\(b\)*\1 abab NOMATCH EXPECTED -|B a\(b\)*\1 abab (0,1) # BUG=nomatch-match -|B a\(b\)*\1 abab (0,2)(1,2) BUG=repeat-any -; BUG=repeat-any-UNKNOWN - -?E (a*)* a (0,1)(0,1) EXPECTED -|E (a*)* ax (0,1)(0,1) BUG=repeat-null-unknown -|E (a*)* a (0,1)(1,1) BUG=repeat-null -; BUG=repeat-null-UNKNOWN - -?E (aba|a*b)* ababa (0,5)(2,5) EXPECTED -|E (aba|a*b)* ababa (0,5)(3,4) BUG=repeat-short -|E (aba|a*b)* ababa (0,4)(3,4) # LENGTH=first -; BUG=repeat-short-UNKNOWN - -?E (a(b)?)+ aba (0,3)(2,3) EXPECTED -|E (a(b)?)+ aba (0,3)(2,3)(1,2) BUG=repeat-artifact -; BUG=repeat-artifact-UNKNOWN - -?B \(a\(b\)*\)*\2 abab NOMATCH EXPECTED -|B \(a\(b\)*\)*\2 abab (0,4)(2,3)(1,2) BUG=repeat-artifact-nomatch -; BUG=repeat-artifact-nomatch-UNKNOWN - -?E (a?)((ab)?)(b?)a?(ab)?b? abab (0,4)(0,1)(1,1)(?,?)(1,2)(2,4) BUG=subexpression-first -|E .*(.*) ab (0,2)(2,2) EXPECTED -|E .*(.*) ab (0,2)(0,2) BUG=subexpression-first -; BUG=subexpression-first-UNKNOWN -- cgit v1.2.3