Searched refs:testrecipe (Results 1 – 3 of 3) sorted by relevance
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | tinfoil.py | 44 testrecipe = 'mdadm' 45 best = tinfoil.find_best_provider(testrecipe) 47 self.fail('Unable to find recipe providing %s' % testrecipe) 49 self.assertEqual(testrecipe, rd.getVar('PN')) 54 testrecipe = 'nativesdk-gcc' 55 best = tinfoil.find_best_provider(testrecipe) 57 self.fail('Unable to find recipe providing %s' % testrecipe) 59 self.assertEqual(testrecipe, rd.getVar('PN')) 65 testrecipe = 'mdadm' 66 best = tinfoil.find_best_provider(testrecipe) [all …]
|
| H A D | devtool.py | 188 def _check_bbappend(self, testrecipe, recipefile, appenddir): argument 202 …cipe is being bbappended by another layer - bbappends found:\n %s' % (testrecipe, '\n '.join(bba… 208 … self.fail('bbappend for recipe %s does not seem to be created in test layer' % testrecipe) 550 testrecipe = 'python-markupsafe' 551 srcdir = os.path.join(tempdir, testrecipe) 554 self.add_command_to_tearDown('bitbake -c cleansstate %s' % testrecipe) 556 result = runCmd('devtool add --no-pypi %s %s -f %s' % (testrecipe, srcdir, url)) 562 self.assertIn(testrecipe, result.output) 565 recipefile = get_bb_var('FILE', testrecipe) 566 … self.assertIn('%s_%s.bb' % (testrecipe, testver), recipefile, 'Recipe file incorrectly named') [all …]
|
| H A D | recipetool.py | 58 def _try_recipetool_appendcmd(self, cmd, testrecipe, expectedfiles, expectedlines=None): argument 63 recipefile = get_bb_var('FILE', testrecipe) 64 bbappendfile = self._check_bbappend(testrecipe, recipefile, self.templayerdir) 72 filesdir = os.path.join(os.path.dirname(bbappendfile), testrecipe) 97 …def _try_recipetool_appendfile(self, testrecipe, destfile, newfile, options, expectedlines, expect… argument 99 return self._try_recipetool_appendcmd(cmd, testrecipe, expectedfiles, expectedlines) 1008 …def _try_recipetool_appendsrcfile(self, testrecipe, newfile, destfile, options, expectedlines, exp… argument 1009 …cmd = 'recipetool appendsrcfile %s %s %s %s %s' % (options, self.templayerdir, testrecipe, newfile… 1010 return self._try_recipetool_appendcmd(cmd, testrecipe, expectedfiles, expectedlines) 1012 …def _try_recipetool_appendsrcfiles(self, testrecipe, newfiles, expectedlines=None, expectedfiles=N… argument [all …]
|