Bug 1343659 - [mozharness] Flag rust kernel panics as an ERROR, r?kats draft
authorAndrew Halberstadt <ahalberstadt@mozilla.com>
Mon, 29 May 2017 16:49:26 -0400
changeset 587146 476bb7d7594592753888afa22e7ed70382b2c021
parent 586973 7b8937970f9ca85db88cb2496f2112175fd847c8
child 631196 e1e25865f76516229da13becf687265c8d197921
push id61627
push userahalberstadt@mozilla.com
push dateWed, 31 May 2017 15:42:54 +0000
reviewerskats
bugs1343659
milestone55.0a1
Bug 1343659 - [mozharness] Flag rust kernel panics as an ERROR, r?kats MozReview-Commit-ID: EaKdP3ru3K1
testing/mozharness/mozharness/mozilla/testing/errors.py
--- a/testing/mozharness/mozharness/mozilla/testing/errors.py
+++ b/testing/mozharness/mozharness/mozilla/testing/errors.py
@@ -110,16 +110,17 @@ TinderBoxPrintRe = {
 
 TestPassed = [
     {'regex': re.compile('''(TEST-INFO|TEST-KNOWN-FAIL|TEST-PASS|INFO \| )'''), 'level': INFO},
 ]
 
 HarnessErrorList = [
     {'substr': 'TEST-UNEXPECTED', 'level': ERROR, },
     {'substr': 'PROCESS-CRASH', 'level': ERROR, },
+    {'regex': re.compile('''thread '([^']+)' panicked'''), '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)'},
 ]