Update core/testing/runner.odin

for each style loop

Co-authored-by: Laytan <laytanlaats@hotmail.com>
This commit is contained in:
Harold Brenes
2026-02-11 14:09:33 -05:00
committed by GitHub
parent 557a191108
commit cac90a84fc

View File

@@ -205,8 +205,7 @@ Options :: struct {
parse_cli_options :: proc(argv: []string, opts: ^Options, stdout, stderr: io.Writer) {
test_names: strings.Builder
for i := 0; i < len(argv); i+=1 {
arg := argv[i]
for arg in argv {
if strings.starts_with(arg, "-tests:") {
tests := arg[strings.index(arg, ":")+1:]
if len(tests) < 1 {