[oe-commits] [openembedded-core] 09/102: oe-selftest: devtool: fix test after recent change

git at git.openembedded.org git at git.openembedded.org
Tue Aug 30 22:57:39 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 174495f3df400bd5e5fd6422b8754ee812c15586
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Mon Aug 29 19:27:59 2016 +1200

    oe-selftest: devtool: fix test after recent change
    
    OE-Core commit d3057cba0b01484712fcee3c52373c143608a436 fixed handling
    of wildcard bbappends, which means that this test's expectations about
    the bbappend file name are no longer met. devtool finish is meant to use
    wildcard bbappends so fix the test accordingly.
    
    Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/selftest/devtool.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index 08fe8df..e992dcf 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -1331,7 +1331,9 @@ class DevtoolTests(DevtoolBase):
         result = runCmd('git status --porcelain .', cwd=recipedir)
         if result.output.strip():
             self.fail('Recipe directory for %s contains the following unexpected changes after finish:\n%s' % (recipe, result.output.strip()))
-        appendfile = os.path.join(appenddir, os.path.splitext(os.path.basename(oldrecipefile))[0] + '.bbappend')
+        recipefn = os.path.splitext(os.path.basename(oldrecipefile))[0]
+        recipefn = recipefn.split('_')[0] + '_%'
+        appendfile = os.path.join(appenddir, recipefn + '.bbappend')
         self.assertTrue(os.path.exists(appendfile), 'bbappend %s should have been created but wasn\'t' % appendfile)
         newdir = os.path.join(appenddir, recipe)
         files = os.listdir(newdir)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list