1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

MFB: Mark test as being 32bit only

This commit is contained in:
Ilia Alshanetsky
2006-12-30 02:01:09 +00:00
parent 2120039c2b
commit fb392210ee
+6
View File
@@ -1,5 +1,11 @@
--TEST--
Generic pack()/unpack() tests
--SKIPIF--
<?php
if (PHP_INT_MAX > 2147483647) {
die("skip 32bit test only");
}
?>
--FILE--
<?php
print_r(unpack("A", pack("A", "hello world")));