Fix #72677: SCM_CREDENTIALS related tests should be skipped on AIX

Patch provided by matthieu dot sarter dot external at atos dot net.
This commit is contained in:
Christoph M. Becker 2016-07-28 17:19:47 +02:00
parent 6e886f07a8
commit c301adbbd1
2 changed files with 6 additions and 0 deletions

View File

@ -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";

View File

@ -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";