Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions tests/integration_tests/security/test_vulnerabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,6 @@ 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()
Expand All @@ -126,11 +121,6 @@ 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}")
Expand Down