Browse Source

Skip tests in 64bit systems

PHP-5.1
foobar 21 years ago
parent
commit
40a049b27e
  1. 8
      ext/mysqli/tests/009.phpt
  2. 8
      ext/mysqli/tests/036.phpt

8
ext/mysqli/tests/009.phpt

@ -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";

8
ext/mysqli/tests/036.phpt

@ -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

Loading…
Cancel
Save