Skip to content

Commit a6e2455

Browse files
committed
Don't run sapi/fpm tests in parallel with other fpm tests
See discussion on php#7561 fpm tests have been spuriously failing in CI, with 2 parallel workers on 2 CPUs. `make test TESTS='sapi/fpm/tests -j8'` fails locally for me without this change They're trying to listen on IPv4 on 127.0.0.1 on the same port as other tests (e.g. helper getPort()=9008 on 64-bit architecture (PHP_INT_SIZE=8)). So tests will fail if 1. php-fpm is still running from another test in parallel. 2. a request is sent to a server for a different test.
1 parent ee3caef commit a6e2455

File tree

64 files changed

+128
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+128
-0
lines changed

sapi/fpm/tests/bug68381-log-level-warning.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68381 - Log messages with warning level only
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug68391-conf-include-order.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68391 - Configuration inclusion in alphabetical order
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug68420-ipv4-all-addresses.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68420 - IPv4 all addresses
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug68421-ipv6-access-log.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68421 - IPv6 all addresses and access_log
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug68423-multi-pool-all-pms.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68423 - Multiple pools with different PMs (dynamic + ondemand + static)
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php include "skipif.inc"; ?>
57
--FILE--

sapi/fpm/tests/bug68428-ipv6-allowed-clients.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68428 - IPv6 allowed client only
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug68442-signal-reload.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68442 - Signal reload
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php include "skipif.inc"; ?>
57
--FILE--

sapi/fpm/tests/bug68458-pm-no-start-server.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug68458 - Missing pm.start_servers should emit notice instead of warning
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php
57
include "skipif.inc";

sapi/fpm/tests/bug69625-no-script-filename.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug69625 - 404 should be returned on missing SCRIPT_FILENAME
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php include "skipif.inc"; ?>
57
--FILE--

sapi/fpm/tests/bug72573-http-proxy.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
FPM: bug72573 - HTTP_PROXY - CVE-2016-5385
3+
--CONFLICTS--
4+
fpm
35
--SKIPIF--
46
<?php include "skipif.inc"; ?>
57
--FILE--

0 commit comments

Comments
 (0)