mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
package/python-crccheck: new package
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>
This commit is contained in:
committed by
Julien Olivain
parent
9468f1c099
commit
d03cfe515b
10
support/testing/tests/package/test_python_crccheck.py
Normal file
10
support/testing/tests/package/test_python_crccheck.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user