mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
18 lines
438 B
Text
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
|