Skip to content

Commit

Permalink
change stdout to stderr in dump-xdebug-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianheuer authored and sebastianbergmann committed Sep 8, 2018
1 parent f3b1466 commit 6688c2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/end-to-end/dump-xdebug-filter.phpt
Expand Up @@ -10,7 +10,7 @@ if (!extension_loaded('xdebug')) {
$_SERVER['argv'][1] = '-c';
$_SERVER['argv'][2] = __DIR__ . '/../_files/configuration_whitelist.xml';
$_SERVER['argv'][3] = '--dump-xdebug-filter';
$_SERVER['argv'][4] = 'php://stdout';
$_SERVER['argv'][4] = 'php://stderr';

require __DIR__ . '/../bootstrap.php';
PHPUnit\TextUI\Command::main();
Expand All @@ -28,3 +28,5 @@ if (!\function_exists('xdebug_set_filter')) {
%s
]
);

Wrote Xdebug filter script to php://stderr

0 comments on commit 6688c2f

Please sign in to comment.