diff options
Diffstat (limited to 'ext/date/tests/bug41523-64bit.phpt')
-rw-r--r-- | ext/date/tests/bug41523-64bit.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/tests/bug41523-64bit.phpt b/ext/date/tests/bug41523-64bit.phpt index 0c0e8076c3..ca01ee0f50 100644 --- a/ext/date/tests/bug41523-64bit.phpt +++ b/ext/date/tests/bug41523-64bit.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #41523 (strtotime('0000-00-00 00:00:00') is parsed as 1999-11-30) (64 bit) --SKIPIF-- -<?php echo PHP_INT_SIZE != 8 ? "skip 64-bit only" : "OK"; ?> +<?php if (PHP_INT_SIZE != 8) die("skip 64-bit only"); ?> --FILE-- <?php date_default_timezone_set("UTC"); |