Move binops1 to tests/passing

This commit is contained in:
Pragyansh Chaturvedi
2025-10-03 17:13:02 +05:30
parent a8b3f4f86c
commit cc626c38f7
2 changed files with 4 additions and 3 deletions

View File

@ -1,19 +0,0 @@
from pythonbpf import compile, bpf, section, bpfglobal
from ctypes import c_void_p, c_int64
@bpf
@section("sometag1")
def sometag(ctx: c_void_p) -> c_int64:
b = 1 + 2
a = 1 + b
return c_int64(a)
@bpf
@bpfglobal
def LICENSE() -> str:
return "GPL"
compile()