Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_inotify: do not assume watch descriptor values #104

Open
wants to merge 1 commit into
base: dustin/fix_tests
Choose a base branch
from

Conversation

jwslater0823
Copy link

It is not safe to assume the values returned by add_watch(), so we add a local helper get_wd() to retrieve them. This fixes a problem in TestInotifyTree.test__cycle() where the wd's for the 'aa' and 'bb' paths are not '2' and '3', respectively.

A second issue is that Inotify._get_event_names() should return a set or sorted list to avoid comparison problems, but that is not addressed here since it could be viewed as changing the API.

It is not safe to assume the values returned by add_watch(),
so we add a local helper get_wd() to retrieve them.  This fixes
a problem in TestInotifyTree.test__cycle() where the
wd's for the 'aa' and 'bb' paths are not '2' and '3',
respectively.

A second issue is that Inotify._get_event_names() should
return a set or sorted list to avoid comparison problems,
but that is not addressed here since it could be viewed as
changing the API.

Signed-off-by: Joe Slater <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant