diff options
author | Byron Jones <bjones@mozilla.com> | 2013-05-23 01:02:43 +0800 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-05-23 01:02:43 +0800 |
commit | ff94c1c362b22c6d1988b58749d6f9cc331ce411 (patch) | |
tree | 2c6b42cd0f6b6a0a2f06ee2ae7269c015216e616 | |
parent | Bug 874827 - Remove superfluous "and" in 4.4 release notes. (diff) | |
download | bugzilla-ff94c1c362b22c6d1988b58749d6f9cc331ce411.tar.gz bugzilla-ff94c1c362b22c6d1988b58749d6f9cc331ce411.tar.bz2 bugzilla-ff94c1c362b22c6d1988b58749d6f9cc331ce411.zip |
Bug 828344: add missing xt broken tests
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/Constants.pm | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index ae4db5b11..9d62abb94 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -245,6 +245,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. @@ -383,12 +392,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] }, }, @@ -444,6 +459,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] }, }, |