Skip to content
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

Closed
wants to merge 5 commits into from
Closed

Enable most AIO tests on musl targets and clean them up #929

wants to merge 5 commits into from

Conversation

jonas-schievink
Copy link
Contributor

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.

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).
@jonas-schievink
Copy link
Contributor Author

jonas-schievink commented Jul 15, 2018

x86_64-unknown-linux-musl fails with:

test sys::test_aio::test_liocb_listio_read_immutable ... fatal runtime error: failed to initiate panic, error 5
error: An unknown error occurred

That's... interesting. I can't reproduce this locally with the same rustc version (1.20). Neither with cross test --target x86_64-unknown-linux-musl -- test_aio nor with cargo using the same command line. Panics also work without any problems on my system with musl.

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 rustup-provided Rust releases.

(EDIT: Could be related to rust-lang/rust#47551?)

I guess I'll disable the test for now.

Copy link
Member

@asomers asomers left a 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);
Copy link
Member

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)]
Copy link
Member

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?

@jonas-schievink
Copy link
Contributor Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants