-
Notifications
You must be signed in to change notification settings - Fork 356
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
make some things available for all Unixes #2306
Conversation
@bors r+ |
📌 Commit f43fecb has been approved by |
make some things available for all Unixes
💔 Test failed - checks-actions |
@bors r+ |
📌 Commit 5ba2c1e has been approved by |
@@ -42,7 +42,7 @@ fn test_posix_fadvise() { | |||
assert_eq!(result, 0); | |||
} | |||
|
|||
#[cfg(any(target_os = "linux", target_os = "freebsd"))] |
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 disable these tests on freebsd?
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.
They don't even build on freebsd. They use Linux-only libc
symbols. I didn't catch this in #2221.
FreeBSD currently only runs a subset of the test suite since the target is still WIP, and this file is not one of them. But I wanted to make sure at least it builds.
☀️ Test successful - checks-actions |
No description provided.