commit 534d9706cda749e857f85ef3253d1670a24ba0c7 from: Sergey Bronnikov date: Wed Aug 11 20:03:48 2021 UTC Fix disabled tests on FreeBSD Commit "Use generic os name in tests" (1f70f876d670704bd0422fe1e27d12177b189527) accidentally disabled testing on FreeBSD by adding double negation to condition that enables code for operating systems with fusermount(1). However fusermount(1) is not available on FreeBSD and therefore all regression tests were skipped. Fixes #93 commit - b4e9070ab7e27f102e437c98fb65c44651c47b3a commit + 534d9706cda749e857f85ef3253d1670a24ba0c7 blob - bbd06ececc46f20d3f6a90711323e2c48be8a261 blob + 53d9fee708b2651d9a10a13f96fedb3f21d468c9 --- tests/util.py +++ tests/util.py @@ -14,7 +14,7 @@ def is_no_fusermount(): return sys.platform.startswith("freebsd") or \ sys.platform == "darwin" -no_fusermount_support = not is_no_fusermount() +no_fusermount_support = is_no_fusermount() def wait_for_mount(mount_process, mnt_dir, test_fn=os.path.ismount):