diff --git a/tests/integration_tests/security/test_vulnerabilities.py b/tests/integration_tests/security/test_vulnerabilities.py index 01b8e9c595b..a8835f97c87 100644 --- a/tests/integration_tests/security/test_vulnerabilities.py +++ b/tests/integration_tests/security/test_vulnerabilities.py @@ -110,6 +110,11 @@ def download_spectre_meltdown_checker(tmp_path_factory): global_props.buildkite_pr, reason="Test depends solely on factors external to GitHub repository", ) +# Temporary suppression for Ubuntu 6.14 kernel +@pytest.mark.skipif( + "Ubuntu" in global_props.os and global_props.host_linux_version == "6.14", + reason="Ubuntu does not enable CONFIG_MITIGATION_GDS on 6.14 kernel", +) def test_spectre_meltdown_checker_on_host(spectre_meltdown_checker): """Test with the spectre / meltdown checker on host.""" report = spectre_meltdown_checker.get_report_for_host() @@ -121,6 +126,11 @@ def test_spectre_meltdown_checker_on_host(spectre_meltdown_checker): global_props.buildkite_pr, reason="Test depends solely on factors external to GitHub repository", ) +# Temporary suppression for Ubuntu 6.14 kernel +@pytest.mark.skipif( + "Ubuntu" in global_props.os and global_props.host_linux_version == "6.14", + reason="Ubuntu does not enable CONFIG_MITIGATION_GDS on 6.14 kernel", +) def test_vulnerabilities_on_host(): """Test vulnerability files on host.""" res = utils.run_cmd(f"grep -r Vulnerable {VULN_DIR}")