summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-27 22:43:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-08 13:07:14 +0100
commit0ece3d8ab5ec7af43dac98184de95fab9c30cd71 (patch)
treef37c3fa4a265128078a24775c36f46c0d0cfdac0 /meta
parent1137495bbd43149951ec2c781e4e783f8c4a2508 (diff)
downloadpoky-0ece3d8ab5ec7af43dac98184de95fab9c30cd71.tar.gz
oeqa/parselogs: Whitelist qemuarm64 runtime errors
The qemuarm64 machine doesn't have graphics so whitelist the X server failures to start. (From OE-Core rev: 716d4a3525d19a15f5506c4ceff80fa5b4f55342) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 7721912a23..dd4d805de3 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -63,6 +63,10 @@ ignore_errors = {
63 'mmci-pl18x: probe of fpga:0b failed with error -22', 63 'mmci-pl18x: probe of fpga:0b failed with error -22',
64 'Failed to load module "glx"' 64 'Failed to load module "glx"'
65 ] + common_errors, 65 ] + common_errors,
66 'qemuarm64' : [
67 'Fatal server error:',
68 '(EE) Server terminated with error (1). Closing log file.',
69 ] + common_errors,
66 'emenlow' : x86_common, 70 'emenlow' : x86_common,
67 'crownbay' : x86_common, 71 'crownbay' : x86_common,
68 'genericx86' : x86_common, 72 'genericx86' : x86_common,