Browse Source

Attempt to fix SKIP

pull/315/head
Xinchen Hui 13 years ago
parent
commit
ef93a93ee2
  1. 9
      sapi/cli/tests/bug64529.phpt

9
sapi/cli/tests/bug64529.phpt

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

Loading…
Cancel
Save