summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-04-10 13:06:22 -0700
committer Andreas Gampe <agampe@google.com> 2015-04-10 13:06:22 -0700
commite9b160e60da52264c496d6028bbadf48f02c15db (patch)
treeba81a0c3959b8bebff20ff4f260571ce4fabf38d
parenta29d93b380c9aeb8270e281aefbdd0c77a430d43 (diff)
ART: Fix failure-log script
The transaction error class has been changed, update the script. Change-Id: Ibc4dfb8cdca01eb9dc9e868c18d36bf6badb0521
-rwxr-xr-xtools/analyze-init-failures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/analyze-init-failures.py b/tools/analyze-init-failures.py
index cca05e19a7..60c7dc56ba 100755
--- a/tools/analyze-init-failures.py
+++ b/tools/analyze-init-failures.py
@@ -25,7 +25,7 @@ import sys
_CLASS_RE = re.compile(r'^L(.*);$')
-_ERROR_LINE_RE = re.compile(r'^java.lang.InternalError: (.*)')
+_ERROR_LINE_RE = re.compile(r'^dalvik.system.TransactionAbortError: (.*)')
_STACK_LINE_RE = re.compile(r'^\s*at\s[^\s]*\s([^\s]*)')
def Confused(filename, line_number, line):