tony2001 Wed Jul 23 10:22:58 2008 UTC
Modified files:
/php-src/ext/pdo_mysql/tests bug_39858.phpt bug_41125.phpt
bug_42499.phpt bug_43371.phpt
bug_44454.phpt bug_44707.phpt
bug_45120.phpt bug_pecl_7976.phpt
pdo_mysql_prepare_match_against.phpt
Log:
fix tests names
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_39858.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_39858.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_39858.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_39858.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_39858.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_39858.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #39858 (http://bugs.php.net/bug.php?id=39858)
+Bug #39858 (Lost connection to MySQL server during query by a repeated call
stored proced)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -93,4 +93,4 @@
string(1) "4"
}
}
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_41125.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_41125.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_41125.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_41125.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_41125.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_41125.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #41125 (http://bugs.php.net/bug.php?id=41125)
+Bug #41125 (PDO mysql + quote() + prepare() can result in segfault)
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
@@ -41,4 +41,4 @@
Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error in %s on
line %d
array(0) {
}
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_42499.phpt?r1=1.2&r2=1.3&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_42499.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_42499.phpt:1.2
php-src/ext/pdo_mysql/tests/bug_42499.phpt:1.3
--- php-src/ext/pdo_mysql/tests/bug_42499.phpt:1.2 Tue Jul 22 18:33:28 2008
+++ php-src/ext/pdo_mysql/tests/bug_42499.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-PDO MySQL Bug #42499 (http://bugs.php.net/bug.php?id=42499)
+Bug #42499 (Multi-statement execution via PDO::exec() makes connection
unusable)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -77,4 +77,4 @@
}
Warning: PDO::exec(): SQLSTATE[HY000]: General error: 2014 Cannot execute
queries while other unbuffered queries are active. Consider using
PDOStatement::fetchAll(). Alternatively, if your code is only ever going to
run against mysql, you may enable query buffering by setting the
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute. in %s on line %d
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_43371.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_43371.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_43371.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_43371.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_43371.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_43371.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #43371 (http://bugs.php.net/bug.php?id=43371)
+Bug #43371 (Memory errors in PDO constructor)
--SKIPIF--
<?php
<?php
@@ -17,4 +17,4 @@
print "done!";
?>
--EXPECT--
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_44454.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_44454.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_44454.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_44454.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_44454.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_44454.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #44454 (http://bugs.php.net/bug.php?id=44454)
+Bug #44454 (Unexpected exception thrown in foreach() statement)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -101,4 +101,4 @@
1 => 1062,
2 => 'Duplicate entry \'1-1\' for key 1',
)
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_44707.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_44707.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_44707.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_44707.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_44707.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_44707.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #44707 (http://bugs.php.net/bug.php?id=44707) = ! driver bug
+Bug #44707 (The MySQL PDO driver resets variable content after bindParam on
tinyint field)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -89,4 +89,4 @@
string(1) "0"
}
}
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_45120.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_45120.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_45120.phpt:1.1
php-src/ext/pdo_mysql/tests/bug_45120.phpt:1.2
--- php-src/ext/pdo_mysql/tests/bug_45120.phpt:1.1 Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/bug_45120.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-Bug #45120 (http://bugs.php.net/bug.php?id=45120)
+Bug #45120 (PDOStatement->execute() returns true then false for same statement)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -47,4 +47,4 @@
--EXPECT--
Emulated Prepared Statements
Native Prepared Statements
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt?r1=1.2&r2=1.3&diff_format=u
Index: php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt
diff -u php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt:1.2
php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt:1.3
--- php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt:1.2 Tue Jul 22 18:33:28 2008
+++ php-src/ext/pdo_mysql/tests/bug_pecl_7976.phpt Wed Jul 23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-PDO MySQL Bug #42499 (http://bugs.php.net/bug.php?id=42499)
+PECL Bug #7976 (Calling stored procedure several times)
--SKIPIF--
<?php
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not
loaded');
@@ -84,4 +84,4 @@
unicode(1) "1"
}
}
-done!
\ No newline at end of file
+done!
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt
diff -u php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt:1.1
php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt:1.2
--- php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt:1.1
Mon Jul 21 13:05:51 2008
+++ php-src/ext/pdo_mysql/tests/pdo_mysql_prepare_match_against.phpt Wed Jul
23 10:22:58 2008
@@ -1,5 +1,5 @@
--TEST--
-MySQL PDO->prepare(MATCH ... AGAINST (:placeholder)) - similar:
http://bugs.php.net/bug.php?id=41876
+Bug #41876 (bindParam() and bindValue() do not work with MySQL MATCH ()
AGAINST ())
--SKIPIF--
<?php
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
@@ -45,4 +45,4 @@
}
array(0) {
}
-done!
\ No newline at end of file
+done!
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php