summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/tests/commands/0106_compile.test
blob: 7193600ea3db7018b75f90b84f649398ce0a9c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#################################################
# name: compile
# purpose: test compiling code
# expect: TEST::FORMAT
# options: -rr
#################################################
#[Attempting compilation of %s]
#[Success]
#Hello World
#################################################
<:
define('OUT', 
	tempnam(null, "phpdbg"));
file_put_contents(OUT, "<?php echo \"Hello World\"; ?>");
phpdbg_exec(OUT);
:>
run
quit