Skip to content
Snippets Groups Projects
Commit 6887d7da authored by Bart Visscher's avatar Bart Visscher
Browse files

Skip Test_Archive_TAR in php 5.5 for now

parent d1b76f1b
Branches
No related tags found
No related merge requests found
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment