blob: 03bcc451dfdc8e8b6fd93c81dca3b8a2ad2bedf8 [file] [log] [blame]
Andrew Geissler97771a32021-03-05 15:23:11 -06001From 3765b3a4cabf76f55c1c126ac64780a8c117d1d9 Mon Sep 17 00:00:00 2001
Andrew Geisslereef63862021-01-29 15:58:13 -06002From: Mingli Yu <mingli.yu@windriver.com>
Andrew Geissler97771a32021-03-05 15:23:11 -06003Date: Tue, 12 Jan 2021 10:30:13 +0800
Andrew Geisslereef63862021-01-29 15:58:13 -06004Subject: [PATCH] test: avoid the pfa test hang
5
6Per [1], the pfa test needs to install page-types and the pfa test
7will hang forever if there is no page-types installed.
8
9Improve the test script to avoid the pfa test hang.
10
11[1] https://git.kernel.org/pub/scm/utils/cpu/mce/mcelog.git/tree/tests/pfa/PFA_test_howto?id=7b776a8c005b60572f49797e81287540f99fff1f
12
13Upstream-Status: Submitted [https://github.com/andikleen/mcelog/pull/87]
14
15Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
16---
17 tests/test | 3 +++
18 1 file changed, 3 insertions(+)
19
20diff --git a/tests/test b/tests/test
Andrew Geissler97771a32021-03-05 15:23:11 -060021index 020ae2b..320f57f 100755
Andrew Geisslereef63862021-01-29 15:58:13 -060022--- a/tests/test
23+++ b/tests/test
Andrew Geissler97771a32021-03-05 15:23:11 -060024@@ -47,6 +47,9 @@ do
25 # Inject mce records and run mcelog in parallel.
26 # So that the mce records can be consumed by mcelog in time (avoid mce record overflow).
27 ./inject $conf &
Andrew Geisslereef63862021-01-29 15:58:13 -060028+ if [ "$1" = "pfa" ] ; then
29+ which page-types > /dev/null 2>&1 || continue
30+ fi
31 $D ../../mcelog --foreground --daemon --debug-numerrors --config $conf --logfile $log >> result
32
33 # let triggers finish
34--
352.29.2
36