Skip to content

Commit 5305c83

Browse files
committed
ci: enable target x86_64-unknown-redox
1 parent 74bf1ca commit 5305c83

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,7 @@ jobs:
243243
- target: x86_64-unknown-linux-musl
244244
env: { TEST_MUSL_V1_2_3: 1 }
245245
artifact-tag: new-musl
246-
# FIXME: It seems some items in `src/unix/mod.rs` aren't defined on redox actually.
247-
# - target: x86_64-unknown-redox
246+
- target: x86_64-unknown-redox
248247

249248
# FIXME(ppc): SIGILL running tests, see
250249
# https://github.com/rust-lang/libc/pull/4254#issuecomment-2636288713

src/unix/redox/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -906,8 +906,8 @@ pub const OLCUC: crate::tcflag_t = 0o000_004;
906906
pub const OCRNL: crate::tcflag_t = 0o000_010;
907907
pub const ONOCR: crate::tcflag_t = 0o000_020;
908908
pub const ONLRET: crate::tcflag_t = 0o000_040;
909-
pub const OFILL: crate::tcflag_t = 0o0000_100;
910-
pub const OFDEL: crate::tcflag_t = 0o0000_200;
909+
pub const OFILL: crate::tcflag_t = 0o0_000_100;
910+
pub const OFDEL: crate::tcflag_t = 0o0_000_200;
911911

912912
pub const B0: speed_t = 0o000_000;
913913
pub const B50: speed_t = 0o000_001;

0 commit comments

Comments
 (0)