mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
support/testing: add tests for Go providers
Test the source provider of host-go to build a Go package. The tests consist of building and installing a Go package in the root file system of an ARM vexpress QEMU system. Signed-off-by: Thomas Perale <thomas.perale@mind.be> [yann.morin.1998@free.fr: drop the go-bin test-case] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
committed by
Yann E. MORIN
parent
fa2536ec94
commit
9cf5c95e38
27
support/testing/tests/package/test_go.py
Normal file
27
support/testing/tests/package/test_go.py
Normal file
@@ -0,0 +1,27 @@
|
||||
import os
|
||||
|
||||
import infra.basetest
|
||||
|
||||
|
||||
class TestGoBase(infra.basetest.BRTest):
|
||||
|
||||
def login(self):
|
||||
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
|
||||
self.emulator.boot(arch="armv5",
|
||||
kernel="builtin",
|
||||
options=["-initrd", cpio_file])
|
||||
self.emulator.login()
|
||||
|
||||
|
||||
class TestGoSource(TestGoBase):
|
||||
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
||||
"""
|
||||
BR2_TARGET_ROOTFS_CPIO=y
|
||||
BR2_PACKAGE_HOST_GO=y
|
||||
BR2_PACKAGE_HOST_GO_SRC=y
|
||||
BR2_PACKAGE_TINIFIER=y
|
||||
"""
|
||||
|
||||
def test_run(self):
|
||||
self.login()
|
||||
self.assertRunOk("tinifier -h")
|
||||
Reference in New Issue
Block a user