1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00
Files
archived-php-src/sapi/phpdbg/tests/commands/0106_compile.test
2013-12-20 14:27:51 +01:00

20 lines
432 B
Plaintext

#################################################
# 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);
:>
compile
run
quit