From 3d763ae4aa3a1f9d0c61f94f915528736b262436 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 12 Jul 2018 17:47:31 +0100 Subject: Disable test for --no-default-features on rumprun --- ci/run.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/run.sh b/ci/run.sh index ff74899cbb..ffcd042186 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -86,5 +86,9 @@ if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then opt="--release" fi -cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml --target $TARGET +# Building with --no-default-features is currently broken on rumprun because we +# need cfg(target_vendor), which is currently unstable. +if [ "$TARGET" != "x86_64-rumprun-netbsd" ]; then + cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml --target $TARGET +fi exec cargo test $opt --manifest-path libc-test/Cargo.toml --target $TARGET -- cgit v1.2.1