]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest/devtool: Don't use removed remake as test case
authorJussi Kukkonen <jussi.kukkonen@intel.com>
Wed, 21 Jun 2017 16:18:26 +0000 (19:18 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 28 Jun 2017 14:51:55 +0000 (15:51 +0100)
remake was removed from oe-core: use another recipe in the devtool
extract test.

Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/selftest/cases/devtool.py

index a7fde201fbc1d64fe413b6fa08a5535fda2a2126..88d69724f934c0eec7a899d4dc71cf320621b383 100644 (file)
@@ -1094,8 +1094,7 @@ class DevtoolTests(DevtoolBase):
         tempdir = tempfile.mkdtemp(prefix='devtoolqa')
         # Try devtool extract
         self.track_for_cleanup(tempdir)
-        self.append_config('PREFERRED_PROVIDER_virtual/make = "remake"')
-        result = runCmd('devtool extract remake %s' % tempdir)
+        result = runCmd('devtool extract matchbox-terminal %s' % tempdir)
         self.assertExists(os.path.join(tempdir, 'Makefile.am'), 'Extracted source could not be found')
         # devtool extract shouldn't create the workspace
         self.assertNotExists(self.workspacedir)