fix tests failing on 64bit

This commit is contained in:
Antony Dovgal 2007-08-11 22:18:33 +00:00
parent fc86edab7d
commit 44d8314d9c
4 changed files with 24 additions and 0 deletions

View File

@ -1,5 +1,11 @@
--TEST-- --TEST--
Test fscanf() function: usage variations - hexa formats with integer values Test fscanf() function: usage variations - hexa formats with integer values
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
die("skip this test is for 32bit platform only");
}
?>
--FILE-- --FILE--
<?php <?php

View File

@ -1,5 +1,11 @@
--TEST-- --TEST--
Test fscanf() function: usage variations - hexa formats with float values Test fscanf() function: usage variations - hexa formats with float values
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
die("skip this test is for 32bit platform only");
}
?>
--FILE-- --FILE--
<?php <?php

View File

@ -1,5 +1,11 @@
--TEST-- --TEST--
Test fscanf() function: usage variations - unsigned formats with float values Test fscanf() function: usage variations - unsigned formats with float values
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
die("skip this test is for 32bit platform only");
}
?>
--FILE-- --FILE--
<?php <?php

View File

@ -1,5 +1,11 @@
--TEST-- --TEST--
Test fscanf() function: usage variations - float formats with integer values Test fscanf() function: usage variations - float formats with integer values
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
die("skip this test is for 32bit platform only");
}
?>
--FILE-- --FILE--
<?php <?php