summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-06-13 11:28:46 +0200
committerJoe Watkins <krakjoe@php.net>2019-06-14 12:55:00 +0200
commitf16b012116d6c015632741a3caada5b30ef8a699 (patch)
treea65b4ade744e6675ffc1509c8d343778f6a1d8b6
parent8b6b4870e7819c1e03ed128a3a355ab48d5d48a2 (diff)
downloadphp-git-f16b012116d6c015632741a3caada5b30ef8a699.tar.gz
fix mac tests on azure
-rw-r--r--azure/macos/brew.yml19
-rw-r--r--azure/macos/job.yml11
-rw-r--r--azure/macos/test.yml3
-rw-r--r--ext/ffi/tests/100.phpt4
-rw-r--r--ext/pcntl/tests/001.phpt2
-rw-r--r--ext/sockets/tests/ipv6_skipif.inc3
-rw-r--r--ext/sockets/tests/mcast_ipv6_send.phpt2
-rw-r--r--ext/sockets/tests/socket_create_listen-nobind.phpt5
-rw-r--r--ext/standard/tests/file/flock_basic.phpt14
-rw-r--r--ext/standard/tests/file/flock_error.phpt2
-rw-r--r--ext/standard/tests/file/flock_variation.phpt3
-rw-r--r--ext/standard/tests/streams/stream_socket_enable_crypto.phpt66
-rw-r--r--ext/zlib/tests/bug55544.phptbin430 -> 487 bytes
-rw-r--r--ext/zlib/tests/gzencode_variation1.phpt4
-rw-r--r--ext/zlib/tests/gzencode_variation2.phpt4
-rw-r--r--sapi/cli/php_cli.c6
-rw-r--r--sapi/cli/tests/cli_get_process_title_basic.phpt4
-rw-r--r--sapi/cli/tests/cli_process_title_unix.phpt4
-rw-r--r--sapi/cli/tests/cli_set_process_title_basic.phpt4
19 files changed, 64 insertions, 96 deletions
diff --git a/azure/macos/brew.yml b/azure/macos/brew.yml
index f4a23ef3de..5c0592086b 100644
--- a/azure/macos/brew.yml
+++ b/azure/macos/brew.yml
@@ -4,13 +4,17 @@ parameters:
steps:
- script: |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- # see https://formulae.brew.sh/ for package names
- brew install autoconf \
+ displayName: 'Install Homebrew'
+ - script: |
+ brew install pkg-config \
+ autoconf \
automake \
libtool \
bison \
- re2c \
- pkg-config \
+ re2c
+ displayName: 'Install Build Tools'
+ - script: |
+ brew install openssl@1.1 \
krb5 \
bzip2 \
enchant \
@@ -20,7 +24,6 @@ steps:
freetype \
intltool \
icu4c \
- readline \
libiconv \
zlib \
t1lib \
@@ -28,8 +31,8 @@ steps:
libzip \
gmp \
tidyp \
- libxml2\
- openssl@1.1 \
+ libxml2 \
+ libxslt \
postgresql
brew link icu4c gettext --force
- displayName: 'brew'
+ displayName: 'Install Build Dependencies'
diff --git a/azure/macos/job.yml b/azure/macos/job.yml
index cbfc54ef92..56f34fbb41 100644
--- a/azure/macos/job.yml
+++ b/azure/macos/job.yml
@@ -14,6 +14,8 @@ jobs:
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/krb5/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/libffi/lib/pkgconfig"
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/libxml2/lib/pkgconfig"
+ export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/libxslt/lib/pkgconfig"
+ export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/zlib/lib/pkgconfig"
./buildconf --force
./configure ${{ parameters.configurationParameters }} \
--prefix=/usr/local \
@@ -32,7 +34,6 @@ jobs:
--enable-exif \
--with-zip \
--with-zlib \
- --with-zlib-dir=/usr \
--enable-soap \
--enable-xmlreader \
--with-xsl \
@@ -46,7 +47,7 @@ jobs:
--with-readline=/usr/local/opt/readline \
--enable-mbstring \
--with-curl \
- --with-gettext==/usr/local/opt/gettext \
+ --with-gettext=/usr/local/opt/gettext \
--enable-sockets \
--with-bz2=/usr/local/opt/bzip2 \
--with-openssl \
@@ -79,9 +80,3 @@ jobs:
configurationName: ${{ parameters.configurationName }}
runTestsName: 'OpCache'
runTestsParameters: -d zend_extension=opcache.so -d opcache.enable_cli=1
- - ${{ if ne(variables['Build.SourceBranch'], 'refs/heads/PHP-7.4') }}:
- - template: test.yml
- parameters:
- configurationName: ${{ parameters.configurationName }}
- runTestsName: 'JIT'
- runTestsParameters: -d zend_extension=opcache.so -d opcache.enable_cli=1 -d opcache.jit_buffer_size=16M
diff --git a/azure/macos/test.yml b/azure/macos/test.yml
index edaa68fa6d..4eacf86aad 100644
--- a/azure/macos/test.yml
+++ b/azure/macos/test.yml
@@ -7,6 +7,7 @@ steps:
export TEST_PHP_JUNIT=junit.xml
export REPORT_EXIT_STATUS=no
export SKIP_IO_CAPTURE_TESTS=1
+ export CI_NO_IPV6=1
rm -rf junit.xml | true
/usr/local/bin/php run-tests.php -P -q \
-j$(sysctl -n hw.ncpu) \
@@ -22,6 +23,6 @@ steps:
testResultsFormat: 'JUnit'
testResultsFiles: junit.xml
testRunTitle: '${{ parameters.configurationName }} ${{ parameters.runTestsName }}'
- failTaskOnFailedTests: false
+ failTaskOnFailedTests: true
displayName: 'Export ${{ parameters.configurationName }} ${{ parameters.runTestsName }} Results'
condition: or(succeeded(), failed())
diff --git a/ext/ffi/tests/100.phpt b/ext/ffi/tests/100.phpt
index 63fae8c215..85a6bcc668 100644
--- a/ext/ffi/tests/100.phpt
+++ b/ext/ffi/tests/100.phpt
@@ -8,6 +8,10 @@ try {
} catch (Throwable $e) {
die('skip PHP symbols not available');
}
+
+if (PHP_OS == "Darwin") {
+ die("xfail there is a known leak here");
+}
?>
--INI--
ffi.enable=1
diff --git a/ext/pcntl/tests/001.phpt b/ext/pcntl/tests/001.phpt
index 6aedbaf33b..3674af0a20 100644
--- a/ext/pcntl/tests/001.phpt
+++ b/ext/pcntl/tests/001.phpt
@@ -27,7 +27,7 @@ function test_exit_signal(){
$pid=pcntl_fork();
if ($pid==0) {
- sleep(10);
+ while(1);
exit;
} else {
$options=0;
diff --git a/ext/sockets/tests/ipv6_skipif.inc b/ext/sockets/tests/ipv6_skipif.inc
index 1f824630cb..8c723a0b20 100644
--- a/ext/sockets/tests/ipv6_skipif.inc
+++ b/ext/sockets/tests/ipv6_skipif.inc
@@ -1,6 +1,7 @@
<?php
-if (!defined("AF_INET6")) {
+if (getenv("CI_NO_IPV6") || !defined("AF_INET6")) {
die('skip no IPv6 support');
}
if (@stream_socket_client('udp://[::1]:8888') === false)
die('skip no IPv6 support');
+
diff --git a/ext/sockets/tests/mcast_ipv6_send.phpt b/ext/sockets/tests/mcast_ipv6_send.phpt
index 99010d369e..e4bd5f0467 100644
--- a/ext/sockets/tests/mcast_ipv6_send.phpt
+++ b/ext/sockets/tests/mcast_ipv6_send.phpt
@@ -5,7 +5,7 @@ Multicast support: IPv6 send options
if (!extension_loaded('sockets')) {
die('skip sockets extension not available.');
}
-if (!defined('IPPROTO_IPV6')) {
+if (getenv('CI_NO_IPV6') || !defined('IPPROTO_IPV6')) {
die('skip IPv6 not available.');
}
$level = IPPROTO_IPV6;
diff --git a/ext/sockets/tests/socket_create_listen-nobind.phpt b/ext/sockets/tests/socket_create_listen-nobind.phpt
index bdd4d3dc2a..81e7297339 100644
--- a/ext/sockets/tests/socket_create_listen-nobind.phpt
+++ b/ext/sockets/tests/socket_create_listen-nobind.phpt
@@ -12,9 +12,12 @@ if (fileowner($filename) == 0) {
unlink ($filename);
die('SKIP Test cannot be run as root.');
}
+if (@socket_create_listen(80)) {
+ die('SKIP Test cannot be run in environment that will allow binding to port 80 (azure)');
+}
--FILE--
<?php
-$sock = socket_create_listen(PHP_OS == "Darwin" ? 427 : 80);
+$sock = socket_create_listen(80);
--EXPECTF--
Warning: socket_create_listen(): unable to bind to given address [13]: Permission denied in %s on line %d
--CLEAN--
diff --git a/ext/standard/tests/file/flock_basic.phpt b/ext/standard/tests/file/flock_basic.phpt
index 97dd98a36c..7600184bf3 100644
--- a/ext/standard/tests/file/flock_basic.phpt
+++ b/ext/standard/tests/file/flock_basic.phpt
@@ -11,22 +11,26 @@ Description: PHP supports a portable way of locking complete files
echo "*** Testing flock() fun with file and dir ***\n";
$file_path = __DIR__;
-$file_handle = fopen("$file_path/lock.tmp", "w");
+$lock_file = preg_replace("~\.phpt?$~", null, __FILE__);
+
+$file_handle = fopen($lock_file, "w");
var_dump(flock($file_handle, LOCK_SH|LOCK_NB));
var_dump(flock($file_handle, LOCK_UN));
var_dump(flock($file_handle, LOCK_EX));
var_dump(flock($file_handle, LOCK_UN));
fclose($file_handle);
-unlink("$file_path/lock.tmp");
+unlink($lock_file);
+
+$lock_dir = sprintf("%s.dir", preg_replace("~\.phpt?$~", null, __FILE__));
-mkdir("$file_path/dir");
-$dir_handle = opendir("$file_path/dir");
+mkdir($lock_dir);
+$dir_handle = opendir($lock_dir);
var_dump(flock($dir_handle, LOCK_SH|LOCK_NB));
var_dump(flock($dir_handle, LOCK_UN));
var_dump(flock($dir_handle, LOCK_EX));
var_dump(flock($dir_handle, LOCK_UN));
closedir($dir_handle);
-rmdir("$file_path/dir");
+rmdir($lock_dir);
echo "\n*** Done ***\n";
?>
diff --git a/ext/standard/tests/file/flock_error.phpt b/ext/standard/tests/file/flock_error.phpt
index 9f64dd0531..eaf141d573 100644
--- a/ext/standard/tests/file/flock_error.phpt
+++ b/ext/standard/tests/file/flock_error.phpt
@@ -10,7 +10,7 @@ Description: PHP supports a portable way of locking complete files
echo "*** Testing error conditions ***\n";
-$file = __DIR__."/flock.tmp";
+$file = preg_replace("~\.phpt?$~", null, __FILE__);
$fp = fopen($file, "w");
/* array of operatons */
diff --git a/ext/standard/tests/file/flock_variation.phpt b/ext/standard/tests/file/flock_variation.phpt
index 1f7880ec0c..0c66fca7fb 100644
--- a/ext/standard/tests/file/flock_variation.phpt
+++ b/ext/standard/tests/file/flock_variation.phpt
@@ -10,7 +10,8 @@ Description: PHP supports a portable way of locking complete files
echo "*** Testing flock() fun with the various operation and
wouldblock values ***\n";
-$file = __DIR__."/flock.tmp";
+
+$file = preg_replace("~\.phpt?$~", null, __FILE__);
$fp = fopen($file, "w");
/* array of operatons */
diff --git a/ext/standard/tests/streams/stream_socket_enable_crypto.phpt b/ext/standard/tests/streams/stream_socket_enable_crypto.phpt
deleted file mode 100644
index 4b0d9a1923..0000000000
--- a/ext/standard/tests/streams/stream_socket_enable_crypto.phpt
+++ /dev/null
@@ -1,66 +0,0 @@
---TEST--
-mixed stream_socket_enable_crypto(resource $stream , bool $enable [, int $crypto_type [, resource $session_stream ]] ) ;
---CREDITS--
-marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (!extension_loaded('openssl')) {
- die('skip ext/openssl required');
-}
-?>
---FILE--
-<?php
-$serverUri = "tcp://127.0.0.1:31854";
-$sock = stream_socket_server($serverUri, $errno, $errstr);
-
-if (is_resource($sock)) {
- var_dump(stream_socket_enable_crypto($sock, false));
- var_dump(stream_socket_enable_crypto($sock, true));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv23_CLIENT));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv3_CLIENT));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv2_CLIENT));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_TLS_CLIENT));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv23_SERVER));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv2_SERVER));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_SSLv3_SERVER));
- var_dump(stream_socket_enable_crypto($sock, true, STREAM_CRYPTO_METHOD_TLS_SERVER));
-} else {
- die("Test stream_socket_enable_crypto has failed; Unable to connect: {$errstr} ({$errno})");
-}
-?>
---CLEAN--
-<?php
-unset($serverUri);
-unset($sock);
-unset($errno);
-unset($errstr);
-?>
---EXPECTF--
-bool(false)
-
-Warning: stream_socket_enable_crypto(): When enabling encryption you must specify the crypto type in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL: %a in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
-
-Warning: stream_socket_enable_crypto(): SSL/TLS already set-up for this stream in %s on line %d
-bool(false)
diff --git a/ext/zlib/tests/bug55544.phpt b/ext/zlib/tests/bug55544.phpt
index a0d22f4fce..e650fe6909 100644
--- a/ext/zlib/tests/bug55544.phpt
+++ b/ext/zlib/tests/bug55544.phpt
Binary files differ
diff --git a/ext/zlib/tests/gzencode_variation1.phpt b/ext/zlib/tests/gzencode_variation1.phpt
index c966b2cbc5..2f953168fa 100644
--- a/ext/zlib/tests/gzencode_variation1.phpt
+++ b/ext/zlib/tests/gzencode_variation1.phpt
@@ -10,6 +10,10 @@ if( substr(PHP_OS, 0, 3) == "WIN" ) {
if (!extension_loaded("zlib")) {
print "skip - ZLIB extension not loaded";
}
+
+if (PHP_OS == "Darwin") {
+ print "skip - OS is encoded in headers, tested header is non Darwin";
+}
?>
--FILE--
<?php
diff --git a/ext/zlib/tests/gzencode_variation2.phpt b/ext/zlib/tests/gzencode_variation2.phpt
index 94ac42a5f1..9160cf5197 100644
--- a/ext/zlib/tests/gzencode_variation2.phpt
+++ b/ext/zlib/tests/gzencode_variation2.phpt
@@ -10,6 +10,10 @@ if( substr(PHP_OS, 0, 3) == "WIN" ) {
if (!extension_loaded("zlib")) {
print "skip - ZLIB extension not loaded";
}
+
+if (PHP_OS == "Darwin") {
+ print "skip - OS is encoded in headers, tested header is non Darwin";
+}
?>
--FILE--
<?php
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index 82051758f3..144a610a56 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -961,6 +961,12 @@ static int do_cli(int argc, char **argv) /* {{{ */
}
request_started = 1;
CG(start_lineno) = lineno;
+
+ zend_register_bool_constant(
+ ZEND_STRL("PHP_CLI_PROCESS_TITLE"),
+ is_ps_title_available() == PS_TITLE_SUCCESS,
+ CONST_CS, 0);
+
*arg_excp = arg_free; /* reconstuct argv */
if (hide_argv) {
diff --git a/sapi/cli/tests/cli_get_process_title_basic.phpt b/sapi/cli/tests/cli_get_process_title_basic.phpt
index 66d1d4f3a7..3709095da0 100644
--- a/sapi/cli/tests/cli_get_process_title_basic.phpt
+++ b/sapi/cli/tests/cli_get_process_title_basic.phpt
@@ -6,7 +6,9 @@ Patrick Allaert patrickallaert@php.net
--SKIPIF--
<?php
if (PHP_SAPI !== "cli")
- die("skip");
+ die("skip cli process title not available in non-cli SAPI");
+if (!PHP_CLI_PROCESS_TITLE)
+ die("skip process title not available (disabled or unsupported)");
?>
--FILE--
<?php
diff --git a/sapi/cli/tests/cli_process_title_unix.phpt b/sapi/cli/tests/cli_process_title_unix.phpt
index 418433d8f2..d6e49a2221 100644
--- a/sapi/cli/tests/cli_process_title_unix.phpt
+++ b/sapi/cli/tests/cli_process_title_unix.phpt
@@ -2,6 +2,10 @@
Check cli_process_title support on Unix
--SKIPIF--
<?php
+if (PHP_SAPI !== "cli")
+ die("skip cli process title not available in non-cli SAPI");
+if (!PHP_CLI_PROCESS_TITLE)
+ die("skip process title not available (disabled or unsupported)");
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
die("skip");
?>
diff --git a/sapi/cli/tests/cli_set_process_title_basic.phpt b/sapi/cli/tests/cli_set_process_title_basic.phpt
index 9899f3456b..32b8f85a82 100644
--- a/sapi/cli/tests/cli_set_process_title_basic.phpt
+++ b/sapi/cli/tests/cli_set_process_title_basic.phpt
@@ -6,7 +6,9 @@ Patrick Allaert patrickallaert@php.net
--SKIPIF--
<?php
if (PHP_SAPI !== "cli")
- die("skip");
+ die("skip cli process title not available in non-cli SAPI");
+if (!PHP_CLI_PROCESS_TITLE)
+ die("skip process title not available (disabled or unsupported)");
?>
--FILE--
<?php