diff options
| author | Christoph M. Becker <cmb@php.net> | 2016-07-28 17:31:13 +0200 |
|---|---|---|
| committer | Christoph M. Becker <cmb@php.net> | 2016-07-28 17:31:13 +0200 |
| commit | 81577235eec9453bf9bb2e086d81a47c184c4253 (patch) | |
| tree | feb9c5e87ac0da551a2ed3b0a068451c84e714e0 | |
| parent | b0558b3004c94c9646a9d1b736466028b59d682f (diff) | |
| parent | 573568bbceddd9226b931c50781e839a47d62944 (diff) | |
| download | php-git-81577235eec9453bf9bb2e086d81a47c184c4253.tar.gz | |
Merge branch 'PHP-7.0' into PHP-7.1
| -rw-r--r-- | ext/sockets/tests/socket_cmsg_credentials.phpt | 3 | ||||
| -rw-r--r-- | ext/sockets/tests/socket_cmsg_rights.phpt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/sockets/tests/socket_cmsg_credentials.phpt b/ext/sockets/tests/socket_cmsg_credentials.phpt index 6a1c23fa8c..922be0bb37 100644 --- a/ext/sockets/tests/socket_cmsg_credentials.phpt +++ b/ext/sockets/tests/socket_cmsg_credentials.phpt @@ -8,6 +8,9 @@ die('skip sockets extension not available.'); if (strtolower(substr(PHP_OS, 0, 3)) == 'win') { die('skip not for Microsoft Windows'); } +if (strtolower(substr(PHP_OS, 0, 3)) == 'aix') { +die('skip not for AIX'); +} --CLEAN-- <?php $path = __DIR__ . "/unix_sock"; diff --git a/ext/sockets/tests/socket_cmsg_rights.phpt b/ext/sockets/tests/socket_cmsg_rights.phpt index 081ad9a6ac..e4d1f03b87 100644 --- a/ext/sockets/tests/socket_cmsg_rights.phpt +++ b/ext/sockets/tests/socket_cmsg_rights.phpt @@ -8,6 +8,9 @@ die('skip sockets extension not available.'); if (strtolower(substr(PHP_OS, 0, 3)) == 'win') { die('skip not for Microsoft Windows'); } +if (strtolower(substr(PHP_OS, 0, 3)) == 'aix') { +die('skip not for AIX'); +} --CLEAN-- <?php $path = __DIR__ . "/unix_sock"; |
