diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/cases/python.py')
-rw-r--r-- | meta/lib/oeqa/sdk/cases/python.py | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/meta/lib/oeqa/sdk/cases/python.py b/meta/lib/oeqa/sdk/cases/python.py index a334abce5f..b990cd889a 100644 --- a/meta/lib/oeqa/sdk/cases/python.py +++ b/meta/lib/oeqa/sdk/cases/python.py | |||
@@ -1,29 +1,17 @@ | |||
1 | # | 1 | # |
2 | # Copyright OpenEmbedded Contributors | ||
3 | # | ||
2 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
3 | # | 5 | # |
4 | 6 | ||
5 | import subprocess, unittest | ||
6 | from oeqa.sdk.case import OESDKTestCase | 7 | from oeqa.sdk.case import OESDKTestCase |
7 | 8 | ||
8 | from oeqa.utils.subprocesstweak import errors_have_output | 9 | from oeqa.utils.subprocesstweak import errors_have_output |
9 | errors_have_output() | 10 | errors_have_output() |
10 | 11 | ||
11 | class Python2Test(OESDKTestCase): | ||
12 | def setUp(self): | ||
13 | if not (self.tc.hasHostPackage("nativesdk-python-core") or | ||
14 | self.tc.hasHostPackage("python-core-native")): | ||
15 | raise unittest.SkipTest("No python package in the SDK") | ||
16 | |||
17 | def test_python2(self): | ||
18 | cmd = "python -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" | ||
19 | output = self._run(cmd) | ||
20 | self.assertEqual(output, "Hello, world\n") | ||
21 | |||
22 | class Python3Test(OESDKTestCase): | 12 | class Python3Test(OESDKTestCase): |
23 | def setUp(self): | 13 | def setUp(self): |
24 | if not (self.tc.hasHostPackage("nativesdk-python3-core") or | 14 | self.ensure_host_package("python3-core", recipe="python3") |
25 | self.tc.hasHostPackage("python3-core-native")): | ||
26 | raise unittest.SkipTest("No python3 package in the SDK") | ||
27 | 15 | ||
28 | def test_python3(self): | 16 | def test_python3(self): |
29 | cmd = "python3 -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" | 17 | cmd = "python3 -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" |