From bad529870754ee0e214d6eea99a7f0ba42f44a03 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 22 Aug 2023 23:51:56 +0200 Subject: [PATCH] Make php_cli_server_pdeathsig.phpt SKIPIF more specific --- sapi/cli/tests/php_cli_server_pdeathsig.phpt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sapi/cli/tests/php_cli_server_pdeathsig.phpt b/sapi/cli/tests/php_cli_server_pdeathsig.phpt index db4b99af61a..8b70bbcad49 100644 --- a/sapi/cli/tests/php_cli_server_pdeathsig.phpt +++ b/sapi/cli/tests/php_cli_server_pdeathsig.phpt @@ -8,8 +8,7 @@ include "skipif.inc"; if (!(str_contains(PHP_OS, 'Linux') || str_contains(PHP_OS, 'FreeBSD'))) { die('skip PDEATHSIG is only supported on Linux and FreeBSD'); } -// This fails on 32-bit GitHub actions (probably due to Docker rather than 32-bit) -if (PHP_INT_SIZE != 8) die("skip 64-bit only"); +if (@file_exists('/.dockerenv')) die("skip Broken in Docker"); ?> --FILE--