View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000091 | Xdebug | Documentation | public | 2004-09-09 17:02 | 2004-09-18 08:54 |
Reporter | spookwork | Assigned To | derick | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | unable to reproduce | ||
Summary | 0000091: breakpoint_remove is not behaving as documented | ||||
Description | During execution my IDE issued the command "breakpoint_remove -i TID -d BID" but the response was always a 204 which referred to an improper STATE. In the documentation the STATE option is used with breakpoint_update but is not used with breakpoint_remove. Attempting to remove the association to the breakpoint with "breakpoint_update -i TID -d BID -s disabled" returned an error "3". The final solution was found by using the following command: | ||||
Tags | No tags attached. | ||||
Operating System | Windows | ||||
PHP Version | 4.3.8 | ||||
|
This works fine for me: <init fileuri="file:///home/derick/test.php" language="PHP" protocol_version="1.0" appid="3099" idekey="xdebul1"><engine version="2.0.0beta1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2004 by Derick Rethans]]></copyright></init> (cmd) breakpoint_set -i 1 -f test.php -n 2 (cmd) breakpoint_set -i 1 -t line -f test.php -n 2 (cmd) breakpoint_remove -i 2 -d 30990001 (cmd) breakpoint_list -i 3 (cmd) breakpoint_set -i 4 -t line -f test.php -n 2 (cmd) breakpoint_list -i 5 (cmd) breakpoint_remove -i 6 -d 30990001 (cmd) breakpoint_remove -i 7 -d 30990002 There are also no checks in the code that demand the -s option to be set here. |