From 01ddffb619a09fc3d00d66b4354d537837e25d96 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sat, 25 Apr 2026 22:47:44 +0530 Subject: [PATCH] Tests: Enable vmlinux requirement for verifier tests --- tests/test_verifier.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tests/test_verifier.py b/tests/test_verifier.py index 03b6408..413ef45 100644 --- a/tests/test_verifier.py +++ b/tests/test_verifier.py @@ -25,19 +25,11 @@ from tests.framework.verifier import verify_object def _passing_test_files(): - return [ - c.path - for c in collect_all_test_files() - if not c.is_expected_fail and not c.needs_vmlinux - ] + return [c.path for c in collect_all_test_files() if not c.is_expected_fail] def _passing_test_ids(): - return [ - c.rel_path - for c in collect_all_test_files() - if not c.is_expected_fail and not c.needs_vmlinux - ] + return [c.rel_path for c in collect_all_test_files() if not c.is_expected_fail] def _get_rejection_reason(verifier_test_file: Path, output) -> str: