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:
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user