File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ run() {
45
45
--env LIBC_CI_ZBUILD_STD \
46
46
--env RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS \
47
47
--env RUST_LIBC_UNSTABLE_GNU_TIME_BITS \
48
+ --env RUST_LIBC_UNSTABLE_MUSL_V1_2_3 \
49
+ --env RUST_LIBC_UNSTABLE_MUSL_TIME64 \
48
50
--env CARGO_HOME=/cargo \
49
51
--env CARGO_TARGET_DIR=/checkout/target \
50
52
--volume " $CARGO_HOME " :/cargo \
Original file line number Diff line number Diff line change @@ -81,6 +81,15 @@ test_target() {
81
81
# Test with the equivalent of _TIME_BITS=64
82
82
RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
83
83
;;
84
+ arm* -musl* |i* 86-musl|powerpc-* -musl* |mips* -musl|thumb-* musl* )
85
+ # Test with new musl changes and the equivalent of _REDIR_TIME64
86
+ RUST_LIBC_UNSTABLE_MUSL_V1_2_3=1 \
87
+ RUST_LIBC_UNSTABLE_MUSL_TIME64=1 $cmd
88
+ ;;
89
+ * musl* )
90
+ # Test with the new musl changes.
91
+ RUST_LIBC_UNSTABLE_MUSL_V1_2_3=1 $cmd
92
+ ;;
84
93
esac
85
94
fi
86
95
You can’t perform that action at this time.
0 commit comments