Skip to content

Commit 79afdce

Browse files
authored
Merge pull request #4134 from tgross35/fix-constness
fix: make sure the `const-extern-fn` feature is enabled
2 parents aff3132 + 19e9e6a commit 79afdce

File tree

3 files changed

+26
-34
lines changed

3 files changed

+26
-34
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ cargo-args = ["-Zbuild-std=core"]
135135
rustc-std-workspace-core = { version = "1.0.0", optional = true }
136136

137137
[features]
138-
default = ["std"]
138+
default = ["const-extern-fn", "std"]
139139
std = []
140140
rustc-dep-of-std = ["rustc-std-workspace-core"]
141141
extra_traits = []

ci/run.sh

+22-33
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ mirrors_url="https://ci-mirrors.rust-lang.org/libc"
99

1010
target="$1"
1111

12+
export RUST_BACKTRACE="${RUST_BACKTRACE:-1}"
13+
1214
# If we're going to run tests inside of a qemu image, then we don't need any of
1315
# the scripts below. Instead, download the image, prepare a filesystem which has
1416
# the current state of this repository, and then run the image.
@@ -78,6 +80,20 @@ if [ -n "${QEMU:-}" ]; then
7880
exec grep -E "^(PASSED)|(test result: ok)" "${CARGO_TARGET_DIR}/out.log"
7981
fi
8082

83+
cmd="cargo test --target $target ${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}"
84+
85+
# Run tests in the `libc` crate
86+
case "$target" in
87+
# FIXME(android): unit tests fail to start on Android
88+
# FIXME(s390x): unit tests fail to locate glibc
89+
*android*) ;;
90+
*s390x*) ;;
91+
*) $cmd
92+
esac
93+
94+
# Everything else is in `libc-test`
95+
cmd="$cmd --manifest-path libc-test/Cargo.toml"
96+
8197
if [ "$target" = "s390x-unknown-linux-gnu" ]; then
8298
# FIXME: s390x-unknown-linux-gnu often fails to test due to timeout,
8399
# so we retry this N times.
@@ -86,52 +102,25 @@ if [ "$target" = "s390x-unknown-linux-gnu" ]; then
86102
passed=0
87103
until [ $n -ge $N ]; do
88104
if [ "$passed" = "0" ]; then
89-
if cargo test \
90-
--no-default-features \
91-
--manifest-path libc-test/Cargo.toml \
92-
--target "$target" \
93-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
94-
then
105+
if $cmd --no-default-features; then
95106
passed=$((passed+1))
96107
continue
97108
fi
98109
elif [ "$passed" = "1" ]; then
99-
if cargo test \
100-
--manifest-path libc-test/Cargo.toml \
101-
--target "$target" \
102-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
103-
then
110+
if $cmd; then
104111
passed=$((passed+1))
105112
continue
106113
fi
107114
elif [ "$passed" = "2" ]; then
108-
if cargo test \
109-
--features extra_traits \
110-
--manifest-path libc-test/Cargo.toml \
111-
--target "$target" \
112-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
113-
then
115+
if $cmd --features extra_traits; then
114116
break
115117
fi
116118
fi
117119
n=$((n+1))
118120
sleep 1
119121
done
120122
else
121-
cargo test \
122-
--no-default-features \
123-
--manifest-path libc-test/Cargo.toml \
124-
--target "$target" \
125-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
126-
127-
cargo test \
128-
--manifest-path libc-test/Cargo.toml \
129-
--target "$target" \
130-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
131-
132-
RUST_BACKTRACE=1 cargo test \
133-
--features extra_traits \
134-
--manifest-path libc-test/Cargo.toml \
135-
--target "$target" \
136-
${LIBC_CI_ZBUILD_STD+"-Zbuild-std"}
123+
$cmd --no-default-features
124+
$cmd
125+
$cmd --features extra_traits
137126
fi

tests/const_fn.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#[cfg(target_os = "linux")]
2+
const _FOO: libc::c_uint = unsafe { libc::CMSG_SPACE(1) };
3+
//^ if CMSG_SPACE is not const, this will fail to compile

0 commit comments

Comments
 (0)