From: Lucian Musat Date: Thu, 9 Apr 2015 08:01:51 +0000 (+0300) Subject: oeqa/runtime/smart: Added new decorators for existing automated tests. X-Git-Tag: 2015-10~2249 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d307950f4938ea2f9d480d4f4cd184b76e33df0b;p=openembedded-core.git oeqa/runtime/smart: Added new decorators for existing automated tests. Signed-off-by: Lucian Musat Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/runtime/smart.py b/meta/lib/oeqa/runtime/smart.py index dba3bd60d7..e978227139 100644 --- a/meta/lib/oeqa/runtime/smart.py +++ b/meta/lib/oeqa/runtime/smart.py @@ -30,6 +30,7 @@ class SmartBasicTest(SmartTest): def test_smart_help(self): self.smart('--help') + @testcase(968) def test_smart_version(self): self.smart('--version') @@ -77,12 +78,15 @@ class SmartRepoTest(SmartTest): self.repolist.append(arch) self.smart('update') + @testcase(969) def test_smart_channel_help(self): self.smart('channel --help') + @testcase(970) def test_smart_channel_list(self): self.smart('channel --list') + @testcase(971) def test_smart_channel_show(self): self.smart('channel --show')