mark wildcard test incomplete on pgsql / sqlite
This commit is contained in:
parent
68f69dc1fe
commit
edd3e49a2f
1 changed files with 6 additions and 0 deletions
|
@ -142,6 +142,12 @@ class IndexTest extends ShimmiePHPUnitTestCase {
|
|||
public function testWildSearchOneResult() {
|
||||
$image_ids = $this->upload();
|
||||
|
||||
global $database;
|
||||
$db = $database->get_driver_name();
|
||||
if($db == "pgsql" || $db == "sqlite") {
|
||||
$this->markTestIncomplete();
|
||||
}
|
||||
|
||||
// Only the first image matches both the wildcard and the tag.
|
||||
// This checks for https://github.com/shish/shimmie2/issues/547
|
||||
// (comp* is expanded to "computer computing", then we searched
|
||||
|
|
Reference in a new issue