support/testing: add python-uvloop runtime test

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Marcus Hoffmann 2024-02-05 22:47:17 +01:00 committed by Yann E. MORIN
parent ef199d3629
commit 8a232ee101
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import uvloop
async def main():
print("Hello world!")
uvloop.run(main())

View File

@ -0,0 +1,22 @@
import os
from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Uvloop(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_UVLOOP=y
"""
sample_scripts = ["tests/package/sample_python_uvloop.py"]
def test_run(self):
self.login()
self.check_sample_scripts_exist()
cmd = "%s %s" % (self.interpreter, os.path.basename(self.sample_scripts[0]))
output, exit_code = self.emulator.run(cmd)
self.assertEqual(exit_code, 0)
self.assertEqual(output[0], "Hello world!")