summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-04-10 13:06:22 -0700
committerAndreas Gampe <agampe@google.com>2015-04-10 13:06:22 -0700
commite9b160e60da52264c496d6028bbadf48f02c15db (patch)
treeba81a0c3959b8bebff20ff4f260571ce4fabf38d /tools
parenta29d93b380c9aeb8270e281aefbdd0c77a430d43 (diff)
downloadart-e9b160e60da52264c496d6028bbadf48f02c15db.zip
art-e9b160e60da52264c496d6028bbadf48f02c15db.tar.gz
art-e9b160e60da52264c496d6028bbadf48f02c15db.tar.bz2
ART: Fix failure-log script
The transaction error class has been changed, update the script. Change-Id: Ibc4dfb8cdca01eb9dc9e868c18d36bf6badb0521
Diffstat (limited to 'tools')
-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 cca05e1..60c7dc5 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):