summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/selftest/cases/lic_checksum.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/lic_checksum.py b/meta/lib/oeqa/selftest/cases/lic_checksum.py
index 37407157c1..f992b3736e 100644
--- a/meta/lib/oeqa/selftest/cases/lic_checksum.py
+++ b/meta/lib/oeqa/selftest/cases/lic_checksum.py
@@ -19,6 +19,8 @@ class LicenseTests(OESelftestTestCase):
19 os.close(lic_file) 19 os.close(lic_file)
20 self.track_for_cleanup(lic_path) 20 self.track_for_cleanup(lic_path)
21 21
22 self.write_config("INHERIT_remove = \"report-error\"")
23
22 self.write_recipeinc('emptytest', """ 24 self.write_recipeinc('emptytest', """
23INHIBIT_DEFAULT_DEPS = "1" 25INHIBIT_DEFAULT_DEPS = "1"
24LIC_FILES_CHKSUM = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e" 26LIC_FILES_CHKSUM = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e"
@@ -29,7 +31,6 @@ SRC_URI = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e"
29 with open(lic_path, "w") as f: 31 with open(lic_path, "w") as f:
30 f.write("data") 32 f.write("data")
31 33
32 self.write_config("INHERIT_remove = \"report-error\"")
33 result = bitbake(bitbake_cmd, ignore_status=True) 34 result = bitbake(bitbake_cmd, ignore_status=True)
34 if error_msg not in result.output: 35 if error_msg not in result.output:
35 raise AssertionError(result.output) 36 raise AssertionError(result.output)