summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-02-23 15:44:51 -0800
committerNikolaus Rath <Nikolaus@rath.org>2018-12-28 20:04:28 +0000
commitc2edae1f2556c10dd47b6920c29f8c9005f08820 (patch)
tree855689b532730d07bb5527c8c941b88d979371a6
parente2a3a399b153d23c36abd654554563b1f0ba099b (diff)
Skip tests requiring /proc
Origin: debian Forwarded: no Patch-Name: proc_mount.diff Gbp-Pq: Name proc_mount.diff
-rwxr-xr-xtests/t4_adm.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/t4_adm.py b/tests/t4_adm.py
index 005c91b..1d8ad7a 100755
--- a/tests/t4_adm.py
+++ b/tests/t4_adm.py
@@ -22,6 +22,7 @@ import tempfile
import unittest
import subprocess
import pytest
+import os
@pytest.mark.usefixtures('s3ql_cmd_argv', 'pass_reg_output')
class AdmTests(unittest.TestCase):
@@ -56,6 +57,7 @@ class AdmTests(unittest.TestCase):
return stdout
+ @unittest.skipUnless(os.path.exists('/proc/mounts'), '/proc/mounts not available')
def test_passphrase(self):
self.mkfs()