mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
support/testing: add tests for Go providers
Test the go-bin 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. The tests pass if the program runs on the target. Signed-off-by: Thomas Perale <thomas.perale@mind.be> [yann.morin.1998@free.fr: use to flannel, which can be vendored today] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
committed by
Yann E. MORIN
parent
7b2a164b74
commit
7ec0e1c2b6
@@ -13,6 +13,20 @@ class TestGoBase(infra.basetest.BRTest):
|
||||
self.emulator.login()
|
||||
|
||||
|
||||
class TestGoBin(TestGoBase):
|
||||
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
||||
"""
|
||||
BR2_TARGET_ROOTFS_CPIO=y
|
||||
BR2_PACKAGE_HOST_GO=y
|
||||
BR2_PACKAGE_HOST_GO_BIN=y
|
||||
BR2_PACKAGE_FLANNEL=y
|
||||
"""
|
||||
|
||||
def test_run(self):
|
||||
self.login()
|
||||
self.assertRunOk("/opt/bin/flanneld -h")
|
||||
|
||||
|
||||
class TestGoSource(TestGoBase):
|
||||
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user