1--TEST--
2E_ERROR during UserStream Open
3--FILE--
4<?php
5
6class FailStream {
7  public function stream_open($path, $mode, $options, &$opened_path) {
8    _some_undefined_function();
9  }
10}
11stream_wrapper_register('mystream', 'FailStream');
12fopen('mystream://foo', 'r');
13echo 'Done';
14--EXPECTF--
15Fatal error: Uncaught Error: Call to undefined function _some_undefined_function() in %s%euser-stream-error.php:%d
16Stack trace:
17#0 [internal function]: FailStream->stream_open('mystream://foo', 'r', 0, NULL)
18#1 %s%euser-stream-error.php(%d): fopen('mystream://foo', 'r')
19#2 {main}
20  thrown in %s%euser-stream-error.php on line %d
21