diff --git a/src/runtime/cmd/kata-runtime/kata-env_riscv64_test.go b/src/runtime/cmd/kata-runtime/kata-env_riscv64_test.go new file mode 100644 index 0000000000..5b8acaf794 --- /dev/null +++ b/src/runtime/cmd/kata-runtime/kata-env_riscv64_test.go @@ -0,0 +1,13 @@ +// Copyright (c) 2025 Institute of Software, CAS. +// +// SPDX-License-Identifier: Apache-2.0 +// + +package main + +func getExpectedHostDetails(tmpdir string) (HostInfo, error) { + expectedVendor := "0x0" + expectedModel := "0x0" + expectedVMContainerCapable := true + return genericGetExpectedHostDetails(tmpdir, expectedVendor, expectedModel, expectedVMContainerCapable) +}