Skip to content

Commit 0f6b759

Browse files
kalyazinroypat
authored andcommitted
tmp(test/api): disable x86 tests that use reboot
Graceful shutdown is currently broken on x86_64. Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent 4475928 commit 0f6b759

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

tests/integration_tests/functional/test_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,6 +747,7 @@ def test_drive_patch(uvm_plain, io_engine):
747747
@pytest.mark.skipif(
748748
platform.machine() != "x86_64", reason="not yet implemented on aarch64"
749749
)
750+
@pytest.mark.skip(reason="TODO: fix graceful shutdown on x86_64")
750751
def test_send_ctrl_alt_del(uvm_plain_any):
751752
"""
752753
Test shutting down the microVM gracefully on x86, by sending CTRL+ALT+DEL.

tests/integration_tests/functional/test_cmd_line_start.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def test_config_start_no_api(uvm_plain, vm_config_file):
154154

155155

156156
@pytest.mark.parametrize("vm_config_file", ["framework/vm_config_network.json"])
157+
@pytest.mark.skip(reason="TODO: fix graceful shutdown on x86_64")
157158
def test_config_start_no_api_exit(uvm_plain, vm_config_file):
158159
"""
159160
Test microvm exit when API server is disabled.

tests/integration_tests/functional/test_shut_down.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
global_props.host_linux_version_tpl > (6, 1),
1616
reason="The number of threads associated to firecracker changes in newer kernels",
1717
)
18+
@pytest.mark.skip(reason="TODO: fix graceful shutdown on x86_64")
1819
def test_reboot(uvm_plain_any):
1920
"""
2021
Test reboot from guest.

0 commit comments

Comments
 (0)