mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
23 lines
266 B
Plaintext
23 lines
266 B
Plaintext
|
--TEST--
|
||
|
Bad uv_spawn must not segfault (issue #79)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$rt = uv_spawn(
|
||
|
uv_default_loop(),
|
||
|
'',
|
||
|
array(),
|
||
|
array(),
|
||
|
__DIR__,
|
||
|
array(),
|
||
|
static function () {
|
||
|
echo 'Child Process exited'.PHP_EOL;
|
||
|
}
|
||
|
);
|
||
|
|
||
|
var_dump($rt);
|
||
|
|
||
|
uv_run();
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
int(-%d)
|