diff --git a/tests/TestCase/I18n/TimeTest.php b/tests/TestCase/I18n/TimeTest.php index 05e870f1f1e..80db6473530 100644 --- a/tests/TestCase/I18n/TimeTest.php +++ b/tests/TestCase/I18n/TimeTest.php @@ -582,6 +582,7 @@ public function testToStringInvalid($value) { */ public function testToStringInvalidZeros() { $this->skipIf(DS === '\\', 'All zeros are valid on windows.'); + $this->skipIf(PHP_INT_SIZE === 4, 'IntlDateFormatter throws exceptions on 32-bit systems'); $time = new Time('0000-00-00'); $this->assertInternalType('string', (string)$time); $this->assertNotEmpty((string)$time);