From d25f18a3c3bc984df529cf2b264be2fe30b51257 Mon Sep 17 00:00:00 2001 From: Xukai Wang Date: Fri, 13 Feb 2026 03:03:47 +0800 Subject: [PATCH] support/testing: add python-cloudpickle tests Add a basic runtime test for the python-cloudpickle package. This test verifies the fundamental serialization capabilities of the library by: - Importing `cloudpickle`. - Defining a simple Python function (fibonacci). - Using `cloudpickle.dumps()` to serialize this function. Signed-off-by: Xukai Wang [Julien: fix flake8 warnings to fix check-package errors] Signed-off-by: Julien Olivain --- DEVELOPERS | 2 ++ .../tests/package/sample_python_cloudpickle.py | 8 ++++++++ .../testing/tests/package/test_python_cloudpickle.py | 12 ++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 support/testing/tests/package/sample_python_cloudpickle.py create mode 100644 support/testing/tests/package/test_python_cloudpickle.py diff --git a/DEVELOPERS b/DEVELOPERS index b2d3305db6..767de9b964 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -3483,6 +3483,8 @@ N: Xukai Wang F: package/python-cloudpickle/ F: package/python-farama-notifications/ F: package/python-gymnasium/ +F: support/testing/tests/package/sample_python_cloudpickle.py +F: support/testing/tests/package/test_python_cloudpickle.py N: Yair Ben Avraham F: package/casync/ diff --git a/support/testing/tests/package/sample_python_cloudpickle.py b/support/testing/tests/package/sample_python_cloudpickle.py new file mode 100644 index 0000000000..c17a73a415 --- /dev/null +++ b/support/testing/tests/package/sample_python_cloudpickle.py @@ -0,0 +1,8 @@ +import cloudpickle + + +def fibonacci(n): + return n if n < 2 else fibonacci(n-1) + fibonacci(n-2) + + +serialized = cloudpickle.dumps(fibonacci) diff --git a/support/testing/tests/package/test_python_cloudpickle.py b/support/testing/tests/package/test_python_cloudpickle.py new file mode 100644 index 0000000000..b28080f02e --- /dev/null +++ b/support/testing/tests/package/test_python_cloudpickle.py @@ -0,0 +1,12 @@ +from tests.package.test_python import TestPythonPackageBase + + +class TestPythonPy3Cloudpickle(TestPythonPackageBase): + __test__ = True + config = TestPythonPackageBase.config + \ + """ + BR2_PACKAGE_PYTHON3=y + BR2_PACKAGE_PYTHON_CLOUDPICKLE=y + """ + sample_scripts = ["tests/package/sample_python_cloudpickle.py"] + timeout = 20