From 65848d3647ef2b36cb7359ef3c24ba26d9f7c086 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Mon, 25 Jul 2016 11:55:40 +0200 Subject: [PATCH] exclude another incomatible read-write-mode-combination --- testing/test_volume_split.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) 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:] -- 1.7.1