summaryrefslogtreecommitdiff
path: root/sapi/cli/tests/022.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/tests/022.phpt')
-rw-r--r--sapi/cli/tests/022.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/sapi/cli/tests/022.phpt b/sapi/cli/tests/022.phpt
index 3b97016b58..40c2265351 100644
--- a/sapi/cli/tests/022.phpt
+++ b/sapi/cli/tests/022.phpt
@@ -11,23 +11,23 @@ $php = getenv("TEST_PHP_EXECUTABLE");
$socket_file = tempnam(sys_get_temp_dir(), pathinfo(__FILE__, PATHINFO_FILENAME) . '.sock');
$test_file = __DIR__ . '/' . pathinfo(__FILE__, PATHINFO_FILENAME) . '.inc';
if (file_exists($socket_file)) {
- unlink($socket_file);
+ unlink($socket_file);
}
$socket = stream_socket_server('unix://' . $socket_file);
var_dump($socket);
if (!$socket) {
- exit(1);
+ exit(1);
}
$desc = array(
- 0 => $socket,
- 1 => STDOUT,
- 2 => STDERR,
+ 0 => $socket,
+ 1 => STDOUT,
+ 2 => STDERR,
);
$pipes = array();
$proc = proc_open("$php -n " . escapeshellarg($test_file), $desc, $pipes);
var_dump($proc);
if (!$proc) {
- exit(1);
+ exit(1);
}
$client_socket = stream_socket_client('unix://' . $socket_file);