mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-06 16:04:26 +01:00
arch/arm64: Fix ARM64 build
Fix ARM64 build which silently broken (as we still don't have an ARM CI). Fixes #349. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
@@ -229,10 +229,23 @@ func TestCheckGetCPUFlags(t *testing.T) {
|
||||
{"foo", ""},
|
||||
{"foo bar", ""},
|
||||
{":", ""},
|
||||
{"flags", ""},
|
||||
{"flags:", ""},
|
||||
{"flags: a b c", "a b c"},
|
||||
{"flags: a b c foo bar d", "a b c foo bar d"},
|
||||
|
||||
{
|
||||
cpuFlagsTag,
|
||||
"",
|
||||
},
|
||||
{
|
||||
cpuFlagsTag + ":",
|
||||
"",
|
||||
},
|
||||
{
|
||||
fmt.Sprintf("%s: a b c", cpuFlagsTag),
|
||||
"a b c",
|
||||
},
|
||||
{
|
||||
fmt.Sprintf("%s: a b c foo bar d", cpuFlagsTag),
|
||||
"a b c foo bar d",
|
||||
},
|
||||
}
|
||||
|
||||
for _, d := range data {
|
||||
|
||||
Reference in New Issue
Block a user