summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-04-09 13:00:32 +0200
committerRobin Appelman <icewind@owncloud.com>2014-06-03 11:18:17 +0200
commitb4cee3d4e9a163b4f175dd82d132fc156d296316 (patch)
treecb195d2909ac344c7c4c459406255b21f3363e7f
parent3b4555ca918f549d48d55b6f01a641bc0a21850e (diff)
downloadnextcloud-server-b4cee3d4e9a163b4f175dd82d132fc156d296316.tar.gz
nextcloud-server-b4cee3d4e9a163b4f175dd82d132fc156d296316.zip
skip tests for oracle
-rw-r--r--tests/lib/db/migrator.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/db/migrator.php b/tests/lib/db/migrator.php
index 31dc1c4951a..5d85bd98f31 100644
--- a/tests/lib/db/migrator.php
+++ b/tests/lib/db/migrator.php
@@ -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();
}