rasmus Sun, 26 Jul 2009 03:46:22 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=286348
Log:
Down to a single curl test failure now
Changed paths:
U php/php-src/trunk/ext/curl/tests/curl_write_callback.phpt
U php/php-src/trunk/ext/curl/tests/curl_write_file.phpt
U php/php-src/trunk/ext/curl/tests/curl_write_return.phpt
U php/php-src/trunk/ext/curl/tests/curl_write_stdout.phpt
Modified: php/php-src/trunk/ext/curl/tests/curl_write_callback.phpt
===================================================================
--- php/php-src/trunk/ext/curl/tests/curl_write_callback.phpt 2009-07-26
03:33:41 UTC (rev 286347)
+++ php/php-src/trunk/ext/curl/tests/curl_write_callback.phpt 2009-07-26
03:46:22 UTC (rev 286348)
@@ -19,7 +19,7 @@
$log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
$fp = fopen($log_file, 'w+');
-fwrite($fp, "test");
+fwrite($fp, b"test");
fclose($fp);
$ch = curl_init();
Modified: php/php-src/trunk/ext/curl/tests/curl_write_file.phpt
===================================================================
--- php/php-src/trunk/ext/curl/tests/curl_write_file.phpt 2009-07-26
03:33:41 UTC (rev 286347)
+++ php/php-src/trunk/ext/curl/tests/curl_write_file.phpt 2009-07-26
03:46:22 UTC (rev 286348)
@@ -14,7 +14,7 @@
$log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
$fp = fopen($log_file, 'w+');
-fwrite($fp, "test");
+fwrite($fp, b"test");
fclose($fp);
$testfile_fp = fopen($test_file, 'w+');
Modified: php/php-src/trunk/ext/curl/tests/curl_write_return.phpt
===================================================================
--- php/php-src/trunk/ext/curl/tests/curl_write_return.phpt 2009-07-26
03:33:41 UTC (rev 286347)
+++ php/php-src/trunk/ext/curl/tests/curl_write_return.phpt 2009-07-26
03:46:22 UTC (rev 286348)
@@ -14,7 +14,7 @@
$log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
$fp = fopen($log_file, 'w+');
-fwrite($fp, "test");
+fwrite($fp, b"test");
fclose($fp);
$ch = curl_init();
Modified: php/php-src/trunk/ext/curl/tests/curl_write_stdout.phpt
===================================================================
--- php/php-src/trunk/ext/curl/tests/curl_write_stdout.phpt 2009-07-26
03:33:41 UTC (rev 286347)
+++ php/php-src/trunk/ext/curl/tests/curl_write_stdout.phpt 2009-07-26
03:46:22 UTC (rev 286348)
@@ -13,7 +13,7 @@
$log_file = tempnam(sys_get_temp_dir(), 'php-curl-test');
$fp = fopen($log_file, 'w+');
-fwrite($fp, "test");
+fwrite($fp, b"test");
fclose($fp);
$ch = curl_init();
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php