Skip to content

Commit e4c4c93

Browse files
authoredMay 7, 2020
Test and fix 32 bit targets
1 parent 6f6fced commit e4c4c93

File tree

5 files changed

+54
-7
lines changed

5 files changed

+54
-7
lines changed
 

‎.github/workflows/ci.yml

+33
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,39 @@ jobs:
110110
command: check
111111
args: --no-default-features --features alloc --target thumbv7m-none-eabi -Z avoid-dev-deps
112112

113+
cross:
114+
name: Cross compile
115+
runs-on: ubuntu-latest
116+
strategy:
117+
matrix:
118+
target:
119+
- i686-unknown-linux-gnu
120+
- powerpc-unknown-linux-gnu
121+
- powerpc64-unknown-linux-gnu
122+
- mips-unknown-linux-gnu
123+
- arm-linux-androideabi
124+
125+
steps:
126+
- uses: actions/checkout@master
127+
128+
- name: Install nightly
129+
uses: actions-rs/toolchain@v1
130+
with:
131+
toolchain: nightly
132+
override: true
133+
134+
- name: Install cross
135+
run: cargo install cross
136+
137+
- name: check
138+
run: cross check --all --target ${{ matrix.target }}
139+
140+
- name: check unstable
141+
run: cross check --all --features unstable --target ${{ matrix.target }}
142+
143+
- name: test
144+
run: cross test --all --features unstable --target ${{ matrix.target }}
145+
113146
check_fmt_and_docs:
114147
name: Checking fmt and docs
115148
runs-on: ubuntu-latest

‎Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ pin-project-lite = { version = "0.1.4", optional = true }
6767
pin-utils = { version = "0.1.0-alpha.4", optional = true }
6868
slab = { version = "0.4.2", optional = true }
6969

70+
# Devdepencency, but they are not allowed to be optional :/
71+
surf = { version = "1.0.3", optional = true }
72+
7073
[target.'cfg(not(target_os = "unknown"))'.dependencies]
7174
smol = { version = "0.1.1", optional = true }
7275

@@ -81,7 +84,6 @@ wasm-bindgen-test = "0.3.10"
8184
[dev-dependencies]
8285
femme = "1.3.0"
8386
rand = "0.7.3"
84-
surf = "1.0.3"
8587
tempdir = "0.3.7"
8688
futures = "0.3.4"
8789
rand_xorshift = "0.2.0"
@@ -93,3 +95,7 @@ required-features = ["unstable"]
9395
[[example]]
9496
name = "tcp-ipv4-and-6-echo"
9597
required-features = ["unstable"]
98+
99+
[[example]]
100+
name = "surf-web"
101+
required-features = ["surf"]

‎src/task/task_id.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use std::fmt;
2-
use std::sync::atomic::{AtomicU64, Ordering};
2+
use std::sync::atomic::{AtomicUsize, Ordering};
33

44
/// A unique identifier for a task.
55
///
@@ -13,15 +13,16 @@ use std::sync::atomic::{AtomicU64, Ordering};
1313
/// })
1414
/// ```
1515
#[derive(Eq, PartialEq, Clone, Copy, Hash, Debug)]
16-
pub struct TaskId(pub(crate) u64);
16+
pub struct TaskId(pub(crate) usize);
1717

1818
impl TaskId {
1919
/// Generates a new `TaskId`.
2020
pub(crate) fn generate() -> TaskId {
21-
static COUNTER: AtomicU64 = AtomicU64::new(1);
21+
// TODO: find a good version to emulate u64 atomics on 32 bit systems.
22+
static COUNTER: AtomicUsize = AtomicUsize::new(1);
2223

2324
let id = COUNTER.fetch_add(1, Ordering::Relaxed);
24-
if id > u64::max_value() / 2 {
25+
if id > usize::max_value() / 2 {
2526
std::process::abort();
2627
}
2728
TaskId(id)

‎tests/io_timeout.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ use async_std::task;
55

66
#[test]
77
#[should_panic(expected = "timed out")]
8-
#[cfg(not(target_os = "unknown"))]
8+
#[cfg(not(any(
9+
target_os = "unknown",
10+
target_arch = "arm",
11+
target_arch = "mips",
12+
target_arch = "powerpc",
13+
target_arch = "powerpc64",
14+
target_arch = "x86",
15+
)))] // stdin tests fail when running through cross
916
fn io_timeout_timedout() {
1017
task::block_on(async {
1118
io::timeout(Duration::from_secs(1), async {

‎tests/timeout.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn timeout_future_many() {
1212
task::block_on(async {
1313
let futures = (0..100)
1414
.map(|i| {
15-
timeout(Duration::from_millis(i * 10), async move {
15+
timeout(Duration::from_millis(i * 20), async move {
1616
task::sleep(Duration::from_millis(i)).await;
1717
Ok::<(), async_std::future::TimeoutError>(())
1818
})

0 commit comments

Comments
 (0)
Please sign in to comment.