Enable all-arch feature in test-no_std.sh

This commit is contained in:
bjorn3
2019-09-28 19:51:54 +02:00
committed by Dan Gohman
parent bb8fa40ef0
commit a111ba8d11

View File

@@ -21,10 +21,10 @@ for LIB in $LIBS; do
pushd "$LIB" >/dev/null
# Test with just "core" enabled.
cargo +nightly test --no-default-features --features core
cargo +nightly test --no-default-features --features "core all-arch"
# Test with "core" and "std" enabled at the same time.
cargo +nightly test --features core
cargo +nightly test --features "core all-arch"
popd >/dev/null
done