From a111ba8d1105c290d09eab9721f628e55f98651d Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sat, 28 Sep 2019 19:51:54 +0200 Subject: [PATCH] Enable all-arch feature in test-no_std.sh --- cranelift/test-no_std.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cranelift/test-no_std.sh b/cranelift/test-no_std.sh index 43750a38ce..9f878d9f0b 100755 --- a/cranelift/test-no_std.sh +++ b/cranelift/test-no_std.sh @@ -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