php-src/sapi/phpdbg/tests/commands/0106_compile.test
2014-10-24 19:22:45 +02:00

18 lines
438 B
Text

#################################################
# name: compile
# purpose: test compiling code
# expect: TEST::FORMAT
# options: -rr
#################################################
#[Successful compilation of %s]
#Hello World
#[Script ended normally]
#################################################
<:
define('OUT',
tempnam(null, "phpdbg"));
file_put_contents(OUT, "<?php echo \"Hello World\"; ?>");
phpdbg_exec(OUT);
:>
run
quit