From fb5cbd966e4e2e1f3dea69dc9405d42e75d2be85 Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Mon, 6 Sep 2021 22:35:10 -0400 Subject: [PATCH] scripts: AArch64: Run test cases for split modules Signed-off-by: Henry Wang --- scripts/run_integration_tests_aarch64.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index 494e5ce7b..cd77262c4 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -299,9 +299,19 @@ ovs-vsctl init ovs-vsctl set Open_vSwitch . other_config:dpdk-init=true service openvswitch-switch restart +# Run all direct kernel boot (Device Tree) test cases in mod `parallel` time cargo test $features_test "tests::parallel::$test_filter" RES=$? +# Run all ACPI test cases +if [ $RES -eq 0 ]; then + time cargo test $features_test "tests::aarch64_acpi::$test_filter" + RES=$? +else + exit $RES +fi + +# Run all test cases related to live migration if [ $RES -eq 0 ]; then time cargo test $features_test "tests::live_migration::$test_filter" -- --test-threads=1 RES=$?