Skip to content

Commit c207d60

Browse files
committed
test: Use any guest kernels in test_host_vs_guest_cpu_features
CPU features that guest kernel can vary depending on its kernel version. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent 385acc8 commit c207d60

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integration_tests/functional/test_cpu_features_host_vs_guest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,12 @@
157157
}
158158

159159

160-
def test_host_vs_guest_cpu_features(uvm_nano):
160+
def test_host_vs_guest_cpu_features(uvm_plain_any):
161161
"""Check CPU features host vs guest"""
162162

163-
vm = uvm_nano
163+
vm = uvm_plain_any
164+
vm.spawn()
165+
vm.basic_config()
164166
vm.add_net_iface()
165167
vm.start()
166168
host_feats = set(utils.check_output(CPU_FEATURES_CMD).stdout.split())

0 commit comments

Comments
 (0)