Skip to content

Commit 9bb8201

Browse files
committed
exclude some tests for RocksDB
1 parent 94d8997 commit 9bb8201

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tests/CollectionBasicTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,10 @@ public function testCreateAndDeleteEdgeCollectionWithoutCreatingObject()
404404
*/
405405
public function testCreateAndDeleteVolatileCollectionWithoutCreatingObject()
406406
{
407+
if (!$this->isMMFilesEngine) {
408+
$this->markTestSkipped("test is only meaningful with the mmfiles engine");
409+
}
410+
407411
$connection = $this->connection;
408412
$collectionHandler = new CollectionHandler($connection);
409413

tests/CollectionExtendedTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ public function testCreateGetAndDeleteCollectionWithWaitForSyncDefault()
8383
*/
8484
public function testCreateGetAndDeleteVolatileCollection()
8585
{
86+
if (!$this->isMMFilesEngine) {
87+
$this->markTestSkipped("test is only meaningful with the mmfiles engine");
88+
}
89+
8690
$collection = $this->collection;
8791
$collectionHandler = $this->collectionHandler;
8892

0 commit comments

Comments
 (0)