From 02afaae56ca2452b3c0b2c666f64f741e016ca2d Mon Sep 17 00:00:00 2001 From: Ne-Lexa Date: Tue, 14 Nov 2017 11:39:16 +0300 Subject: [PATCH] Skipped some tests for php 32-bit platform. --- tests/PhpZip/ZipPasswordTest.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/PhpZip/ZipPasswordTest.php b/tests/PhpZip/ZipPasswordTest.php index 379788e..d4503f3 100644 --- a/tests/PhpZip/ZipPasswordTest.php +++ b/tests/PhpZip/ZipPasswordTest.php @@ -174,6 +174,10 @@ class ZipPasswordTest extends ZipFileAddDirTest public function testEncryptionEntries() { + if (PHP_INT_SIZE === 4) { + $this->markTestSkipped('Skip test for 32-bit system. Not support Traditional PKWARE Encryption.'); + } + $password1 = '353442434235424234'; $password2 = 'adgerhvrwjhqqehtqhkbqrgewg'; @@ -210,6 +214,10 @@ class ZipPasswordTest extends ZipFileAddDirTest public function testEncryptionEntriesWithDefaultPassword() { + if (PHP_INT_SIZE === 4) { + $this->markTestSkipped('Skip test for 32-bit system. Not support Traditional PKWARE Encryption.'); + } + $password1 = '353442434235424234'; $password2 = 'adgerhvrwjhqqehtqhkbqrgewg'; $defaultPassword = ' f f f f f ffff f5 ';