From: Christian Herdtweck Date: Mon, 25 Jul 2016 09:55:40 +0000 (+0200) Subject: exclude another incomatible read-write-mode-combination X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=65848d3647ef2b36cb7359ef3c24ba26d9f7c086;p=python-delta-tar exclude another incomatible read-write-mode-combination --- diff --git a/testing/test_volume_split.py b/testing/test_volume_split.py index 41ac57a..620dd06 100755 --- a/testing/test_volume_split.py +++ b/testing/test_volume_split.py @@ -335,6 +335,9 @@ def test_forever(): # figure out extract mode for tar file if ('#' in extract_start) and ('#' not in create_mode): continue # not possible + if ':' in extract_start and \ + not create_mode.endswith('tar'): + continue # not possible full_extract_mode = extract_start if extract_start[-1] != '*': full_extract_mode += create_mode[2:]