From 268c4ea214befc9db016546e2b19f0c6d0dfe701 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 20 Jun 2023 12:09:01 -0700 Subject: [PATCH] tests: disable test_vfio test Details: https://github.com/cloud-hypervisor/cloud-hypervisor/issues/5190#issuecomment-1599357074 Signed-off-by: Bo Chen --- scripts/run_integration_tests_vfio.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/run_integration_tests_vfio.sh b/scripts/run_integration_tests_vfio.sh index ae2963c73..746949a9e 100755 --- a/scripts/run_integration_tests_vfio.sh +++ b/scripts/run_integration_tests_vfio.sh @@ -89,12 +89,7 @@ echo $PAGE_NUM | sudo tee /proc/sys/vm/nr_hugepages sudo chmod a+rwX /dev/hugepages export RUST_BACKTRACE=1 -time cargo test "vfio::test_vfio" -- ${test_binary_args[*]} +time cargo test "vfio::test_nvidia" -- --test-threads=1 ${test_binary_args[*]} RES=$? -if [ $RES -eq 0 ]; then - time cargo test "vfio::test_nvidia" -- --test-threads=1 ${test_binary_args[*]} - RES=$? -fi - exit $RES