summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/wic.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-06-16 14:19:49 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-23 11:47:34 +0100
commit40764a309d7f20421ca199e2283070bb561bf8c3 (patch)
treea5e120c7736c7de279ff2f4dae5c5bb52e4c0d65 /meta/lib/oeqa/selftest/wic.py
parent5daadf85eddf6c5898fe2b9a9ef7b1e9ed434d84 (diff)
downloadpoky-40764a309d7f20421ca199e2283070bb561bf8c3.tar.gz
wic: Return error code when wic fails to invoke command
Return 1 if command doesn't exist or wic is called without any commmand. Return result of invoke_command as wic return code. Added tests for unsupported command and no command. Fixed typo in test case test02_createhelp spotted by this fix. [YOCTO #7856] (From OE-Core rev: ebd9f7b1da8ed556e98aab4d5f4e81707ac44b27) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/wic.py')
-rw-r--r--meta/lib/oeqa/selftest/wic.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py
index 60c8cb3deb..5fa190db06 100644
--- a/meta/lib/oeqa/selftest/wic.py
+++ b/meta/lib/oeqa/selftest/wic.py
@@ -52,7 +52,7 @@ class Wic(oeSelfTest):
52 52
53 def test02_createhelp(self): 53 def test02_createhelp(self):
54 """Test wic create --help""" 54 """Test wic create --help"""
55 self.assertEqual(0, runCmd('wic creat --help').status) 55 self.assertEqual(0, runCmd('wic create --help').status)
56 56
57 def test03_listhelp(self): 57 def test03_listhelp(self):
58 """Test wic list --help""" 58 """Test wic list --help"""
@@ -82,3 +82,12 @@ class Wic(oeSelfTest):
82 self.assertEqual(0, runCmd("wic create directdisk-gpt " 82 self.assertEqual(0, runCmd("wic create directdisk-gpt "
83 "--image-name core-image-minimal").status) 83 "--image-name core-image-minimal").status)
84 self.assertEqual(1, len(glob(self.resultdir + "directdisk-*.direct"))) 84 self.assertEqual(1, len(glob(self.resultdir + "directdisk-*.direct")))
85
86 def test07_unsupported_subcommand(self):
87 """Test unsupported subcommand"""
88 self.assertEqual(1, runCmd('wic unsupported',
89 ignore_status=True).status)
90
91 def test08_no_command(self):
92 """Test wic without command"""
93 self.assertEqual(1, runCmd('wic', ignore_status=True).status)