We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tests/comparators/test_device.py::test_diff FAILED tests/comparators/test_device.py::test_diff_reverse FAILED
The reason being that the expected output assumed that /dev/null should always have .major:1 .minor:3, however, in FreeBSD,
/dev/null
.major:1 .minor:3
➜ ~ python3 Python 3.6.2 (default, Jul 18 2017, 01:40:45) [GCC 4.2.1 Compatible FreeBSD Clang 4.0.0 (tags/RELEASE_400/final 297347)] on freebsd12 Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> st = os.lstat('/dev/null') >>> os.major(st.st_rdev) 0 >>> os.minor(st.st_rdev) 14
The text was updated successfully, but these errors were encountered:
Fixed in a5d7a19. A patch is also been created: diffoscope_test_device_patch.diff.txt
@emaste @mapreri
Sorry, something went wrong.
Committed here.
No branches or pull requests
The reason being that the expected output assumed that
/dev/null
should always have.major:1 .minor:3
, however, in FreeBSD,The text was updated successfully, but these errors were encountered: