1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 22:11:12 +02:00
Files
archived-php-src/sapi/phpdbg/tests/commands/0106_compile.test
2014-06-04 02:18:39 +02:00

19 lines
424 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);
:>
run
quit