fb9f1405ce
We can never make the ctrl-c portion of the debugger server test 100% reliable. Removing that portion of the test. I'll replace it with something else soon. See task 2656173.
71 linhas
1.8 KiB
Plaintext
71 linhas
1.8 KiB
Plaintext
|
|
Connecting to %s
|
|
Attaching to debugger's default sandbox and pre-loading, please wait...
|
|
break break1.php:7
|
|
Breakpoint 1 set on line 7 of break1.php
|
|
But wont break until file break1.php has been loaded.
|
|
continue
|
|
Waiting for server response
|
|
Requesting test1.php
|
|
Breakpoint 1 reached at foo() on line 7 of %s/break1.php
|
|
6 $y = $x.'_suffix';
|
|
7 error_log($y);
|
|
8 }
|
|
|
|
variable
|
|
$x = "test_break() in test1.php"
|
|
$y = "test_break() in test1.php_suffix"
|
|
break clear all
|
|
All breakpoints are cleared.
|
|
break foo()
|
|
Breakpoint 1 set upon entering foo()
|
|
continue
|
|
Waiting for server response
|
|
Breakpoint 1 reached at foo() on line 6 of %s/break1.php
|
|
5 function foo($x) {
|
|
6 $y = $x.'_suffix';
|
|
7 error_log($y);
|
|
|
|
break clear all
|
|
All breakpoints are cleared.
|
|
break cls::pubObj()
|
|
Breakpoint 1 set upon entering cls::pubObj()
|
|
continue
|
|
Waiting for server response
|
|
Breakpoint 1 reached at cls::pubObj() on line 12 of %s/break1.php
|
|
11 public function pubObj($x) {
|
|
12 error_log("pubObj:".$x);
|
|
13 }
|
|
|
|
break clear all
|
|
All breakpoints are cleared.
|
|
break cls::pubCls()
|
|
Breakpoint 1 set upon entering cls::pubCls()
|
|
continue
|
|
Waiting for server response
|
|
Breakpoint 1 reached at cls::pubCls() on line 15 of %s/break1.php
|
|
14 public static function pubCls($x) {
|
|
15 error_log("pubCls:".$x);
|
|
16 }
|
|
|
|
break clear all
|
|
All breakpoints are cleared.
|
|
continue
|
|
Waiting for server response
|
|
Break at cls::pubHardBreak() on line 19 of %s/break1.php
|
|
18 error_log("pubHardBreak:".$x);
|
|
19 hphpd_break();
|
|
20 error_log("pubHardBreak:done");
|
|
|
|
break end test1.php
|
|
Breakpoint 1 set end of request or start of psp when request is test1.php
|
|
continue
|
|
Waiting for server response
|
|
Web request /test1.php ended.
|
|
break psp test1.php
|
|
Breakpoint 2 set end of psp when request is test1.php
|
|
continue
|
|
Waiting for server response
|
|
Post-Send Processing for /test1.php was ended.
|
|
quit
|