aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-23 08:22:53 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-23 08:22:53 +0200
commit997ce2252ab1a4dc2d5d673b50b6c035e2dca17b (patch)
treea4ed34c2656746a4bee2614a0f5cfa57be5e7b23 /pkg
parent9bfa33a7b576ee760cb8cb27bbab5cd4ac2e4c38 (diff)
pkg/report: suppress another android boot message
Diffstat (limited to 'pkg')
-rw-r--r--pkg/report/report.go1
-rw-r--r--pkg/report/report_test.go5
2 files changed, 6 insertions, 0 deletions
diff --git a/pkg/report/report.go b/pkg/report/report.go
index da53237c6..5ea1adc33 100644
--- a/pkg/report/report.go
+++ b/pkg/report/report.go
@@ -224,6 +224,7 @@ var oopses = []*oops{
compile("INFO: lockdep is turned off"),
compile("INFO: Stall ended before state dump start"),
compile("INFO: NMI handler .* took too long to run"),
+ compile("_INFO::"), // Android can print this during boot.
},
},
&oops{
diff --git a/pkg/report/report_test.go b/pkg/report/report_test.go
index b66b228e2..1bf033253 100644
--- a/pkg/report/report_test.go
+++ b/pkg/report/report_test.go
@@ -766,6 +766,11 @@ other info that might help us debug this:
[ 38.018742] [4: system_server: 3344] logger: !@Boot_DEBUG: start networkManagement
[ 38.039013] [2: kworker/2:1: 1608] Trustonic TEE: c01|TL_TZ_KEYSTORE: Starting
`: ``,
+
+ `[ 16.761978] [syscamera][msm_companion_pll_init::526][BIN_INFO::0x0008]
+[ 16.762666] [syscamera][msm_companion_pll_init::544][WAFER_INFO::0xcf80]
+[ 16.763144] [syscamera][msm_companion_pll_init::594][BIN_INFO::0x0008][WAFER_INFO::0xcf80][voltage 0.775]
+`: ``,
}
for log, crash := range tests {
if strings.Index(log, "\r\n") != -1 {