php-src/sapi/phpdbg/tests/phpdbg_break_next.phpt
Christoph M. Becker 57463cf78b Drop all JIT related XFAILS from phpdbg test suite
phpdbg now disables JIT, so these cause XFAIL warnings.
2020-11-30 15:24:15 +01:00

22 lines
307 B
PHP

--TEST--
Test phpdbg_break_next() function
--PHPDBG--
r
c
q
--EXPECTF--
[Successful compilation of %s]
prompt> A
[Breakpoint #0 added at %s]
[Breakpoint #0 in %s at %s:5, hits: 1]
>00005: echo 'B';
00006:
prompt> B
[Script ended normally]
prompt>
--FILE--
<?php
echo 'A';
phpdbg_break_next();
echo 'B';