-
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
Enable most AIO tests on musl targets and clean them up #929
Conversation
Full SeqCst is likely to be overly conservative, but the Relaxed ordering gives almost no guarantees and is likely to be wrong here (IIUC at least an Acquire/Release combination is needed).
That's... interesting. I can't reproduce this locally with the same rustc version (1.20). Neither with I was thinking that this might be related to system library versions, but musl doesn't really have problems with that, right (I'm on Arch Linux, so I'm running very recent versions of everything)? At least I don't have my system's musl installed, and both I and Travis are using the regular (EDIT: Could be related to rust-lang/rust#47551?) I guess I'll disable the test for now. |
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.
If these tests are working on musl now, that's great. But if in the future they start failing in Travis, I'm disinclined to spend much time trying to fix them.
@@ -433,20 +418,19 @@ lazy_static! { | |||
} | |||
|
|||
extern fn sigfunc(_: c_int) { | |||
SIGNALED.store(true, Ordering::Relaxed); | |||
SIGNALED.store(true, Ordering::SeqCst); |
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.
Relaxed
is fine here, because SIGNALED
isn't being used to control access to any other variables. It's only being accessed by itself, so stricter atomic instructions aren't needed. This is the kind of application that, in C, wouldn't even use special instructions, just a sigatomic_t
variable.
} | ||
|
||
// Test LioCb::listio with LIO_NOWAIT and a SigEvent to indicate when all | ||
// AioCb's are complete. | ||
// FIXME: This test is ignored on mips/mips64 because of failures in qemu in CI. | ||
#[test] | ||
#[cfg(not(any(target_os = "ios", target_os = "macos")))] | ||
#[cfg_attr(any(target_arch = "mips", target_arch = "mips64", target_env = "musl"), ignore)] | ||
#[cfg_attr(any(all(target_arch = "x86", target_env = "musl"), target_arch = "mips", target_arch = "mips64"), ignore)] |
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.
If this test fails on x86 with musl, why do you think it will work better on other architectures with musl?
Sorry, don't really have the time to finish this PR (mostly because doing it properly would involve debugging musl). If anyone wants to finish this, feel free, although I don't really see why you'd want to given that there's better alternatives to aio. |
I've run them a bunch of times on my machine and haven't witnessed any spurious failures so far.
The exception are the signal event tests, which I've kept ignored. They deadlock on some target combinations - apparently the signal handler never runs. This is not a QEMU bug since it also happens on
i686-unknown-linux-musl
.