From: Byron Jones Date: Wed, 22 May 2013 17:03:13 +0000 (+0800) Subject: Bug 828344: add missing xt broken tests X-Git-Tag: bugzilla-4.2.6~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09d2727039b11774f1dbf790ad3ab737c4f7b300;p=thirdparty%2Fbugzilla.git Bug 828344: add missing xt broken tests --- diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index 051570ff8b..85547df469 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -263,6 +263,15 @@ use constant KNOWN_BROKEN => { 'allwords-<1>' => { ALLWORDS_BROKEN, }, + 'anywords-<1>' => { + 'flagtypes.name' => { contains => [1,2,3,4,5] }, + }, + 'anywords-<1> <2>' => { + 'flagtypes.name' => { contains => [3,4,5] }, + }, + 'anywordssubstr-<1> <2>' => { + 'flagtypes.name' => { contains => [3,4,5] }, + }, # setters.login_name and requestees.login name aren't tracked individually # in bugs_activity, so can't be searched using this method. @@ -401,12 +410,18 @@ use constant BROKEN_NOT => { anyexact => { 'flagtypes.name' => { contains => [1, 2, 5] }, }, - anywords => { - 'flagtypes.name' => { contains => [1, 2, 5] }, + 'anywords-<1>' => { + 'flagtypes.name' => { contains => [1, 2, 3, 4, 5] }, + }, + 'anywords-<1> <2>' => { + 'flagtypes.name' => { contains => [3, 4, 5] }, }, anywordssubstr => { 'flagtypes.name' => { contains => [5] }, }, + 'anywordssubstr-<1> <2>' => { + 'flagtypes.name' => { contains => [3,4,5] }, + }, casesubstring => { 'flagtypes.name' => { contains => [5] }, }, @@ -462,6 +477,12 @@ use constant BROKEN_NOT => { notsubstring => { longdesc => { contains => [1] }, }, + 'nowords-<1>' => { + 'flagtypes.name' => { contains => [5] }, + }, + 'nowordssubstr-<1>' => { + 'flagtypes.name' => { contains => [5] }, + }, lessthan => { 'flagtypes.name' => { contains => [5] }, },