php-src/sapi/phpdbg/tests/breakpoints_009.phpt
David Rans 054fad6d63 PHPDBG: fix bug parsing 3-word opcodes
PHPDBG won't parse opcodes correctly if they are more than two words
separated by underscores (as many opcodes, like ZEND_POST_INC, are).

Now opcodes that have more than one underscore (e.g. ZEND_POST_INC) are
parsed correctly.

Closes GH-6895.
2021-04-22 10:11:26 +02:00

41 lines
698 B
PHP

--TEST--
Test parsing longer opcode
--PHPDBG--
b ZEND_POST_INC
r
c
q
--EXPECTF--
[Successful compilation of %s]
prompt> [Breakpoint #0 added at ZEND_POST_INC]
prompt> [Breakpoint #0 in ZEND_POST_INC at %s:3, hits: 1]
>00003: echo $i++;
00004: echo $i++;
00005: echo $i++;
prompt> 1
[Breakpoint #0 in ZEND_POST_INC at %s:4, hits: 2]
>00004: echo $i++;
00005: echo $i++;
00006: echo $i++;
prompt> 2
[Breakpoint #0 in ZEND_POST_INC at %s:5, hits: 3]
>00005: echo $i++;
00006: echo $i++;
00007:
prompt> 3
[Breakpoint #0 in ZEND_POST_INC at %s:6, hits: 4]
>00006: echo $i++;
00007:
prompt> 4
[Script ended normally]
prompt>
--FILE--
<?php
$i = 1;
echo $i++;
echo $i++;
echo $i++;
echo $i++;