From 1c7d6584a7811b7785ae5c1e378f14b5ba0971cf Mon Sep 17 00:00:00 2001 From: takeshi_hoshina Date: Mon, 2 Nov 2020 11:07:33 +0900 Subject: basesystem-jj recipes --- .../meta-python2/lib/oeqa/runtime/cases/python2.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 external/meta-python2/lib/oeqa/runtime/cases/python2.py (limited to 'external/meta-python2/lib/oeqa/runtime/cases/python2.py') diff --git a/external/meta-python2/lib/oeqa/runtime/cases/python2.py b/external/meta-python2/lib/oeqa/runtime/cases/python2.py new file mode 100644 index 00000000..8afa2ac9 --- /dev/null +++ b/external/meta-python2/lib/oeqa/runtime/cases/python2.py @@ -0,0 +1,20 @@ +# +# SPDX-License-Identifier: MIT +# + +from oeqa.runtime.case import OERuntimeTestCase +from oeqa.core.decorator.depends import OETestDepends +from oeqa.runtime.decorator.package import OEHasPackage + + +class PythonTest(OERuntimeTestCase): + @OETestDepends(['ssh.SSHTest.test_ssh']) + @OEHasPackage(['python-core']) + def test_python(self): + cmd = "python -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" + status, output = self.target.run(cmd) + msg = 'Exit status was not 0. Output: %s' % output + self.assertEqual(status, 0, msg=msg) + + msg = 'Incorrect output: %s' % output + self.assertEqual(output, "Hello, world", msg=msg) -- cgit 1.2.3-korg