Fixing 32 bit specific

This commit is contained in:
Zoe Slattery 2008-02-06 09:28:01 +00:00
parent 4da92843b9
commit 87a60ef453
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,9 @@
--TEST--
Test hexdec() - basic function test hexdec()
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
?>
--FILE--
<?php
$values = array(0x123abc,

View File

@ -1,5 +1,9 @@
--TEST--
Test octdec() - basic function test octdec()
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
?>
--FILE--
<?php
$values = array(01234567,