scripts: Remove all references to 'mmio' feature

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2020-10-15 14:20:29 +02:00
committed by Rob Bradford
parent 74c08e5669
commit f73a345107
6 changed files with 8 additions and 51 deletions

View File

@@ -19,13 +19,4 @@ export RUST_BACKTRACE=1
time cargo test --features "integration_tests" "tests::sgx::$@"
RES=$?
if [ $RES -eq 0 ]; then
# virtio-mmio based testing
cargo build --all --release --target $BUILD_TARGET --no-default-features --features "mmio,kvm"
strip target/$BUILD_TARGET/release/cloud-hypervisor
time cargo test --features "integration_tests,mmio" "tests::sgx::$@"
RES=$?
fi
exit $RES