mirror of
https://github.com/php/php-src.git
synced 2026-03-25 00:32:23 +01:00
Attempt to fix SKIP
This commit is contained in:
@@ -2,8 +2,13 @@
|
||||
Bug #64529 (Ran out of opcode space)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (substr(PHP_OS, 0, 3) == "WIN") die("skip non windows test");
|
||||
if (!trim(`which expect`)) die "skip no expect installed";
|
||||
if (substr(PHP_OS, 0, 3) == "WIN") {
|
||||
die("skip non windows test");
|
||||
}
|
||||
exec('which expect', $output, $ret);
|
||||
if ($ret) {
|
||||
die "skip no expect installed";
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user