List:Commits« Previous MessageNext Message »
From:uwendel Date:August 29 2007 2:33pm
Subject:PHP mysqlnd svn commit: r956 - trunk/tests/ext/mysqli
View as plain text  
Author: uwendel
Date: 2007-08-29 16:33:23 +0200 (Wed, 29 Aug 2007)
New Revision: 956

Modified:
   trunk/tests/ext/mysqli/mysqli_debug_append.phpt
   trunk/tests/ext/mysqli/mysqli_debug_control_string.phpt
Log:
Hack to handle different output from libmysql and mysqlnd.


Modified: trunk/tests/ext/mysqli/mysqli_debug_append.phpt
===================================================================
--- trunk/tests/ext/mysqli/mysqli_debug_append.phpt	2007-08-29 13:53:18 UTC (rev 955)
+++ trunk/tests/ext/mysqli/mysqli_debug_append.phpt	2007-08-29 14:33:23 UTC (rev 956)
@@ -72,6 +72,8 @@
 
 	mysqli_close($link);
 	print "done";
+	if ($IS_MYSQLND)
+		print "libmysql/DBUG package prints some debug into here."
 ?>
 --EXPECTF--
 done%s
\ No newline at end of file

Modified: trunk/tests/ext/mysqli/mysqli_debug_control_string.phpt
===================================================================
--- trunk/tests/ext/mysqli/mysqli_debug_control_string.phpt	2007-08-29 13:53:18 UTC (rev
955)
+++ trunk/tests/ext/mysqli/mysqli_debug_control_string.phpt	2007-08-29 14:33:23 UTC (rev
956)
@@ -56,6 +56,8 @@
 
 	mysqli_close($link);
 	print "done";
+	if ($IS_MYSQLND)
+		print "libmysql/DBUG package prints some debug into here."
 ?>
 --EXPECTF--
 [023][control string '%s'] Trace file has not been written.

Thread
PHP mysqlnd svn commit: r956 - trunk/tests/ext/mysqliuwendel29 Aug