mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-19 23:34:23 +01:00
s390x: dimm not supported
Dimm is not supported on s390x Fixes: #106 Signed-off-by: Alice Frosi <afrosi@de.ibm.com>
This commit is contained in:
@@ -521,6 +521,10 @@ func TestAppendKnobsAllFalse(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestAppendMemoryHugePages(t *testing.T) {
|
||||
if !isDimmSupported() {
|
||||
t.Skip("Dimm not supported")
|
||||
}
|
||||
|
||||
conf := &Config{
|
||||
Memory: Memory{
|
||||
Size: "1G",
|
||||
@@ -545,6 +549,10 @@ func TestAppendMemoryHugePages(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestAppendMemoryMemPrealloc(t *testing.T) {
|
||||
if !isDimmSupported() {
|
||||
t.Skip("Dimm not supported")
|
||||
}
|
||||
|
||||
conf := &Config{
|
||||
Memory: Memory{
|
||||
Size: "1G",
|
||||
@@ -567,6 +575,10 @@ func TestAppendMemoryMemPrealloc(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestAppendMemoryMemShared(t *testing.T) {
|
||||
if !isDimmSupported() {
|
||||
t.Skip("Dimm not supported")
|
||||
}
|
||||
|
||||
conf := &Config{
|
||||
Memory: Memory{
|
||||
Size: "1G",
|
||||
@@ -589,6 +601,10 @@ func TestAppendMemoryMemShared(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestAppendMemoryFileBackedMem(t *testing.T) {
|
||||
if !isDimmSupported() {
|
||||
t.Skip("Dimm not supported")
|
||||
}
|
||||
|
||||
conf := &Config{
|
||||
Memory: Memory{
|
||||
Size: "1G",
|
||||
@@ -611,6 +627,10 @@ func TestAppendMemoryFileBackedMem(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestAppendMemoryFileBackedMemPrealloc(t *testing.T) {
|
||||
if !isDimmSupported() {
|
||||
t.Skip("Dimm not supported")
|
||||
}
|
||||
|
||||
conf := &Config{
|
||||
Memory: Memory{
|
||||
Size: "1G",
|
||||
|
||||
Reference in New Issue
Block a user