We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2e964 commit 7d60e2aCopy full SHA for 7d60e2a
tests/integration_tests/functional/test_error_code.py
@@ -6,12 +6,18 @@
6
7
import pytest
8
9
+from framework.properties import global_props
10
+
11
12
@pytest.mark.skipif(
13
platform.machine() != "aarch64",
14
reason="The error code returned on aarch64 will not be returned on x86 "
15
"under the same conditions.",
16
)
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
+)
21
def test_enosys_error_code(uvm_plain):
22
"""
23
Test that ENOSYS error is caught and firecracker exits gracefully.
0 commit comments