Commit 4dafba90 by Ben Clayton

Regres: Treat ABORT()s as failures

Bug: b/132353920 Change-Id: Ic7950ea29be6fd0dc7712813c10cdd2dfab73b90 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/33548Reviewed-by: 's avatarChris Forbes <chrisforbes@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 8c126fa1
......@@ -196,7 +196,7 @@ var Statuses = []Status{
// Failing returns true if the task status requires fixing.
func (s Status) Failing() bool {
switch s {
case Fail, Timeout, Crash, Unimplemented, Unreachable, Assert:
case Fail, Timeout, Crash, Unimplemented, Unreachable, Assert, Abort:
return true
case Unsupported:
// This may seem surprising that this should be a failure, however these
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment