diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-04-09 11:01:51 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-10 18:10:25 +0100 |
commit | 39d5666da4ee110c0856c9c876b2e63cff7efa37 (patch) | |
tree | 0102d30d11c6ecc5f0280636c81995a900133519 /meta/lib/oeqa/runtime | |
parent | e58e983076a3a9e8f3daf1d97da024b6de43baf5 (diff) | |
download | poky-39d5666da4ee110c0856c9c876b2e63cff7efa37.tar.gz |
oeqa/runtime/smart: Added new decorators for existing automated tests.
(From OE-Core rev: d307950f4938ea2f9d480d4f4cd184b76e33df0b)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/smart.py | 4 |
1 files changed, 4 insertions, 0 deletions
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): | |||
30 | def test_smart_help(self): | 30 | def test_smart_help(self): |
31 | self.smart('--help') | 31 | self.smart('--help') |
32 | 32 | ||
33 | @testcase(968) | ||
33 | def test_smart_version(self): | 34 | def test_smart_version(self): |
34 | self.smart('--version') | 35 | self.smart('--version') |
35 | 36 | ||
@@ -77,12 +78,15 @@ class SmartRepoTest(SmartTest): | |||
77 | self.repolist.append(arch) | 78 | self.repolist.append(arch) |
78 | self.smart('update') | 79 | self.smart('update') |
79 | 80 | ||
81 | @testcase(969) | ||
80 | def test_smart_channel_help(self): | 82 | def test_smart_channel_help(self): |
81 | self.smart('channel --help') | 83 | self.smart('channel --help') |
82 | 84 | ||
85 | @testcase(970) | ||
83 | def test_smart_channel_list(self): | 86 | def test_smart_channel_list(self): |
84 | self.smart('channel --list') | 87 | self.smart('channel --list') |
85 | 88 | ||
89 | @testcase(971) | ||
86 | def test_smart_channel_show(self): | 90 | def test_smart_channel_show(self): |
87 | self.smart('channel --show') | 91 | self.smart('channel --show') |
88 | 92 | ||