summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-02 22:31:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-02 22:45:27 +0000
commitd5267afa634a4da33f5d5a88c678387a9b7ec1b1 (patch)
tree3e63a3544b0f51f815b0b0e567c77a3ca5bd373c /scripts
parent68e1c567882538c3e183d0863ab87f19431efcea (diff)
downloadpoky-d5267afa634a4da33f5d5a88c678387a9b7ec1b1.tar.gz
qemuimage-tests/dmesg: Add exception for error message on qemuarm with 3.8 kernel
With 3.8 kernels we get a harmless error message during kernel boot. For now we can ignore. This allows the tests to pass and ensures we can merge the 3.8 kernel. (From OE-Core rev: da1e094c407353af2ab230c4867c9d8fd68e3161) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 ######"