Skip to content

Commit

Permalink
contest: vmksft-p: restrict comment if starts with '#'
Browse files Browse the repository at this point in the history
Just to follow the specs.

Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
  • Loading branch information
matttbe authored and kuba-moo committed Aug 22, 2024
1 parent be557ea commit 514381c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contest/remote/vmksft-p.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _parse_nested_tests(full_run):

v = result_re.match(line).groups()
name = v[3]
if len(v) > 5 and v[5]:
if len(v) > 5 and v[4] and v[5]:
if v[5].lower().startswith('skip') and result == "pass":
result = "skip"

Expand Down

0 comments on commit 514381c

Please sign in to comment.