diff options
author | Jair Gonzalez <jair.de.jesus.gonzalez.plascencia@linux.intel.com> | 2016-12-16 12:13:05 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-22 08:50:17 +0000 |
commit | c48c0f38b1726378d6761225ab0a4ceca7492588 (patch) | |
tree | 254b6e9edbcf7fcc159da5b69844c3afd2ee2063 /meta | |
parent | de807c78203aa6714987261f4d18e16de926dbcb (diff) | |
download | poky-c48c0f38b1726378d6761225ab0a4ceca7492588.tar.gz |
selftest/wic: adding Testopia ID numbers to test cases missing it
The following test cases were assigned an ID number on Testopia:
1496 Test generation of .bmap file
1560 Test creation of systemd-bootdisk image
1561 Test creation of sdimage-bootpart image
(From OE-Core rev: b53e432206eaba7c6c67e4689c25b5e62d7ee9b2)
Signed-off-by: Jair Gonzalez <jair.de.jesus.gonzalez.plascencia@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index e652fad24a..8c7aefa19c 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -278,6 +278,7 @@ class Wic(oeSelfTest): | |||
278 | self.assertEqual(1, status, 'Failed to run command "%s": %s' % (command, output)) | 278 | self.assertEqual(1, status, 'Failed to run command "%s": %s' % (command, output)) |
279 | self.assertEqual(output, '/dev/root /\r\n/dev/vda3 /mnt') | 279 | self.assertEqual(output, '/dev/root /\r\n/dev/vda3 /mnt') |
280 | 280 | ||
281 | @testcase(1496) | ||
281 | def test_bmap(self): | 282 | def test_bmap(self): |
282 | """Test generation of .bmap file""" | 283 | """Test generation of .bmap file""" |
283 | image = "directdisk" | 284 | image = "directdisk" |
@@ -286,6 +287,7 @@ class Wic(oeSelfTest): | |||
286 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct" % image))) | 287 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct" % image))) |
287 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct.bmap" % image))) | 288 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct.bmap" % image))) |
288 | 289 | ||
290 | @testcase(1560) | ||
289 | def test_systemd_bootdisk(self): | 291 | def test_systemd_bootdisk(self): |
290 | """Test creation of systemd-bootdisk image""" | 292 | """Test creation of systemd-bootdisk image""" |
291 | image = "systemd-bootdisk" | 293 | image = "systemd-bootdisk" |
@@ -293,6 +295,7 @@ class Wic(oeSelfTest): | |||
293 | % image).status) | 295 | % image).status) |
294 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct" % image))) | 296 | self.assertEqual(1, len(glob(self.resultdir + "%s-*direct" % image))) |
295 | 297 | ||
298 | @testcase(1561) | ||
296 | def test_sdimage_bootpart(self): | 299 | def test_sdimage_bootpart(self): |
297 | """Test creation of sdimage-bootpart image""" | 300 | """Test creation of sdimage-bootpart image""" |
298 | image = "sdimage-bootpart" | 301 | image = "sdimage-bootpart" |