diff options
-rw-r--r-- | meta/lib/oeqa/selftest/bbtests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index c4e50cbfa0..9dbac957ed 100644 --- a/meta/lib/oeqa/selftest/bbtests.py +++ b/meta/lib/oeqa/selftest/bbtests.py | |||
@@ -229,10 +229,7 @@ INHERIT_remove = \"report-error\" | |||
229 | 229 | ||
230 | @testcase(1119) | 230 | @testcase(1119) |
231 | def test_non_gplv3(self): | 231 | def test_non_gplv3(self): |
232 | data = 'INCOMPATIBLE_LICENSE = "GPLv3"' | 232 | self.write_config('INCOMPATIBLE_LICENSE = "GPLv3"') |
233 | conf = os.path.join(self.builddir, 'conf/local.conf') | ||
234 | ftools.append_file(conf ,data) | ||
235 | self.addCleanup(ftools.remove_from_file, conf ,data) | ||
236 | result = bitbake('readline', ignore_status=True) | 233 | result = bitbake('readline', ignore_status=True) |
237 | self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output)) | 234 | self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output)) |
238 | lic_dir = get_bb_var('LICENSE_DIRECTORY') | 235 | lic_dir = get_bb_var('LICENSE_DIRECTORY') |