mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
18 lines
424 B
Text
18 lines
424 B
Text
#################################################
|
|
# 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
|