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-09 19:48:02 +0100 | 
| commit | d307950f4938ea2f9d480d4f4cd184b76e33df0b (patch) | |
| tree | 1a617b67e2e03c4654627cf28485a99b5448bc58 /meta/lib | |
| parent | 7381c10f2260181eccd3abddf5d0289c969863cb (diff) | |
| download | openembedded-core-d307950f4938ea2f9d480d4f4cd184b76e33df0b.tar.gz openembedded-core-d307950f4938ea2f9d480d4f4cd184b76e33df0b.tar.bz2 openembedded-core-d307950f4938ea2f9d480d4f4cd184b76e33df0b.zip | |
oeqa/runtime/smart: Added new decorators for existing automated tests.
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
| -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):      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') | 
