]> granicus.if.org Git - php/commitdiff
MFB: Mark test as being 32bit only
authorIlia Alshanetsky <iliaa@php.net>
Sat, 30 Dec 2006 02:01:09 +0000 (02:01 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sat, 30 Dec 2006 02:01:09 +0000 (02:01 +0000)
ext/standard/tests/strings/pack.phpt

index 19102f07db0d2698d8b08cd5c6e8dfb86873ccfc..b36eee1e5703b7c3486862326b82a1a5a168cb0e 100644 (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")));