summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoe Slattery <zoe@php.net>2008-03-04 13:25:30 +0000
committerZoe Slattery <zoe@php.net>2008-03-04 13:25:30 +0000
commit77a1339755dd20ea9af5b235f79b8dcf1ee924a9 (patch)
tree5f392d18eeae6142b0aabd1f12d697ace53e7d7f
parentf4068e65ba15212725e59baa9471b6c3223c78fe (diff)
downloadphp-git-77a1339755dd20ea9af5b235f79b8dcf1ee924a9.tar.gz
re-fixing to skip on 64 bit
-rw-r--r--ext/standard/tests/math/hexdec_basic.phpt4
-rw-r--r--ext/standard/tests/math/octdec_basic.phpt4
2 files changed, 8 insertions, 0 deletions
diff --git a/ext/standard/tests/math/hexdec_basic.phpt b/ext/standard/tests/math/hexdec_basic.phpt
index d1da737141..1c42ae7e40 100644
--- a/ext/standard/tests/math/hexdec_basic.phpt
+++ b/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,
diff --git a/ext/standard/tests/math/octdec_basic.phpt b/ext/standard/tests/math/octdec_basic.phpt
index 5412bd8bab..8fd57ecfef 100644
--- a/ext/standard/tests/math/octdec_basic.phpt
+++ b/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,