Commit Diff
- Commit:
e7ed74c0e1a8073b5917f989f61036f6e3df8ab6- From:
- Sergey Bronnikov <estetus@gmail.com>
- Date:
- Message:
- 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
- Actions:
- Patch | Tree
--- 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):
