Skip to content

Commit

Permalink
Add missing break
Browse files Browse the repository at this point in the history
In ''int execute_tests( int argc , const char ** argv )'' function,
switch case is missing break statement.

Signed-off-by: Tuvshinzaya Erdenekhuu <[email protected]>
  • Loading branch information
Zaya-dyno authored and daverodgman committed Jul 20, 2022
1 parent 8bb9e46 commit e63492a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/suites/host_test.function
Original file line number Diff line number Diff line change
Expand Up @@ -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++;
Expand Down

0 comments on commit e63492a

Please sign in to comment.