]> source.dussan.org Git - nextcloud-server.git/commitdiff
skip archive tests for now
authorThomas Mueller <thomas.mueller@tmit.eu>
Tue, 12 Mar 2013 09:33:40 +0000 (10:33 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Tue, 12 Mar 2013 09:33:40 +0000 (10:33 +0100)
tests/lib/archive/tar.php
tests/lib/archive/zip.php

index 51de004813a5ae70b790da0bbd52d730577d1536..e66a87408790590fccaeff81f8b6d95efbf01e04 100644 (file)
@@ -8,6 +8,7 @@
 
 require_once 'archive.php';
 
+if (!OC_Util::runningOnWindows()) {
 class Test_Archive_TAR extends Test_Archive {
        protected function getExisting() {
                $dir = OC::$SERVERROOT . '/tests/data';
@@ -18,3 +19,4 @@ class Test_Archive_TAR extends Test_Archive {
                return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz'));
        }
 }
+}
index adddf81ee1bd2bd09537afc67365bef68196e55e..e049a899d8846e901cd820c9589def868856d690 100644 (file)
@@ -8,6 +8,7 @@
 
 require_once 'archive.php';
 
+if (!OC_Util::runningOnWindows()) {
 class Test_Archive_ZIP extends Test_Archive {
        protected function getExisting() {
                $dir = OC::$SERVERROOT . '/tests/data';
@@ -18,3 +19,4 @@ class Test_Archive_ZIP extends Test_Archive {
                return new OC_Archive_ZIP(OCP\Files::tmpFile('.zip'));
        }
 }
+}
\ No newline at end of file