11
11
12
12
from framework import utils
13
13
from framework .properties import global_props
14
- from framework .utils_cpu_templates import skip_on_arm
14
+ from framework .utils_cpu_templates import nonci_on_arm
15
15
16
16
CHECKER_URL = "https://meltdown.ovh"
17
17
CHECKER_FILENAME = "spectre-meltdown-checker.sh"
@@ -140,7 +140,7 @@ def test_spectre_meltdown_checker_on_restored_guest(
140
140
global_props .instance == "c7g.metal" and global_props .host_linux_version == "4.14" ,
141
141
reason = "c7g host 4.14 requires modifications to the 5.10 guest kernel to boot successfully." ,
142
142
)
143
- @skip_on_arm
143
+ @nonci_on_arm
144
144
def test_spectre_meltdown_checker_on_guest_with_template (
145
145
spectre_meltdown_checker ,
146
146
microvm_with_template ,
@@ -160,7 +160,7 @@ def test_spectre_meltdown_checker_on_guest_with_template(
160
160
global_props .instance == "c7g.metal" and global_props .host_linux_version == "4.14" ,
161
161
reason = "c7g host 4.14 requires modifications to the 5.10 guest kernel to boot successfully." ,
162
162
)
163
- @skip_on_arm
163
+ @nonci_on_arm
164
164
def test_spectre_meltdown_checker_on_guest_with_custom_template (
165
165
spectre_meltdown_checker ,
166
166
microvm_with_custom_cpu_template ,
@@ -180,7 +180,7 @@ def test_spectre_meltdown_checker_on_guest_with_custom_template(
180
180
global_props .instance == "c7g.metal" and global_props .host_linux_version == "4.14" ,
181
181
reason = "c7g host 4.14 requires modifications to the 5.10 guest kernel to boot successfully." ,
182
182
)
183
- @skip_on_arm
183
+ @nonci_on_arm
184
184
def test_spectre_meltdown_checker_on_restored_guest_with_template (
185
185
spectre_meltdown_checker ,
186
186
microvm_with_template ,
@@ -208,7 +208,7 @@ def test_spectre_meltdown_checker_on_restored_guest_with_template(
208
208
global_props .instance == "c7g.metal" and global_props .host_linux_version == "4.14" ,
209
209
reason = "c7g host 4.14 requires modifications to the 5.10 guest kernel to boot successfully." ,
210
210
)
211
- @skip_on_arm
211
+ @nonci_on_arm
212
212
def test_spectre_meltdown_checker_on_restored_guest_with_custom_template (
213
213
spectre_meltdown_checker ,
214
214
microvm_with_custom_cpu_template ,
@@ -272,7 +272,7 @@ def test_vulnerabilities_files_on_restored_guest(
272
272
273
273
274
274
@pytest .mark .no_block_pr
275
- @skip_on_arm
275
+ @nonci_on_arm
276
276
def test_vulnerabilities_files_on_guest_with_template (
277
277
microvm_with_template ,
278
278
):
@@ -283,7 +283,7 @@ def test_vulnerabilities_files_on_guest_with_template(
283
283
284
284
285
285
@pytest .mark .no_block_pr
286
- @skip_on_arm
286
+ @nonci_on_arm
287
287
def test_vulnerabilities_files_on_guest_with_custom_template (
288
288
microvm_with_custom_cpu_template ,
289
289
):
@@ -294,7 +294,7 @@ def test_vulnerabilities_files_on_guest_with_custom_template(
294
294
295
295
296
296
@pytest .mark .no_block_pr
297
- @skip_on_arm
297
+ @nonci_on_arm
298
298
def test_vulnerabilities_files_on_restored_guest_with_template (
299
299
microvm_with_template ,
300
300
microvm_factory ,
@@ -313,7 +313,7 @@ def test_vulnerabilities_files_on_restored_guest_with_template(
313
313
314
314
315
315
@pytest .mark .no_block_pr
316
- @skip_on_arm
316
+ @nonci_on_arm
317
317
def test_vulnerabilities_files_on_restored_guest_with_custom_template (
318
318
microvm_with_custom_cpu_template ,
319
319
microvm_factory ,
0 commit comments