These are causing too much noise in the qa runs to leave, and #2617 is
sufficiently non-trivial to do this in the interim. Putting a better
mechanism in place will include removing these coarse whitelist items and
replacing with something that specifically matches the failures we want
to ignore.
run.Raw('|'),
'grep', '-v', 'CRON', # ignore cron noise
run.Raw('|'),
+ 'grep', '-v', 'inconsistent lock state', # FIXME see #2523
+ run.Raw('|'),
+ 'grep', '-v', 'INFO: possible irq lock inversion dependency detected', # FIXME see #2590 and #147
+ run.Raw('|'),
'head', '-n', '1',
],
stdout=StringIO(),