1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 17:38:14 +02:00

Skip tests in 64bit systems

This commit is contained in:
foobar
2005-07-20 00:18:24 +00:00
parent dd3d739cc6
commit 40a049b27e
2 changed files with 14 additions and 2 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
--TEST--
mysqli fetch bigint values
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php
if (PHP_INT_SIZE == 8) {
echo 'skip test valid only for 32bit systems';
exit;
}
require_once('skipif.inc');
?>
--FILE--
<?php
include "connect.inc";
+7 -1
View File
@@ -1,7 +1,13 @@
--TEST--
function test: mysqli_insert_id()
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php
if (PHP_INT_SIZE == 8) {
echo 'skip test valid only for 32bit systems';
exit;
}
require_once('skipif.inc');
?>
--FILE--
<?php