Skip to content

Commit 01ddffb

Browse files
committed
Tests: Enable vmlinux requirement for verifier tests
1 parent 1670814 commit 01ddffb

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

tests/test_verifier.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,11 @@
2525

2626

2727
def _passing_test_files():
28-
return [
29-
c.path
30-
for c in collect_all_test_files()
31-
if not c.is_expected_fail and not c.needs_vmlinux
32-
]
28+
return [c.path for c in collect_all_test_files() if not c.is_expected_fail]
3329

3430

3531
def _passing_test_ids():
36-
return [
37-
c.rel_path
38-
for c in collect_all_test_files()
39-
if not c.is_expected_fail and not c.needs_vmlinux
40-
]
32+
return [c.rel_path for c in collect_all_test_files() if not c.is_expected_fail]
4133

4234

4335
def _get_rejection_reason(verifier_test_file: Path, output) -> str:

0 commit comments

Comments
 (0)