@@ -45,22 +45,32 @@ def vm_with_cpu_support(request, namespace, unprivileged_client):
4545 [
4646 pytest .param (
4747 {"sockets" : 2 , "cores" : 2 , "threads" : 2 },
48- marks = (pytest .mark .polarion ("CNV-2820" ), pytest .mark .gating , pytest .mark .conformance ),
48+ marks = (pytest .mark .polarion ("CNV-2820" ), pytest .mark .gating , pytest .mark .conformance , pytest . mark . x86_64 () ),
4949 id = "case1: 2 cores, 2 threads, 2 sockets" ,
5050 ),
5151 pytest .param (
5252 {"sockets" : None , "cores" : 1 , "threads" : 2 },
53- marks = (pytest .mark .polarion ("CNV-2823" )),
53+ marks = (pytest .mark .polarion ("CNV-2823" ), pytest . mark . x86_64 () ),
5454 id = "case2: 1 cores, 2 threads, no sockets" ,
5555 ),
56+ pytest .param (
57+ {"sockets" : 2 , "cores" : 2 , "threads" : 1 },
58+ marks = (pytest .mark .gating (), pytest .mark .s390x ()),
59+ id = "case1: 2 cores, 1 threads, 2 sockets" ,
60+ ),
61+ pytest .param (
62+ {"sockets" : None , "cores" : 1 , "threads" : 1 },
63+ marks = [pytest .mark .s390x ()],
64+ id = "case2: 1 cores, 1 threads, no sockets" ,
65+ ),
5666 pytest .param (
5767 {"sockets" : 2 , "cores" : 1 , "threads" : None },
58- marks = (pytest .mark .polarion ("CNV-2822" )),
68+ marks = (pytest .mark .polarion ("CNV-2822" ), pytest . mark . x86_64 (), pytest . mark . s390x () ),
5969 id = "case3: 1 cores, no threads, 2 sockets" ,
6070 ),
6171 pytest .param (
6272 {"sockets" : None , "cores" : 2 , "threads" : None },
63- marks = (pytest .mark .polarion ("CNV-2821" )),
73+ marks = (pytest .mark .polarion ("CNV-2821" ), pytest . mark . x86_64 (), pytest . mark . s390x () ),
6474 id = "case4: 2 cores, no threads, no sockets" ,
6575 ),
6676 ],
@@ -97,6 +107,8 @@ def no_cpu_settings_vm(namespace, unprivileged_client):
97107
98108@pytest .mark .gating
99109@pytest .mark .conformance
110+ @pytest .mark .x86_64
111+ @pytest .mark .s390x
100112@pytest .mark .polarion ("CNV-1485" )
101113def test_vm_with_no_cpu_settings (no_cpu_settings_vm ):
102114 """
@@ -108,6 +120,8 @@ def test_vm_with_no_cpu_settings(no_cpu_settings_vm):
108120
109121
110122@pytest .mark .gating
123+ @pytest .mark .x86_64
124+ @pytest .mark .s390x
111125@pytest .mark .polarion ("CNV-2818" )
112126def test_vm_with_cpu_limitation (namespace , unprivileged_client ):
113127 """
@@ -130,6 +144,8 @@ def test_vm_with_cpu_limitation(namespace, unprivileged_client):
130144
131145
132146@pytest .mark .polarion ("CNV-2819" )
147+ @pytest .mark .x86_64
148+ @pytest .mark .s390x
133149def test_vm_with_cpu_limitation_negative (namespace , unprivileged_client ):
134150 """
135151 Test VM with cpu limitation
0 commit comments