diff options
author | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2017-02-01 12:04:55 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-02 17:37:33 +0000 |
commit | 65c26d51eedc687c92e8ade262d24dc53ca71cec (patch) | |
tree | bd41c9ea521d0eb9b4d734c857ddcce088a1abdc | |
parent | a332d9618c2d0f46b6c0c8fdeee8bec4cc73f2cf (diff) | |
download | openembedded-core-65c26d51eedc687c92e8ade262d24dc53ca71cec.tar.gz openembedded-core-65c26d51eedc687c92e8ade262d24dc53ca71cec.tar.bz2 openembedded-core-65c26d51eedc687c92e8ade262d24dc53ca71cec.zip |
selftest/bbtests: use write_config instead of local.conf file
Extra configuration data should be write using the write_config
method instead of manually appending to the local.conf file
Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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\" @testcase(1119) def test_non_gplv3(self): - data = 'INCOMPATIBLE_LICENSE = "GPLv3"' - conf = os.path.join(self.builddir, 'conf/local.conf') - ftools.append_file(conf ,data) - self.addCleanup(ftools.remove_from_file, conf ,data) + self.write_config('INCOMPATIBLE_LICENSE = "GPLv3"') result = bitbake('readline', ignore_status=True) self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output)) lic_dir = get_bb_var('LICENSE_DIRECTORY') |