From fbfdce7432f3db10b077c571df76845e6b954179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Wed, 8 Jan 2025 10:59:10 +0100 Subject: [PATCH] Fix execution of tests on riscv64 --- pkg/plugin/plugin_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/plugin/plugin_test.go b/pkg/plugin/plugin_test.go index b81797390..32a34c7e1 100644 --- a/pkg/plugin/plugin_test.go +++ b/pkg/plugin/plugin_test.go @@ -108,6 +108,8 @@ func TestPlatformPrepareCommand(t *testing.T) { osStrCmp = "linux-arm64" } else if os == "linux" && arch == "ppc64le" { osStrCmp = "linux-ppc64le" + } else if os == "linux" && arch == "riscv64" { + osStrCmp = "linux-riscv64" } else if os == "linux" && arch == "s390x" { osStrCmp = "linux-s390x" } else if os == "linux" && arch == "riscv64" {