summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/parselogs.py
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2018-07-31 10:21:20 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-31 22:47:36 +0100
commitfc2eea3d28d1d3624adb5e8275f292a0b0270cfb (patch)
tree289b4bcb6bce4fc37297c70dc3473910693b6b37 /meta/lib/oeqa/runtime/cases/parselogs.py
parentb195bff2048701243b6ec236519636c4039a1bb4 (diff)
downloadpoky-fc2eea3d28d1d3624adb5e8275f292a0b0270cfb.tar.gz
parselogs.py: ignore network interface name changing failure
The following error from systemd-udevd is not harmful. It's just because our qemu targets are using eth0. Error changing net interface name 'eth0' to 'enp0s3': Device or resource busy Note that systemd is using a different network interface naming scheme from traditional ethX naming scheme. To make this error message go away, we could symlink /etc/udev/rules.d/80-net-setup-link.rules to /dev/null to recover traditional naming scheme. But I'm not sure if this will cause regression in user experience for systemd users of OE. So just ignore this error message so that parselogs.py test case does not fail. (From OE-Core rev: f1735fed088ddda6517fa4ff6fbd6ef683b14878) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/parselogs.py')
-rw-r--r--meta/lib/oeqa/runtime/cases/parselogs.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index f0bcd168c6..017b5505e1 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -51,7 +51,8 @@ common_errors = [
51 "Cannot set xattr user.Librepo.DownloadInProgress", 51 "Cannot set xattr user.Librepo.DownloadInProgress",
52 "Failed to read /var/lib/nfs/statd/state: Success", 52 "Failed to read /var/lib/nfs/statd/state: Success",
53 "error retry time-out =", 53 "error retry time-out =",
54 "logind: cannot setup systemd-logind helper (-61), using legacy fallback" 54 "logind: cannot setup systemd-logind helper (-61), using legacy fallback",
55 "Error changing net interface name 'eth0' to "
55 ] 56 ]
56 57
57video_related = [ 58video_related = [