summaryrefslogtreecommitdiff
path: root/ext/pcntl/tests/pcntl_exec_3.phpt
blob: 7d7f6b5271ba809480a831415849789f08628635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
pcntl_exec() 3
--SKIPIF--
<?php if (!extension_loaded("pcntl")) print "skip"; ?>
--FILE--
<?php
$file = tempnam(sys_get_temp_dir(),"php");
var_dump(pcntl_exec($file, array("foo","bar"), array("foo" => "bar")));
unlink($file);
?>
--EXPECTF--
Warning: pcntl_exec(): Error has occurred: (errno %d) %s
bool(false)