summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/qemuimage-tests/tools/dmesg.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/qemuimage-tests/tools/dmesg.sh b/scripts/qemuimage-tests/tools/dmesg.sh
index 66c022343b..f0c93181bd 100644
--- a/scripts/qemuimage-tests/tools/dmesg.sh
+++ b/scripts/qemuimage-tests/tools/dmesg.sh
@@ -13,7 +13,9 @@ if [ $? -ne 0 ]; then
13 exit 1 13 exit 1
14fi 14fi
15 15
16dmesg | grep -iq "error" 16# For now, ignore mmci-pl18x errors on qemuarm which appeared
17# from the 3.8 kernel and are harmless
18dmesg | grep -v mmci-pl18x | grep -iq "error"
17if [ $? -eq 0 ]; then 19if [ $? -eq 0 ]; then
18 echo "QEMU: There is some error log in dmesg:" 20 echo "QEMU: There is some error log in dmesg:"
19 echo "QEMU: ##### Error Log ######" 21 echo "QEMU: ##### Error Log ######"