mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-14 14:42:12 +00:00
10 lines
253 B
Python
10 lines
253 B
Python
|
|
import infra.basetest
|
||
|
|
|
||
|
|
|
||
|
|
class TestHostPythonXmodem(infra.basetest.BRHostPkgTest):
|
||
|
|
hostpkgs = ["host-python-xmodem"]
|
||
|
|
|
||
|
|
def test_run(self):
|
||
|
|
cmd = ["host/bin/python3", "-c", "import xmodem"]
|
||
|
|
infra.run_cmd_on_host(self.builddir, cmd)
|