Fix status code
This commit is contained in:
parent
70b1794129
commit
642c3a62a9
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ func _ready() -> void:
|
||||||
lresu("")
|
lresu("")
|
||||||
|
|
||||||
# Shutdown
|
# Shutdown
|
||||||
if stats_all == stats_ok: terminate(0)
|
if stats_all == stats_ok + stats_skip: terminate(0)
|
||||||
elif stats_all == stats_ok + stats_warn: terminate(1)
|
elif stats_all == stats_ok + stats_warn + stats_skip: terminate(1)
|
||||||
else: terminate(2)
|
else: terminate(2)
|
||||||
|
|
||||||
# Runs a test suite
|
# Runs a test suite
|
||||||
|
|
Loading…
Reference in a new issue