commit e7ed74c0e1a8073b5917f989f61036f6e3df8ab6 from: Sergey Bronnikov date: Tue Aug 17 08:10:08 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 - b23a86b503c14de76d0b425f13d808ebe13c800b commit + e7ed74c0e1a8073b5917f989f61036f6e3df8ab6 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):