From a565f165b1c7bfaaccfe34662f606f448db31d93 Mon Sep 17 00:00:00 2001 From: Max Asnaashari Date: Thu, 18 Apr 2024 19:18:31 +0000 Subject: [PATCH] microcloud/test: Only run mismatch Signed-off-by: Max Asnaashari --- microcloud/test/main.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/microcloud/test/main.sh b/microcloud/test/main.sh index 7ee9dd63..95e94d78 100755 --- a/microcloud/test/main.sh +++ b/microcloud/test/main.sh @@ -147,20 +147,7 @@ run_preseed_tests() { run_test test_preseed "preseed" } -# allow for running a specific set of tests -if [ "${1:-"all"}" = "all" ]; then - run_add_tests - run_basic_tests - run_preseed_tests -elif [ "${1}" = "add" ]; then - run_add_tests -elif [ "${1}" = "basic" ]; then - run_basic_tests -elif [ "${1}" = "preseed" ]; then - run_preseed_tests -else - run_test "test_${1}" -fi +run_test test_service_mismatch "service mismatch" # shellcheck disable=SC2034 TEST_RESULT=success