1
0
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:
Xinchen Hui
2013-03-28 23:22:20 +08:00
parent 242d88c20c
commit ef93a93ee2

View File

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