From b2771e17a5f301423f65be9f93c9c1b1e7f8ab93 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 20 Sep 2016 09:13:51 +0100 Subject: oeqa/selftest/lic-checksum: don't report the expected failure to errors.yp This test has a bitbake invocation that is expected to fail, so inhibit report-error running. Signed-off-by: Ross Burton --- meta/lib/oeqa/selftest/lic-checksum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/selftest/lic-checksum.py b/meta/lib/oeqa/selftest/lic-checksum.py index df44c97e80..2e81373ae4 100644 --- a/meta/lib/oeqa/selftest/lic-checksum.py +++ b/meta/lib/oeqa/selftest/lic-checksum.py @@ -29,6 +29,7 @@ SRC_URI = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e" with open(lic_path, "w") as f: f.write("data") + self.write_config("INHERIT_remove = \"report-error\"") result = bitbake(bitbake_cmd, ignore_status=True) if error_msg not in result.output: raise AssertionError(result.output) -- cgit 1.2.3-korg