From 435bf271762d62a0103edfaaaf451c890e581b9a Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Wed, 8 Oct 2025 07:26:41 +0530 Subject: [PATCH] Add compile to tests/failing_tests/conditionals/helper_cond.py --- tests/failing_tests/conditionals/helper_cond.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/failing_tests/conditionals/helper_cond.py b/tests/failing_tests/conditionals/helper_cond.py index 32473c3..8cf5bdb 100644 --- a/tests/failing_tests/conditionals/helper_cond.py +++ b/tests/failing_tests/conditionals/helper_cond.py @@ -1,4 +1,4 @@ -from pythonbpf import bpf, map, section, bpfglobal +from pythonbpf import bpf, map, section, bpfglobal, compile from ctypes import c_void_p, c_int64, c_uint64 from pythonbpf.maps import HashMap @@ -29,3 +29,6 @@ def hello_world(ctx: c_void_p) -> c_int64: @bpfglobal def LICENSE() -> str: return "GPL" + + +compile()