Skip to content

Test and fix 32 bit targets #756

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

Merged
merged 5 commits into from
May 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: disable test dependent on stdin for cross
  • Loading branch information
dignifiedquire committed May 7, 2020
commit 76736da5b519cd37415088023c78fa9d598e7411
7 changes: 6 additions & 1 deletion tests/io_timeout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ use async_std::task;

#[test]
#[should_panic(expected = "timed out")]
#[cfg(not(target_os = "unknown"))]
#[cfg(not(any(
target_os = "unknown",
target_arch = "arm",
target_arch = "mips",
target_arch = "powerpc"
)))]
fn io_timeout_timedout() {
task::block_on(async {
io::timeout(Duration::from_secs(1), async {
Expand Down