From 89e795d308d66ee5ea3323a2b88e20115f37ce4f Mon Sep 17 00:00:00 2001 From: Simo Kuusela Date: Thu, 23 Feb 2017 11:50:06 +0200 Subject: [PATCH] meta-iotqa: Ignore one alsa boot error The error: "/usr/sbin/alsactl: state_lock:125: file /var/lib/alsa/asound.state lock error: File exists" happens randomly under 2% of the time so it's really hard to replicate and test if it affects anything. Also there seems to be no fix for it so ignore the error. Signed-off-by: Simo Kuusela --- meta-iotqa/lib/oeqa/runtime/sanity/baseos.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-iotqa/lib/oeqa/runtime/sanity/baseos.py b/meta-iotqa/lib/oeqa/runtime/sanity/baseos.py index d2e67d2930..1321a04a82 100644 --- a/meta-iotqa/lib/oeqa/runtime/sanity/baseos.py +++ b/meta-iotqa/lib/oeqa/runtime/sanity/baseos.py @@ -106,7 +106,9 @@ def test_baseos_systemd_boot_error(self): "ACPI Error: Could not enable RealTimeClock event", "hci_intel: probe of INT33E1:00 failed with error -2", "Error changing net interface name 'usb0' to", - "*ERROR* dp aux hw did not signal timeout" + "*ERROR* dp aux hw did not signal timeout", + # Bug 11105, in Refkit bugzilla + "file /var/lib/alsa/asound.state lock error" ] self.longMessage = True cmd = "journalctl -ab"