File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
tests/end-to-end/regression Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,22 @@ https://github.com/sebastianbergmann/phpunit/issues/6105
44<?php declare (strict_types=1 );
55if (!extension_loaded ('xdebug ' )) {
66 print 'skip: Xdebug is not loaded ' ;
7+
8+ exit ;
79}
810
911if (!in_array ('develop ' , xdebug_info ('mode ' ), true ) &&
1012 !in_array ('debug ' , xdebug_info ('mode ' ), true ) &&
1113 !in_array ('coverage ' , xdebug_info ('mode ' ), true )) {
1214 print 'skip: Xdebug mode must include develop, debug, or coverage ' ;
15+
16+ exit ;
1317}
1418
1519if (ini_get ('xdebug.start_with_request ' ) === '1 ' ) {
1620 print 'skip: Xdebug emits a warning that breaks output expectations when xdebug.start_with_request=1 is configured ' ;
21+
22+ exit ;
1723}
1824--FILE --
1925<?php declare (strict_types=1 );
You can’t perform that action at this time.
0 commit comments