From e63492aeea465afdec8fc8ea16a62215553b0508 Mon Sep 17 00:00:00 2001 From: Tuvshinzaya Erdenekhuu Date: Fri, 17 Jun 2022 10:19:56 +0100 Subject: [PATCH] Add missing break In ''int execute_tests( int argc , const char ** argv )'' function, switch case is missing break statement. Signed-off-by: Tuvshinzaya Erdenekhuu --- tests/suites/host_test.function | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/suites/host_test.function b/tests/suites/host_test.function index b9ea3d6dc633..bb06822836be 100644 --- a/tests/suites/host_test.function +++ b/tests/suites/host_test.function @@ -590,6 +590,7 @@ int execute_tests( int argc , const char ** argv ) */ test_files = &argv[ arg_index ]; testfile_count = argc - arg_index; + break; } arg_index++;