diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-12-30 02:00:51 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-12-30 02:00:51 +0000 |
commit | 78d8808f42b74d4f0cae79a906a603e64f6065cb (patch) | |
tree | 71c6fbd4f73537af371824eb5ca878859fd0b92a /ext | |
parent | 689504556518b823ba8d375853ca79bef70a2fed (diff) | |
download | php-git-78d8808f42b74d4f0cae79a906a603e64f6065cb.tar.gz |
Mark test as being 32bit only
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/tests/strings/pack.phpt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/tests/strings/pack.phpt b/ext/standard/tests/strings/pack.phpt index 19102f07db..b36eee1e57 100644 --- a/ext/standard/tests/strings/pack.phpt +++ b/ext/standard/tests/strings/pack.phpt @@ -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"))); |