From 8988e23690405916770656592f1435f86a40d3db 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 b9ea3d6dc..bb0682283 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++;