From: huanwen ren Date: Tue, 30 Aug 2016 07:06:26 +0000 (+0800) Subject: test/cephfs: add mount&&unmount test X-Git-Tag: v11.0.1~324^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3091fa3b5107dd05a4f07c8a1505b8563f162014;p=ceph.git test/cephfs: add mount&&unmount test Signed-off-by: huanwen ren --- diff --git a/src/test/pybind/test_cephfs.py b/src/test/pybind/test_cephfs.py index d481da2b8e97..5bc0f6ed5384 100644 --- a/src/test/pybind/test_cephfs.py +++ b/src/test/pybind/test_cephfs.py @@ -206,3 +206,10 @@ def test_flock(): cephfs.close(fd2) cephfs.close(fd) + +@with_setup(setup_test) +def test_mount_unmount(): + test_directory() + cephfs.unmount() + cephfs.mount() + test_open()