]> source.dussan.org Git - nextcloud-server.git/commitdiff
skip tests for oracle
authorRobin Appelman <icewind@owncloud.com>
Wed, 9 Apr 2014 11:00:32 +0000 (13:00 +0200)
committerRobin Appelman <icewind@owncloud.com>
Tue, 3 Jun 2014 09:18:17 +0000 (11:18 +0200)
tests/lib/db/migrator.php

index 31dc1c4951ac1cfc6be19712ab3ba7fdd3447901..5d85bd98f318ea1f80f8fde1b5420dd97aa2c728 100644 (file)
@@ -22,6 +22,9 @@ class Migrator extends \PHPUnit_Framework_TestCase {
        private $tableName;
 
        public function setUp() {
+               if ($this->connection->getDriver() instanceof \Doctrine\DBAL\Driver\OCI8\Driver) {
+                       $this->markTestSkipped('DB migration tests arent supported on OCI');
+               }
                $this->tableName = 'test_' . uniqid();
                $this->connection = \OC_DB::getConnection();
        }