xref: /PHP-5.5/ext/standard/tests/file/bug45303.phpt (revision de29f416)
1--TEST--
2Bug #45303 (Opening php:// wrapper in append mode results in a warning)
3--FILE--
4<?php
5$fd = fopen("php://stdout","a");
6var_dump($fd);
7var_dump(fseek($fd, 1024*1024, SEEK_SET));
8?>
9--EXPECTF--
10resource(%d) of type (stream)
11
12Warning: fseek(): stream does not support seeking in %s
13int(-1)
14