Skip Test_Archive_TAR in php 5.5 for now

This commit is contained in:
Bart Visscher 2013-06-24 22:38:05 +02:00
parent 6fcee1ee11
commit 7f3ddd4341
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,12 @@ require_once 'archive.php';
if (!OC_Util::runningOnWindows()) {
class Test_Archive_TAR extends Test_Archive {
public function setUp() {
if (floatval(phpversion())>=5.5) {
$this->markTestSkipped('php 5.5 changed unpack function.');
return;
}
}
protected function getExisting() {
$dir = OC::$SERVERROOT . '/tests/data';
return new OC_Archive_TAR($dir . '/data.tar.gz');