summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/functional/libgfapi-python-tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/libgfapi-python-tests.py b/test/functional/libgfapi-python-tests.py
index 8f631d4..a64dbc2 100644
--- a/test/functional/libgfapi-python-tests.py
+++ b/test/functional/libgfapi-python-tests.py
@@ -16,6 +16,7 @@ import errno
import hashlib
import threading
import uuid
+from nose import SkipTest
from test import get_test_config
from ConfigParser import NoSectionError, NoOptionError
from uuid import uuid4
@@ -1155,6 +1156,8 @@ class TestVolumeInit(unittest.TestCase):
self.assertFalse(vol.mounted)
def test_unix_socket_mount(self):
+ if not os.access(GLUSTERD_SOCK_FILE, os.R_OK | os.W_OK):
+ raise SkipTest("Unix socket file %s not accessible" % GLUSTERD_SOCK_FILE)
vol = Volume(GLUSTERD_SOCK_FILE, VOLNAME, proto="unix")
vol.mount()
self.assertTrue(vol.mounted)