diff options
-rw-r--r-- | changes/bug_tempdir-alternatives | 1 | ||||
-rw-r--r-- | src/leap/common/testing/basetest.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug_tempdir-alternatives b/changes/bug_tempdir-alternatives new file mode 100644 index 0000000..579d880 --- /dev/null +++ b/changes/bug_tempdir-alternatives @@ -0,0 +1 @@ +- Consider different possibilities for tmpdir. Related to #6631. diff --git a/src/leap/common/testing/basetest.py b/src/leap/common/testing/basetest.py index 3c6fc29..efaedc3 100644 --- a/src/leap/common/testing/basetest.py +++ b/src/leap/common/testing/basetest.py @@ -77,6 +77,9 @@ class BaseLeapTest(unittest.TestCase): # XXX needs to adapt to non-linuces leap_assert( cls.tempdir.startswith('/tmp/leap_tests-') or + (cls.tempdir.startswith('/tmp/') and + cls.tempdir.startswith(tempfile.gettempdir()) and + 'leap_tests-' in cls.tempdir) or cls.tempdir.startswith('/var/folder'), "beware! tried to remove a dir which does not " "live in temporal folder!") |