summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavey Shafik <me@daveyshafik.com>2016-02-02 12:31:12 -0500
committerDavey Shafik <me@daveyshafik.com>2016-02-02 12:50:51 -0500
commitc5da80f7b8bef294c835ac52706ab4a24934b04a (patch)
tree0f3ce3bce7fd22d5e6137f9de83c344e625932c8 /tests
parent0cfd8f0163abf577bcc3a0407a707e736b92690e (diff)
downloadphp7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.zip
php7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.tar.gz
php7-mysql-shim-c5da80f7b8bef294c835ac52706ab4a24934b04a.tar.bz2
Add forward-compatible annotation
Diffstat (limited to 'tests')
-rw-r--r--tests/MySqlShimTest.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/MySqlShimTest.php b/tests/MySqlShimTest.php
index 38259aa..736993b 100644
--- a/tests/MySqlShimTest.php
+++ b/tests/MySqlShimTest.php
@@ -185,10 +185,13 @@ class MySqlShimTest extends \PHPUnit_Framework_TestCase
mysql_free_result($result);
}
+ /**
+ * @requires PHP < 7.0.0
+ */
public function test_mysql_unbuffered_query_close_legacy()
{
if (!version_compare(PHP_VERSION, '7.0.0', '<')) {
- $this->markTestSkipped("PHP < 7.0.0 is required");
+ $this->markTestIncomplete("PHP < 7.0.0 is required");
}
$conn = $this->getConnection("shim_test");