]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest: Added a testcase to verify INCOMPATIBLE_LICENSE option.
authorLucian Musat <george.l.musat@intel.com>
Tue, 3 Mar 2015 10:31:12 +0000 (12:31 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 9 Mar 2015 16:00:20 +0000 (16:00 +0000)
Fixes bug 6933

Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/selftest/bbtests.py

index 5708d3dc9b6b58c36d26664b314dd8fc14c512a6..aeccbf55a6315613d9574e99d35a48e182791aa5 100644 (file)
@@ -177,3 +177,14 @@ class BitbakeTests(oeSelfTest):
        manver = re.search("NOTE: recipe xcursor-transparent-theme-(.*?): task do_unpack: Started", result.output)
        continuepos = result.output.find('NOTE: recipe xcursor-transparent-theme-%s: task do_unpack: Started' % manver.group(1))
        self.assertLess(errorpos,continuepos)
+
+    @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)
+        result = bitbake('readline', ignore_status=True)
+        self.assertEqual(result.status, 0)
+        self.assertFalse(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv3')))
+        self.assertTrue(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv2')))
+        ftools.remove_from_file(conf ,data)
\ No newline at end of file