Browse Source

Not skipping test on Windows and test against CLI instead

pull/2678/merge
Patrick Allaert 9 years ago
parent
commit
ce09f485ca
  1. 2
      sapi/cli/tests/cli_get_process_title_basic.phpt
  2. 2
      sapi/cli/tests/cli_get_process_title_error.phpt
  3. 2
      sapi/cli/tests/cli_set_process_title_basic.phpt
  4. 2
      sapi/cli/tests/cli_set_process_title_error.phpt

2
sapi/cli/tests/cli_get_process_title_basic.phpt

@ -5,7 +5,7 @@ Patrick Allaert patrickallaert@php.net
@nephp #nephp17
--SKIPIF--
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
if (PHP_SAPI !== "cli")
die("skip");
?>
--FILE--

2
sapi/cli/tests/cli_get_process_title_error.phpt

@ -5,7 +5,7 @@ Patrick Allaert patrickallaert@php.net
@nephp #nephp17
--SKIPIF--
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
if (PHP_SAPI !== "cli")
die("skip");
?>
--FILE--

2
sapi/cli/tests/cli_set_process_title_basic.phpt

@ -5,7 +5,7 @@ Patrick Allaert patrickallaert@php.net
@nephp #nephp17
--SKIPIF--
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
if (PHP_SAPI !== "cli")
die("skip");
?>
--FILE--

2
sapi/cli/tests/cli_set_process_title_error.phpt

@ -5,7 +5,7 @@ Patrick Allaert patrickallaert@php.net
@nephp #nephp17
--SKIPIF--
<?php
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
if (PHP_SAPI !== "cli")
die("skip");
?>
--FILE--

Loading…
Cancel
Save