diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-02-19 16:39:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-23 08:08:19 +0000 |
commit | 664d1a7fe8f8288fabc582d00f6e36ab29496ec5 (patch) | |
tree | 6c9db7865aeef8275511509a1a4021cd3341b0f1 /meta/lib/oeqa | |
parent | cf094ed2f616a581eb07d78db4366c83a441fde5 (diff) | |
download | openembedded-core-664d1a7fe8f8288fabc582d00f6e36ab29496ec5.tar.gz openembedded-core-664d1a7fe8f8288fabc582d00f6e36ab29496ec5.tar.bz2 openembedded-core-664d1a7fe8f8288fabc582d00f6e36ab29496ec5.zip |
devtool: reset: run bitbake -c clean on recipe
If you've added a new recipe, you want the output cleaned when you do
devtool reset, otherwise cruft from building the recipe may remain which
could interfere with future builds.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index 74fb325803..33f2e91607 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py @@ -179,9 +179,13 @@ class DevtoolTests(oeSelfTest): if line.startswith('.TH'): self.assertEqual(line.rstrip(), '.TH MDADM 8 "" v9.999-custom', 'man file not modified') # Test devtool reset + stampprefix = get_bb_var('STAMP', 'mdadm') result = runCmd('devtool reset mdadm') result = runCmd('devtool status') self.assertNotIn('mdadm', result.output) + self.assertTrue(stampprefix, 'Unable to get STAMP value for recipe mdadm') + matches = glob.glob(stampprefix + '*') + self.assertFalse(matches, 'Stamp files exist for recipe mdadm that should have been cleaned') def test_devtool_update_recipe(self): # Check preconditions |