summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Wendel <uw@php.net>2011-11-22 16:52:42 +0000
committerUlf Wendel <uw@php.net>2011-11-22 16:52:42 +0000
commita6502de5d07e94899bb0604b2f85cbafe8310c1d (patch)
treeb299f1f76ead0f66694749156f489d286bb93fd8
parent842b7d68409ce65948ac777857df5c491ed5b535 (diff)
downloadphp-git-a6502de5d07e94899bb0604b2f85cbafe8310c1d.tar.gz
Skipping with libmysql. If a documentation points to more or less unmaintained wiki contents, I take it as a request to stop testing a feature. Can't tell if I get false positive, hit a bug or not. This is not libmysql testing. Its PHP MySQL API testing.
-rw-r--r--ext/mysqli/tests/mysqli_debug_append.phpt3
-rw-r--r--ext/mysqli/tests/mysqli_debug_control_string.phpt3
-rw-r--r--ext/mysqli/tests/mysqli_debug_mysqlnd_control_string.phpt3
3 files changed, 9 insertions, 0 deletions
diff --git a/ext/mysqli/tests/mysqli_debug_append.phpt b/ext/mysqli/tests/mysqli_debug_append.phpt
index f15365f2ec..f916995464 100644
--- a/ext/mysqli/tests/mysqli_debug_append.phpt
+++ b/ext/mysqli/tests/mysqli_debug_append.phpt
@@ -14,6 +14,9 @@ if (!defined('MYSQLI_DEBUG_TRACE_ENABLED'))
if (defined('MYSQLI_DEBUG_TRACE_ENABLED') && !MYSQLI_DEBUG_TRACE_ENABLED)
die("skip: debug functionality not enabled");
+
+if (!$IS_MYSQLND)
+ die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
?>
--FILE--
<?php
diff --git a/ext/mysqli/tests/mysqli_debug_control_string.phpt b/ext/mysqli/tests/mysqli_debug_control_string.phpt
index 20556df049..42a802d81a 100644
--- a/ext/mysqli/tests/mysqli_debug_control_string.phpt
+++ b/ext/mysqli/tests/mysqli_debug_control_string.phpt
@@ -14,6 +14,9 @@ if (!defined('MYSQLI_DEBUG_TRACE_ENABLED'))
if (defined('MYSQLI_DEBUG_TRACE_ENABLED') && !MYSQLI_DEBUG_TRACE_ENABLED)
die("skip: debug functionality not enabled");
+
+if (!$IS_MYSQLND)
+ die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
?>
--FILE--
<?php
diff --git a/ext/mysqli/tests/mysqli_debug_mysqlnd_control_string.phpt b/ext/mysqli/tests/mysqli_debug_mysqlnd_control_string.phpt
index 5b66ee26df..1de2eebb2e 100644
--- a/ext/mysqli/tests/mysqli_debug_mysqlnd_control_string.phpt
+++ b/ext/mysqli/tests/mysqli_debug_mysqlnd_control_string.phpt
@@ -14,6 +14,9 @@ if (!defined('MYSQLI_DEBUG_TRACE_ENABLED'))
if (defined('MYSQLI_DEBUG_TRACE_ENABLED') && !MYSQLI_DEBUG_TRACE_ENABLED)
die("skip: debug functionality not enabled");
+
+if (!$IS_MYSQLND)
+ die("SKIP Libmysql feature not sufficiently spec'd in MySQL C API documentation");
?>
--FILE--
<?php