support/testing: add test for python-pyalsa

This is a simple test importing pyalsa, showing alsa library version and
attempting to list cards.

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Julien Olivain
2022-07-27 22:23:07 +02:00
committed by Thomas Petazzoni
parent 64f1603bb8
commit 8c074e73b0
3 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3PyAlsa(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_PYALSA=y
"""
sample_scripts = ["tests/package/sample_python_pyalsa.py"]