Add missing break
In ''int execute_tests( int argc , const char ** argv )'' function, switch case is missing break statement. Signed-off-by: Tuvshinzaya Erdenekhuu <tuvshinzaya.erdenekhuu@arm.com>
This commit is contained in:
parent
ca3c6a5698
commit
8988e23690
1 changed files with 1 additions and 0 deletions
|
@ -590,6 +590,7 @@ int execute_tests( int argc , const char ** argv )
|
||||||
*/
|
*/
|
||||||
test_files = &argv[ arg_index ];
|
test_files = &argv[ arg_index ];
|
||||||
testfile_count = argc - arg_index;
|
testfile_count = argc - arg_index;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
arg_index++;
|
arg_index++;
|
||||||
|
|
Loading…
Reference in a new issue