lib/oeqa/selftest/lic-checksum: Add INHIBIT_DEFAULT_DEPS

The test_nonmatching_checksum doesn't need the default dependencies,
and they would just take extra time to generate.

(From OE-Core rev: d91ed126eead8b09a4ddfe5cc11db16dda71273f)

Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Randy Witt 2015-03-16 11:14:14 -07:00 committed by Richard Purdie
parent 8b8baf5de3
commit 05471f8710
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ class LicenseTests(oeSelfTest):
os.close(lic_file)
self.track_for_cleanup(lic_path)
self.write_recipeinc('emptytest', 'LIC_FILES_CHKSUM = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e"' % lic_path)
self.write_recipeinc('emptytest', 'INHIBIT_DEFAULT_DEPS = "1"')
self.append_recipeinc('emptytest', 'LIC_FILES_CHKSUM = "file://%s;md5=d41d8cd98f00b204e9800998ecf8427e"' % lic_path)
result = bitbake(bitbake_cmd)
with open(lic_path, "w") as f: