summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug52820.phpt
diff options
context:
space:
mode:
authorGustavo André dos Santos Lopes <cataphract@php.net>2010-11-18 21:44:42 +0000
committerGustavo André dos Santos Lopes <cataphract@php.net>2010-11-18 21:44:42 +0000
commitcdab5577c036e5343b862576478bed13310f4808 (patch)
treea0ff7910dcf19ce1d35a5bc606112b7ca336d3d4 /ext/standard/tests/file/bug52820.phpt
parent63f65b6e8fbb6a9f01b5034f34121b2b422e4d91 (diff)
downloadphp-git-cdab5577c036e5343b862576478bed13310f4808.tar.gz
- Fixed borked test bug52820.phpt.
- Synced htmlentities17.phpt with trunk; there's no &wreath; entity in HTML 4.01.
Diffstat (limited to 'ext/standard/tests/file/bug52820.phpt')
-rw-r--r--ext/standard/tests/file/bug52820.phpt49
1 files changed, 0 insertions, 49 deletions
diff --git a/ext/standard/tests/file/bug52820.phpt b/ext/standard/tests/file/bug52820.phpt
index 70ac9e02b9..b398cc4b83 100644
--- a/ext/standard/tests/file/bug52820.phpt
+++ b/ext/standard/tests/file/bug52820.phpt
@@ -47,52 +47,3 @@ About to rewind!
* Closing connection #0
Done.
---TEST--
-Bug #52820 (writes to fopencookie FILE* not commited when seeking the stream)
---SKIPIF--
-<?php
-/* unfortunately no standard function does a cast to FILE*, so we need
- * curl to test this */
-if (!extension_loaded("curl")) exit("skip curl extension not loaded");
-$handle=curl_init('http://127.0.0.1:37349/');
-curl_setopt($handle, CURLOPT_VERBOSE, true);
-curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
-if (!curl_setopt($handle, CURLOPT_STDERR, fopen("php://memory", "w+")))
- die("skip fopencookie not supported on this platform");
---FILE--
-<?php
-function do_stuff($url) {
- $handle=curl_init('http://127.0.0.1:37349/');
- curl_setopt($handle, CURLOPT_VERBOSE, true);
- curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($handle, CURLOPT_STDERR, $o = fopen($url, "w+"));
- curl_exec($handle);
- echo "About to rewind!\n";
- rewind($o);
- echo stream_get_contents($o);
- return $o;
-}
-
-echo "temp stream (close after):\n";
-fclose(do_stuff("php://temp"));
-
-echo "\nmemory stream (close after):\n";
-fclose(do_stuff("php://memory"));
-
-echo "\nDone.\n";
---EXPECT--
-temp stream (close after):
-About to rewind!
-* About to connect() to 127.0.0.1 port 37349 (#0)
-* Trying 127.0.0.1... * Connection refused
-* couldn't connect to host
-* Closing connection #0
-
-memory stream (close after):
-About to rewind!
-* About to connect() to 127.0.0.1 port 37349 (#0)
-* Trying 127.0.0.1... * Connection refused
-* couldn't connect to host
-* Closing connection #0
-
-Done.