-
Notifications
You must be signed in to change notification settings - Fork 688
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
refactor: move tests to the test dir #2257
Conversation
@@ -29,7 +29,6 @@ mod test_poll; | |||
target_os = "haiku" | |||
)))] | |||
mod test_pty; | |||
mod test_resource; |
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.
resource.rs
and timer.rs
are under src/sys
, so I moved test_resource.rs
and test_timer.rs
from test/
to test/sys/
#[cfg(not(any( | ||
target_os = "redox", | ||
target_os = "fuchsia", | ||
solarish, | ||
target_os = "haiku" | ||
)))] |
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.
This gate and the below one are removed because we gate them at test/sys/mod.rs
:
#[cfg(not(any(
target_os = "redox",
target_os = "fuchsia",
solarish,
target_os = "haiku"
)))]
mod test_resource;
@@ -1774,108 +1774,6 @@ impl<'a> Iterator for IoSliceIterator<'a> { | |||
} | |||
} | |||
|
|||
// test contains both recvmmsg and timestaping which is linux only |
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.
Tests in this file have been moved to test/sys/test_socket.rs
udata, | ||
); | ||
assert_eq!(0xdead_beef, actual.ident()); | ||
assert_eq!(EventFilter::EVFILT_READ, actual.filter().unwrap()); |
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.
Originally, this line of code was:
let filter = actual.kevent.filter;
assert_eq!(libc::EVFILT_READ, filter);
But the kevent
field (libc::kevent) of KEvent
is private, so I changed it to the corresponding public method .filter()
assert_eq!(libc::EV_ONESHOT | libc::EV_ADD, actual.flags().bits()); | ||
assert_eq!(libc::NOTE_CHILD | libc::NOTE_EXIT, actual.fflags().bits()); | ||
assert_eq!(data, actual.data()); | ||
assert_eq!(udata, actual.udata()); |
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.
There was 2 type casts:
assert_eq!(udata as type_of_udata, actual.udata() as type_of_udata);
But it is not necessary as both sides will return a value in type libc::intptr_t
What does this PR do
Move the tests in the
src/xxx.rs
to the correspondingtest_xxx.rs
in thetest
directory as discussed in this commentHow to review this PR
The code changes are fairly big, but the real changes should be very small, the best way of reviewing this PR would be checking the changes in
xxx.rs
, then take a look attest_xxx.rs
to see if there is anything that should not be moved or accidentally changed.I have left some comments on places where special attention is needed, hope that would make review easier.
Checklist:
CONTRIBUTING.md