blob: 4842cb74f1e87534056a53039a4fd350f5ceee07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#################################################
# name: compile
# purpose: test compiling error code
# expect: TEST::FORMAT
# options: -rr
#################################################
#[PHP Parse error: syntax error, unexpected 'echo' (T_ECHO) in %s on line %s]
#[Could not find information about included file...]
#################################################
<:
define('OUT',
tempnam(null, "phpdbg"));
file_put_contents(OUT, "<?error echo \"Hello World\"; ?>");
phpdbg_exec(OUT);
:>
run
quit
|