summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/bbtests.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-19 18:22:13 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-20 16:45:25 +0000
commit9477a309a8bb5ad5840e9caef234c8112fc31528 (patch)
tree3efacd91b4069abe2b395429b136d3fd66733c23 /meta/lib/oeqa/selftest/cases/bbtests.py
parentb0130fcf91daee0d905af755302fabe608da141c (diff)
downloadpoky-9477a309a8bb5ad5840e9caef234c8112fc31528.tar.gz
oeqa/selftest/bbtests: Update after license changes
Update the test to match the renamed license in the recipe. (From OE-Core rev: 3d50ee782e5073c055d72f114619502719a33752) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/bbtests.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/bbtests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/bbtests.py b/meta/lib/oeqa/selftest/cases/bbtests.py
index e2b9290200..ce72c4bcc6 100644
--- a/meta/lib/oeqa/selftest/cases/bbtests.py
+++ b/meta/lib/oeqa/selftest/cases/bbtests.py
@@ -228,8 +228,8 @@ INHERIT:remove = \"report-error\"
228 result = bitbake('selftest-ed', ignore_status=True) 228 result = bitbake('selftest-ed', ignore_status=True)
229 self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output)) 229 self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output))
230 lic_dir = get_bb_var('LICENSE_DIRECTORY') 230 lic_dir = get_bb_var('LICENSE_DIRECTORY')
231 self.assertFalse(os.path.isfile(os.path.join(lic_dir, 'selftest-ed/generic_GPLv3'))) 231 self.assertFalse(os.path.isfile(os.path.join(lic_dir, 'selftest-ed/generic_GPL-3.0-or-later')))
232 self.assertTrue(os.path.isfile(os.path.join(lic_dir, 'selftest-ed/generic_GPLv2'))) 232 self.assertTrue(os.path.isfile(os.path.join(lic_dir, 'selftest-ed/generic_GPL-2.0-or-later')))
233 233
234 def test_setscene_only(self): 234 def test_setscene_only(self):
235 """ Bitbake option to restore from sstate only within a build (i.e. execute no real tasks, only setscene)""" 235 """ Bitbake option to restore from sstate only within a build (i.e. execute no real tasks, only setscene)"""