-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
torture: Abstract out console-log error detection
This commit pulls the simple pattern-based error detection from the console log into a new console-badness.sh file. This will enable future commits to end a run on the first error. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
- Loading branch information
Paul E. McKenney
committed
Jun 29, 2020
1 parent
6387ecb
commit bc77a72
Showing
2 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
# SPDX-License-Identifier: GPL-2.0+ | ||
# | ||
# Scan standard input for error messages, dumping any found to standard | ||
# output. | ||
# | ||
# Usage: console-badness.sh | ||
# | ||
# Copyright (C) 2020 Facebook, Inc. | ||
# | ||
# Authors: Paul E. McKenney <paulmck@kernel.org> | ||
|
||
egrep 'Badness|WARNING:|Warn|BUG|===========|Call Trace:|Oops:|detected stalls on CPUs/tasks:|self-detected stall on CPU|Stall ended before state dump start|\?\?\? Writer stall state|rcu_.*kthread starved for|!!!' | | ||
grep -v 'ODEBUG: ' | | ||
grep -v 'This means that this is a DEBUG kernel and it is' | | ||
grep -v 'Warning: unable to open an initial console' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters