List:Commits« Previous MessageNext Message »
From:ahristov Date:September 6 2007 1:47pm
Subject:PHP mysqlnd svn commit: r998 - trunk/tests/ext/mysqli
View as plain text  
Author: ahristov
Date: 2007-09-06 15:47:39 +0200 (Thu, 06 Sep 2007)
New Revision: 998

Modified:
   trunk/tests/ext/mysqli/mysqli_get_client_stats_skipped.phpt
Log:
Let the test give more info


Modified: trunk/tests/ext/mysqli/mysqli_get_client_stats_skipped.phpt
===================================================================
--- trunk/tests/ext/mysqli/mysqli_get_client_stats_skipped.phpt	2007-09-06 12:55:45 UTC
(rev 997)
+++ trunk/tests/ext/mysqli/mysqli_get_client_stats_skipped.phpt	2007-09-06 13:47:39 UTC
(rev 998)
@@ -37,7 +37,8 @@
 	printf("AFTER: rows_skipped_normal = %d\n", $after['rows_skipped_normal']);
 
 	if ($after['rows_skipped_normal'] + 1 != $before['rows_skipped_normal'])
-		printf("Statistics should show an increase of 1 for rows_skipped_normal\n");
+		printf("Statistics should show an increase of 1 for rows_skipped_normal, ".
+				"but before=%d after=%d\n", $before['rows_skipped_normal'],
$after['rows_skipped_normal']);
 
 	mysqli_close($link);
 	print "done!";
@@ -45,4 +46,4 @@
 --EXPECTF--
 BEFORE: rows_skipped_normal = %d
 AFTER: rows_skipped_normal = %d
-done!
\ No newline at end of file
+done!

Thread
PHP mysqlnd svn commit: r998 - trunk/tests/ext/mysqliahristov6 Sep