From a4222afd7cd2a427e5013b199d583be231abddc6 Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Sun, 23 Aug 2020 22:45:56 +0800 Subject: [PATCH] scripts: Remove the workaround for "with-serde" in unit tests on AArch64 Signed-off-by: Michael Zhao --- scripts/run_unit_tests.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/run_unit_tests.sh b/scripts/run_unit_tests.sh index 80260c773..015499a0f 100755 --- a/scripts/run_unit_tests.sh +++ b/scripts/run_unit_tests.sh @@ -6,7 +6,6 @@ BUILD_TARGET=${BUILD_TARGET-x86_64-unknown-linux-gnu} cargo_args=("$@") [ $(uname -m) = "aarch64" ] && cargo_args+=("--no-default-features") [ $(uname -m) = "aarch64" ] && cargo_args+=("--features mmio,kvm") -[ $(uname -m) = "aarch64" ] && sed -i 's/"with-serde",\ //g' hypervisor/Cargo.toml cargo test --target $BUILD_TARGET --workspace --no-run ${cargo_args[@]} pushd target/$BUILD_TARGET/debug