diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2017-06-21 19:18:26 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 15:52:17 +0100 |
commit | ad0d9ce3c6993288194bd06d8f3563cd09490389 (patch) | |
tree | 7de33ce02dcae8a307b0569f2d18448c0086d027 /meta/lib/oeqa/selftest/cases/devtool.py | |
parent | 51c8ac2d6ae20ce605d863244739c87ef60110ec (diff) | |
download | poky-ad0d9ce3c6993288194bd06d8f3563cd09490389.tar.gz |
selftest/devtool: Don't use removed remake as test case
remake was removed from oe-core: use another recipe in the devtool
extract test.
(From OE-Core rev: dbf680ce09ce54f97c781fc7a8e5e05ed4706073)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/devtool.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/devtool.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py index a7fde201fb..88d69724f9 100644 --- a/meta/lib/oeqa/selftest/cases/devtool.py +++ b/meta/lib/oeqa/selftest/cases/devtool.py | |||
@@ -1094,8 +1094,7 @@ class DevtoolTests(DevtoolBase): | |||
1094 | tempdir = tempfile.mkdtemp(prefix='devtoolqa') | 1094 | tempdir = tempfile.mkdtemp(prefix='devtoolqa') |
1095 | # Try devtool extract | 1095 | # Try devtool extract |
1096 | self.track_for_cleanup(tempdir) | 1096 | self.track_for_cleanup(tempdir) |
1097 | self.append_config('PREFERRED_PROVIDER_virtual/make = "remake"') | 1097 | result = runCmd('devtool extract matchbox-terminal %s' % tempdir) |
1098 | result = runCmd('devtool extract remake %s' % tempdir) | ||
1099 | self.assertExists(os.path.join(tempdir, 'Makefile.am'), 'Extracted source could not be found') | 1098 | self.assertExists(os.path.join(tempdir, 'Makefile.am'), 'Extracted source could not be found') |
1100 | # devtool extract shouldn't create the workspace | 1099 | # devtool extract shouldn't create the workspace |
1101 | self.assertNotExists(self.workspacedir) | 1100 | self.assertNotExists(self.workspacedir) |