1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

Run only on 32-bit OS

This commit is contained in:
Raghubansh Kumar
2007-07-08 05:01:11 +00:00
parent ebf7807668
commit 0affea112a
@@ -8,6 +8,9 @@ if ( substr(PHP_OS, 0, 3) == 'WIN' ) {
if ( substr(PHP_OS, 0, 3) == 'MAC' ) {
die('skip Not valid for MacOS');
}
if (PHP_INT_SIZE != 4) {
die("skip this test is for 32bit platform only");
}
?>
--FILE--
<?php