Fix execution of tests on riscv64

pull/13614/head
Dirk Müller 9 months ago
parent 301108edc7
commit fbfdce7432
No known key found for this signature in database

@ -108,6 +108,8 @@ func TestPlatformPrepareCommand(t *testing.T) {
osStrCmp = "linux-arm64" osStrCmp = "linux-arm64"
} else if os == "linux" && arch == "ppc64le" { } else if os == "linux" && arch == "ppc64le" {
osStrCmp = "linux-ppc64le" osStrCmp = "linux-ppc64le"
} else if os == "linux" && arch == "riscv64" {
osStrCmp = "linux-riscv64"
} else if os == "linux" && arch == "s390x" { } else if os == "linux" && arch == "s390x" {
osStrCmp = "linux-s390x" osStrCmp = "linux-s390x"
} else if os == "linux" && arch == "riscv64" { } else if os == "linux" && arch == "riscv64" {

Loading…
Cancel
Save