mirror of
https://github.com/php/php-src.git
synced 2024-12-02 06:13:40 +08:00
20 lines
374 B
PHP
20 lines
374 B
PHP
--TEST--
|
|
Bug #21800 (Segfault under interactive mode)
|
|
--SKIPIF--
|
|
<?php (PHP_SAPI != 'cli') and print "SKIP PHP binary is not cli"; ?>
|
|
--FILE--
|
|
<?php
|
|
$exe = getenv('TEST_PHP_EXECUTABLE');
|
|
$fh = popen("$exe -a", 'w');
|
|
if ($fh !== false) {
|
|
fwrite($fh, "<?php echo ':test:'; ?>\n\n");
|
|
fclose($fh);
|
|
} else {
|
|
echo "failure\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Interactive mode enabled
|
|
|
|
:test:
|