Bug 1343659 - Add the thread panicked string draft
authorWes Kocher <wkocher@mozilla.com>
Wed, 01 Mar 2017 18:14:28 -0800
changeset 491717 83d8308e5fd4ef4ceedf48227aff1ed8584c3b0e
parent 491665 e91de6fb2b3dce9c932428265b0fdb630ea470d7
child 491718 29a4f9ccdc0e49924ceb12c44a813799b45a14ec
push id47375
push userkwierso@gmail.com
push dateThu, 02 Mar 2017 02:17:32 +0000
bugs1343659
milestone54.0a1
Bug 1343659 - Add the thread panicked string MozReview-Commit-ID: BPmHtKA4WBN
testing/mozharness/mozharness/mozilla/testing/errors.py
--- a/testing/mozharness/mozharness/mozilla/testing/errors.py
+++ b/testing/mozharness/mozharness/mozilla/testing/errors.py
@@ -111,9 +111,10 @@ HarnessErrorList = [
     {'substr': 'PROCESS-CRASH', 'level': ERROR, },
 ]
 
 LogcatErrorList = [
     {'substr': 'Fatal signal 11 (SIGSEGV)', 'level': ERROR, 'explanation': 'This usually indicates the B2G process has crashed'},
     {'substr': 'Fatal signal 7 (SIGBUS)', 'level': ERROR, 'explanation': 'This usually indicates the B2G process has crashed'},
     {'substr': '[JavaScript Error:', 'level': WARNING},
     {'substr': 'seccomp sandbox violation', 'level': ERROR, 'explanation': 'A content process has violated the system call sandbox (bug 790923)'},
+    {'regex': re.compile(r"|thread (\w+) panicked", 'level': ERROR, 'explanation': "HELLO"},
 ]