diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-04-09 13:00:32 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-06-03 11:18:17 +0200 |
commit | b4cee3d4e9a163b4f175dd82d132fc156d296316 (patch) | |
tree | cb195d2909ac344c7c4c459406255b21f3363e7f | |
parent | 3b4555ca918f549d48d55b6f01a641bc0a21850e (diff) | |
download | nextcloud-server-b4cee3d4e9a163b4f175dd82d132fc156d296316.tar.gz nextcloud-server-b4cee3d4e9a163b4f175dd82d132fc156d296316.zip |
skip tests for oracle
-rw-r--r-- | tests/lib/db/migrator.php | 3 |
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(); } |