mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 14:32:10 +00:00
Update buildroot to 2024.02.2, kernel to 6.6.2, GPU & DRM drivers, nwipe to v0.37 plus many others.
This commit is contained in:
22
support/testing/tests/package/test_python_uvloop.py
Normal file
22
support/testing/tests/package/test_python_uvloop.py
Normal 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!")
|
||||
Reference in New Issue
Block a user