Commit e305f084 by Carsten Brandt

skip unsupported things on 32bit system

parent 6267b9ee
...@@ -283,6 +283,9 @@ class FormatterTest extends TestCase ...@@ -283,6 +283,9 @@ class FormatterTest extends TestCase
public function testIntlDateRangeLow() public function testIntlDateRangeLow()
{ {
if (PHP_INT_SIZE == 4) { // 32bit systems
$this->markTestSkipped('intl does not support high date ranges on 32bit systems.');
}
$this->testDateRangeLow(); $this->testDateRangeLow();
} }
...@@ -298,6 +301,9 @@ class FormatterTest extends TestCase ...@@ -298,6 +301,9 @@ class FormatterTest extends TestCase
public function testIntlDateRangeHigh() public function testIntlDateRangeHigh()
{ {
if (PHP_INT_SIZE == 4) { // 32bit systems
$this->markTestSkipped('intl does not support high date ranges on 32bit systems.');
}
$this->testDateRangeHigh(); $this->testDateRangeHigh();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment