Skip to content

Commit 7d60e2a

Browse files
committed
tmp: skip test_enosys_error_code test
It is flaky on Linux next. Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent cf2e964 commit 7d60e2a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integration_tests/functional/test_error_code.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@
66

77
import pytest
88

9+
from framework.properties import global_props
10+
911

1012
@pytest.mark.skipif(
1113
platform.machine() != "aarch64",
1214
reason="The error code returned on aarch64 will not be returned on x86 "
1315
"under the same conditions.",
1416
)
17+
@pytest.mark.skipif(
18+
global_props.host_linux_version_metrics == "next",
19+
reason="The test is known to be flaky on Linux next",
20+
)
1521
def test_enosys_error_code(uvm_plain):
1622
"""
1723
Test that ENOSYS error is caught and firecracker exits gracefully.

0 commit comments

Comments
 (0)