diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-02-20 17:44:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-21 22:04:26 +0000 |
commit | ab2efd82b2c3419e0139b91c79a9993b257970c9 (patch) | |
tree | f28d7944bd17611d58244bb4ef9d8bca0fefb1ad /meta/lib | |
parent | 5d7bc14d22da87837741fefae5924571fdff750d (diff) | |
download | openembedded-core-ab2efd82b2c3419e0139b91c79a9993b257970c9.tar.gz openembedded-core-ab2efd82b2c3419e0139b91c79a9993b257970c9.tar.bz2 openembedded-core-ab2efd82b2c3419e0139b91c79a9993b257970c9.zip |
lib/oeqa/selftest/bblayers: use dashed subcommands
bitbake-layers subcommands with underscores are the old syntax; the
dashed form has been supported (and displayed in the help text) for
quite a while now, and the old syntax is about to be unsupported, so use
the dashed form in the tests.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/bblayers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/bblayers.py b/meta/lib/oeqa/selftest/bblayers.py index 1ead8e8671..449c17ea37 100644 --- a/meta/lib/oeqa/selftest/bblayers.py +++ b/meta/lib/oeqa/selftest/bblayers.py @@ -18,17 +18,17 @@ class BitbakeLayers(oeSelfTest): @testcase(83) def test_bitbakelayers_showlayers(self): - result = runCmd('bitbake-layers show_layers') + result = runCmd('bitbake-layers show-layers') self.assertTrue('meta-selftest' in result.output) @testcase(93) def test_bitbakelayers_showappends(self): - result = runCmd('bitbake-layers show_appends') + result = runCmd('bitbake-layers show-appends') self.assertTrue('xcursor-transparent-theme_0.1.1.bbappend' in result.output, msg='xcursor-transparent-theme_0.1.1.bbappend file was not recognised') @testcase(90) def test_bitbakelayers_showoverlayed(self): - result = runCmd('bitbake-layers show_overlayed') + result = runCmd('bitbake-layers show-overlayed') self.assertTrue('aspell' in result.output, msg='xcursor-transparent-theme_0.1.1.bbappend file was not recognised') @testcase(95) |