1
0
mirror of https://github.com/Ne-Lexa/php-zip.git synced 2025-08-08 00:16:28 +02:00

minor fixes, ZipEntry tests

This commit is contained in:
wapplay
2020-01-06 11:53:17 +03:00
parent 70bb598fa6
commit a16b0e7c15
21 changed files with 1906 additions and 141 deletions

View File

@@ -22,6 +22,12 @@ class Zip64Test extends ZipTestCase
*/
public function testOver65535FilesInZip()
{
if (\PHP_INT_SIZE === 4) { // php 32 bit
static::markTestSkipped('Only php-64 bit.');
return;
}
$countFiles = 0xffff + 1;
$zipFile = new ZipFile();