From 51c1738d5510f7b1a3eb0e43af2c3dbcb167b1be Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 15 Feb 2023 11:18:32 +0000 Subject: [PATCH] tests: Disable test_vfio test This test (which relies on nesting) is failing on the VFIO worker. The tests that use the dedicated hardware pass fine. See: #5190 Signed-off-by: Rob Bradford --- 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 e5dfe40b1..9cba7823f 100755 --- a/scripts/run_integration_tests_vfio.sh +++ b/scripts/run_integration_tests_vfio.sh @@ -56,12 +56,7 @@ echo 6144 | 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