Commit cbf95ea0 authored by Marco Pivetta's avatar Marco Pivetta

#714 - marking test as incomplete when affected by https://bugs.php.net/bug.php?id=68371

parent d3f0d9f9
...@@ -36,6 +36,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest ...@@ -36,6 +36,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertTrue($connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES)); $this->assertTrue($connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES));
} catch (PDOException $ignored) { } catch (PDOException $ignored) {
/** @link https://bugs.php.net/bug.php?id=68371 */ /** @link https://bugs.php.net/bug.php?id=68371 */
$this->markTestIncomplete('See https://bugs.php.net/bug.php?id=68371');
} }
} }
...@@ -62,6 +63,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest ...@@ -62,6 +63,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertNotSame(true, $connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES)); $this->assertNotSame(true, $connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES));
} catch (PDOException $ignored) { } catch (PDOException $ignored) {
/** @link https://bugs.php.net/bug.php?id=68371 */ /** @link https://bugs.php.net/bug.php?id=68371 */
$this->markTestIncomplete('See https://bugs.php.net/bug.php?id=68371');
} }
} }
...@@ -88,6 +90,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest ...@@ -88,6 +90,7 @@ class DriverTest extends AbstractPostgreSQLDriverTest
$this->assertTrue($connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES)); $this->assertTrue($connection->getAttribute(PDO::PGSQL_ATTR_DISABLE_PREPARES));
} catch (PDOException $ignored) { } catch (PDOException $ignored) {
/** @link https://bugs.php.net/bug.php?id=68371 */ /** @link https://bugs.php.net/bug.php?id=68371 */
$this->markTestIncomplete('See https://bugs.php.net/bug.php?id=68371');
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment