Browse Source

Fixing 32 bit specific

PECL
Zoe Slattery 19 years ago
parent
commit
a6fe8d8ca7
  1. 4
      ext/standard/tests/math/hexdec_basic.phpt
  2. 4
      ext/standard/tests/math/octdec_basic.phpt

4
ext/standard/tests/math/hexdec_basic.phpt

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

4
ext/standard/tests/math/octdec_basic.phpt

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

Loading…
Cancel
Save