From dbce426e9fb8e9c6104575f2a6fbf91bbacc2ac2 Mon Sep 17 00:00:00 2001 From: Fabian Kaczmarczyck Date: Fri, 18 Jun 2021 17:22:24 +0200 Subject: [PATCH] removes std from CBOR tests --- run_desktop_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_desktop_tests.sh b/run_desktop_tests.sh index b54d3a8..1359523 100755 --- a/run_desktop_tests.sh +++ b/run_desktop_tests.sh @@ -88,7 +88,7 @@ if [ -z "${TRAVIS_OS_NAME}" -o "${TRAVIS_OS_NAME}" = "linux" ] then echo "Running unit tests on the desktop (release mode)..." cd libraries/cbor - cargo test --release --features std + cargo test --release cd ../.. cd libraries/crypto RUSTFLAGS='-C target-feature=+aes' cargo test --release --features std @@ -100,7 +100,7 @@ then echo "Running unit tests on the desktop (debug mode)..." cd libraries/cbor - cargo test --features std + cargo test cd ../.. cd libraries/crypto RUSTFLAGS='-C target-feature=+aes' cargo test --features std