-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
df: add binfmt_misc to is_dummy_filesystem #9975
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
base: main
Are you sure you want to change the base?
Conversation
|
GNU testsuite comparison: |
f4a69ad to
c3c297e
Compare
|
GNU testsuite comparison: |
c3c297e to
74e3b95
Compare
|
You mignt need to add some words to |
74e3b95 to
c0212d6
Compare
|
GNU testsuite comparison: |
|
Also for fsext.rs... |
Oops, missed this one |
c28d376 to
4ff7eb9
Compare
src/uucore/src/lib/features/fsext.rs
Outdated
| } | ||
|
|
||
| #[test] | ||
| #[cfg(all(unix, not(any(target_os = "aix", target_os = "redox"))))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why aix? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I matched the test case to is_dummy_filesystem which has the same condition. My assumption was that this function would only exist on unix.
Should it also succeed on non-unix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't care about aix
just remove it (in both places)
thanks
a345f8c to
961f548
Compare
|
GNU testsuite comparison: |
Possible fix for #9952
Was trying to reproduce the issue and saw that
binfmt_miscwas not marked as a dummy system. Seems like this should be the case.