|
|
@@ -203,6 +203,10 @@ class TypeTest extends \Cake\TestSuite\TestCase {
|
|
|
* @return void
|
|
|
*/
|
|
|
public function testBigintegerToPHP() {
|
|
|
+ $this->skipIf(
|
|
|
+ isset($_SERVER['PROCESSOR_ARCHITECTURE']) && $_SERVER['PROCESSOR_ARCHITECTURE'] === 'x86',
|
|
|
+ 'This test requires a php version compiled for 64 bits'
|
|
|
+ );
|
|
|
$type = Type::build('biginteger');
|
|
|
$integer = time() * time();
|
|
|
$driver = $this->getMock('\Cake\Database\Driver');
|