diff options
author | 2018-05-03 14:41:54 -0700 | |
---|---|---|
committer | 2018-06-25 11:30:10 -0700 | |
commit | b4c1906f65cff3fbd1f3b7e08b3baa983e142756 (patch) | |
tree | 4b591af8bdc0f633426f288143ff810b255b349d /tools/testing/selftests/rcutorture/bin/parse-console.sh | |
parent | rcutorture: Remove obsolete TREE08-T.boot file (diff) | |
download | linux-dev-b4c1906f65cff3fbd1f3b7e08b3baa983e142756.tar.xz linux-dev-b4c1906f65cff3fbd1f3b7e08b3baa983e142756.zip |
rcutorture: Make kvm-find-errors.sh find close calls
Although warnings about close calls are printed by kvm-recheck.sh,
kvm-find-errors.sh currently ignores them. This could easily result
in someone failing to investigate close calls, so this commit makes
them visible to kvm-find-errors.sh.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'tools/testing/selftests/rcutorture/bin/parse-console.sh')
-rwxr-xr-x | tools/testing/selftests/rcutorture/bin/parse-console.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/testing/selftests/rcutorture/bin/parse-console.sh b/tools/testing/selftests/rcutorture/bin/parse-console.sh index 17293436f551..84933f6aed77 100755 --- a/tools/testing/selftests/rcutorture/bin/parse-console.sh +++ b/tools/testing/selftests/rcutorture/bin/parse-console.sh @@ -163,6 +163,13 @@ then print_warning Summary: $summary cat $T.diags >> $file.diags fi +for i in $file.*.diags +do + if test -f "$i" + then + cat $i >> $file.diags + fi +done if ! test -s $file.diags then rm -f $file.diags |