mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
There were missing test cases in Arm64 for platform-dependent kata-check and kata-env, leading to 'make test' failure under kata-containers/runtime Fixes: #403 Signed-off-by: Penny Zheng <penny.zheng@arm.com>
11 lines
197 B
Go
11 lines
197 B
Go
// Copyright (c) 2018 IBM
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
func getExpectedHostDetails(tmpdir string) (HostInfo, error) {
|
|
return genericGetExpectedHostDetails(tmpdir)
|
|
}
|