aboutsummaryrefslogtreecommitdiff
path: root/test/test_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_examples.py')
-rwxr-xr-xtest/test_examples.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_examples.py b/test/test_examples.py
index 6484992..948f994 100755
--- a/test/test_examples.py
+++ b/test/test_examples.py
@@ -167,6 +167,11 @@ def test_passthrough(tmpdir, name, debug, capfd):
else:
umount(mount_process, mnt_dir)
+# Is this really not supported? We should check with
+# the FreeBSD guys, maybe we're just doing something
+# wrong.
+@pytest.mark.skipif('freebsd' in sys.platform,
+ reason='not supported in FreeBSD')
def test_ioctl(tmpdir):
mnt_dir = str(tmpdir)
testfile = pjoin(mnt_dir, 'fioc')
@@ -208,6 +213,11 @@ def test_poll(tmpdir):
else:
umount(mount_process, mnt_dir)
+# Is this really not supported? We should check with
+# the FreeBSD guys, maybe we're just doing something
+# wrong.
+@pytest.mark.skipif('freebsd' in sys.platform,
+ reason='not supported in FreeBSD')
def test_null(tmpdir):
mnt_file = str(tmpdir) + '/file'
with open(mnt_file, 'w') as fh: