From 8931e9f5344ad050d998fecd841b0d43bba78c55 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 15 Sep 2024 12:52:02 +0200 Subject: [PATCH] support/testing: switch go-src to use flannel The test currently uses tinifier, but it can't be vendored as of today, so switch to use flannel which can (still?) be... Signed-off-by: Yann E. MORIN --- support/testing/tests/package/test_go.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/testing/tests/package/test_go.py b/support/testing/tests/package/test_go.py index 0b25fbc26d..a657a435f9 100644 --- a/support/testing/tests/package/test_go.py +++ b/support/testing/tests/package/test_go.py @@ -19,9 +19,9 @@ class TestGoSource(TestGoBase): BR2_TARGET_ROOTFS_CPIO=y BR2_PACKAGE_HOST_GO=y BR2_PACKAGE_HOST_GO_SRC=y - BR2_PACKAGE_TINIFIER=y + BR2_PACKAGE_FLANNEL=y """ def test_run(self): self.login() - self.assertRunOk("tinifier -h") + self.assertRunOk("/opt/bin/flanneld -h")