650e9903a9
The new builtin armv5 kernel 4.19 uses VirtIORNG to provide entropy, so we no longer need haveged. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/264508536 https://gitlab.com/buildroot.org/buildroot/-/jobs/264508537 https://gitlab.com/buildroot.org/buildroot/-/jobs/264508542 https://gitlab.com/buildroot.org/buildroot/-/jobs/264508543 Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> [Peter: reword] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
13 lines
354 B
Python
13 lines
354 B
Python
from tests.package.test_python import TestPythonPackageBase
|
|
|
|
|
|
class TestPythonPy3Crossbar(TestPythonPackageBase):
|
|
__test__ = True
|
|
config = TestPythonPackageBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PYTHON3=y
|
|
BR2_PACKAGE_PYTHON_CROSSBAR=y
|
|
"""
|
|
sample_scripts = ["tests/package/sample_python_crossbar.py"]
|
|
timeout = 60
|