浏览代码

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>
Thomas Perale 10 月之前
父节点
当前提交
7ec0e1c2b6
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      support/testing/tests/package/test_go.py

+ 14 - 0
support/testing/tests/package/test_go.py

@@ -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 + \
         """