summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug30362.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/bug30362.phpt')
-rw-r--r--ext/standard/tests/file/bug30362.phpt26
1 files changed, 0 insertions, 26 deletions
diff --git a/ext/standard/tests/file/bug30362.phpt b/ext/standard/tests/file/bug30362.phpt
deleted file mode 100644
index 1c2b4be979..0000000000
--- a/ext/standard/tests/file/bug30362.phpt
+++ /dev/null
@@ -1,26 +0,0 @@
---TEST--
-Bug #30362 (stream_get_line() not working as documented)
---FILE--
-<?php
-
-$resource = fopen(dirname(__FILE__).'/bug30362.txt', 'rb');
-
-for ($i = 0; ($i < 10) && !feof($resource); ++$i ) {
- $a = "Y";
- $line = stream_get_line($resource, 50, $a);
- echo $line . "\n";
-}
-fclose($resource);
-
-?>
---EXPECT--
-111
-111111111
-111111111
-111111111
-111111111
-111111111
-111111111
-111111111
-111111111
-111111111