summary refs log tree commit diff
path: root/pkgs/tools/backup/duplicity/gnutar-in-test.patch
blob: ee95b68e2abb5bf5703c0b2538074d176d55cf0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/testing/functional/test_restart.py b/testing/functional/test_restart.py
index 6d972c82..e8435fd5 100644
--- a/testing/functional/test_restart.py
+++ b/testing/functional/test_restart.py
@@ -350,14 +350,7 @@ class RestartTestWithoutEncryption(RestartTest):
         https://launchpad.net/bugs/929067
         """
 
-        if platform.system().startswith(u'Linux'):
-            tarcmd = u"tar"
-        elif platform.system().startswith(u'Darwin'):
-            tarcmd = u"gtar"
-        elif platform.system().endswith(u'BSD'):
-            tarcmd = u"gtar"
-        else:
-            raise Exception(u"Platform %s not supported by tar/gtar." % platform.platform())
+        tarcmd = u"tar"
 
         # Intial normal backup
         self.backup(u"full", u"{0}/testfiles/blocktartest".format(_runtest_dir))