Add named_arg failing test

This commit is contained in:
Pragyansh Chaturvedi
2025-10-04 19:50:33 +05:30
parent ac49cd8b1c
commit 283b947fc5
2 changed files with 36 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import logging
from pythonbpf import compile, bpf, section, bpfglobal, compile_to_ir
from pythonbpf import compile, bpf, section, bpfglobal
from ctypes import c_void_p, c_int64
@ -16,5 +16,5 @@ def sometag(ctx: c_void_p) -> c_int64:
def LICENSE() -> str:
return "GPL"
compile_to_ir("var_rval.py", "var_rval.ll")
compile(loglevel=logging.INFO)