File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Test for timelib #124: Problem with large negative timestamps
44date.timezone=UTC
55--SKIPIF--
66<?php
7- if (PHP_INT_SIZE != 8 ) echo "skip this test is for 64-bit only " ;
7+ if (PHP_INT_SIZE != 8 ) die ( "skip this test is for 64-bit only " ) ;
88if (getenv ('SKIP_ASAN ' )) die ('skip triggers undefined behavior ' );
99?>
1010--FILE--
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ GH-10403: Fix incorrect bitshifting and masking in ffi bitfield
33--EXTENSIONS--
44ffi
55--SKIPIF--
6- <?php if (PHP_INT_SIZE != 8 ) echo "skip this test is for 64-bit only " ; ?>
6+ <?php if (PHP_INT_SIZE != 8 ) die ( "skip this test is for 64-bit only " ) ; ?>
77--FILE--
88<?php
99$ ffi = FFI ::cdef (<<<EOF
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ PHP_INT_MAX tests
44gmp
55--SKIPIF--
66<?php
7- if (PHP_INT_SIZE != 8 ) print "skip " ;
7+ if (PHP_INT_SIZE != 8 ) die ( "skip " ) ;
88?>
99--FILE--
1010<?php
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ memory_limit=3G
88<?php
99if (!getenv ('RUN_RESOURCE_HEAVY_TESTS ' )) die ('skip resource-heavy test ' );
1010if (getenv ('SKIP_SLOW_TESTS ' )) die ('skip slow test ' );
11- if (PHP_INT_SIZE != 8 ) echo 'skip 64-bit only ' ;
11+ if (PHP_INT_SIZE != 8 ) die ( 'skip 64-bit only ' ) ;
1212?>
1313--FILE--
1414<?php
You can’t perform that action at this time.
0 commit comments