From c6d5a12b607d7a947f75be0d685afc8a6fae69e7 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 14 Jul 2022 09:43:59 +1000 Subject: [PATCH] Add cargo/rustc sanity calls Add trivial calls to `cargo` and `rustc` as sanity checks before starting the script proper. --- contrib/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/test.sh b/contrib/test.sh index 4031b875..6238d299 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -13,6 +13,8 @@ then export RUSTFLAGS="-C link-dead-code" fi +cargo --version +rustc --version echo "********* Testing std *************" # Test without any features other than std first