diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2017-10-23 17:34:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-05 22:33:24 +0000 |
commit | ab12832807985009d11ef0cdc7e90cf9d736a66f (patch) | |
tree | 5efaa098887f660f3e476c0b1ff2696e26aef6a6 /meta-yocto-bsp/lib/oeqa | |
parent | 95d4f4ec1e512d612242695542f04cbd472f3463 (diff) | |
download | poky-ab12832807985009d11ef0cdc7e90cf9d736a66f.tar.gz |
meta-yocto-bsp/lib/oeqa: remove yoctobsp selftest
The yocto-bsp script has been removed, thus there's no need for this test
for the script.
(From meta-yocto rev: 280130bb02b550e882eb203328689b1526fa462c)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/lib/oeqa')
-rw-r--r-- | meta-yocto-bsp/lib/oeqa/yoctobsp.py | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/meta-yocto-bsp/lib/oeqa/yoctobsp.py b/meta-yocto-bsp/lib/oeqa/yoctobsp.py deleted file mode 100644 index 4c539a1f3f..0000000000 --- a/meta-yocto-bsp/lib/oeqa/yoctobsp.py +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | import unittest | ||
2 | import os | ||
3 | import logging | ||
4 | import tempfile | ||
5 | import shutil | ||
6 | |||
7 | from oeqa.selftest.base import oeSelfTest | ||
8 | from oeqa.utils.commands import runCmd | ||
9 | from oeqa.utils.decorators import skipUnlessPassed | ||
10 | |||
11 | class YoctoBSP(oeSelfTest): | ||
12 | |||
13 | @classmethod | ||
14 | def setUpClass(self): | ||
15 | result = runCmd("yocto-bsp list karch") | ||
16 | self.karchs = [karch.lstrip() for karch in result.output.splitlines()][1:] | ||
17 | |||
18 | def test_yoctobsp_listproperties(self): | ||
19 | for karch in self.karchs: | ||
20 | result = runCmd("yocto-bsp list %s properties" % karch) | ||
21 | self.assertEqual(0, result.status, msg="Properties from %s architecture could not be listed" % karch) | ||
22 | |||
23 | def test_yoctobsp_create(self): | ||
24 | # Generate a temporal file and folders for each karch | ||
25 | json = "{\"use_default_kernel\":\"yes\"}\n" | ||
26 | fd = tempfile.NamedTemporaryFile(delete=False) | ||
27 | fd.write(json) | ||
28 | fd.close() | ||
29 | tmpfolders = dict([(karch, tempfile.mkdtemp()) for karch in self.karchs]) | ||
30 | # Create BSP | ||
31 | for karch in self.karchs: | ||
32 | result = runCmd("yocto-bsp create test %s -o %s -i %s" % (karch, "%s/unitest" % tmpfolders[karch], fd.name)) | ||
33 | self.assertEqual(0, result.status, msg="Could not create a BSP with architecture %s using %s " % (karch, fd.name)) | ||
34 | # Remove tmp file/folders | ||
35 | os.unlink(fd.name) | ||
36 | self.assertFalse(os.path.exists(fd.name), msg = "Temporal file %s could not be removed" % fd.name) | ||
37 | for tree in tmpfolders.values(): | ||
38 | shutil.rmtree(tree) | ||
39 | self.assertFalse(os.path.exists(tree), msg = "Temporal folder %s could not be removed" % tree) | ||