mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-19 22:03:45 -09:00
This commit adds a new host only package for the crccheck Python module, which is a dependency of Snagboot. Homepage on PyPi: https://pypi.org/project/crccheck/ This commit also adds a very basic test case that allows to verify that the Python module can be imported and that some minimal functionality works. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
11 lines
380 B
Python
11 lines
380 B
Python
import infra.basetest
|
|
|
|
|
|
class TestHostPythonCrccheck(infra.basetest.BRHostPkgTest):
|
|
hostpkgs = ["host-python-crccheck"]
|
|
|
|
def test_run(self):
|
|
cmd = ["host/bin/python3", "-c", "import crccheck; print(crccheck.crc.Crc32.calc(bytearray.fromhex('DEADBEEF')))"]
|
|
res = infra.run_cmd_on_host(self.builddir, cmd)
|
|
self.assertEqual(res.strip(), "2090640218")
|