From 66f99555ed29f8f615da85e61ea11d8ad7f159ef Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Fri, 16 Nov 2018 01:57:23 -0200 Subject: support/testing: add python-automat tests Use a minimal script to check the basic usage by creating and using a small state machine. Signed-off-by: Ricardo Martincoski Signed-off-by: Thomas Petazzoni --- .../testing/tests/package/test_python_automat.py | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 support/testing/tests/package/test_python_automat.py (limited to 'support/testing/tests/package/test_python_automat.py') diff --git a/support/testing/tests/package/test_python_automat.py b/support/testing/tests/package/test_python_automat.py new file mode 100644 index 0000000000..00a7ed6526 --- /dev/null +++ b/support/testing/tests/package/test_python_automat.py @@ -0,0 +1,23 @@ +from tests.package.test_python import TestPythonPackageBase + + +class TestPythonPy2Automat(TestPythonPackageBase): + __test__ = True + config = TestPythonPackageBase.config + \ + """ + BR2_PACKAGE_PYTHON=y + BR2_PACKAGE_PYTHON_AUTOMAT=y + """ + sample_scripts = ["tests/package/sample_python_automat.py"] + timeout = 30 + + +class TestPythonPy3Automat(TestPythonPackageBase): + __test__ = True + config = TestPythonPackageBase.config + \ + """ + BR2_PACKAGE_PYTHON3=y + BR2_PACKAGE_PYTHON_AUTOMAT=y + """ + sample_scripts = ["tests/package/sample_python_automat.py"] + timeout = 30 -- cgit v1.2.3