remove redundant test

This commit is contained in:
2025-09-09 00:40:51 +05:30
parent 33468b01d4
commit 414db121b3

View File

@ -1,15 +0,0 @@
from pythonbpf.decorators import section
from ctypes import c_void_p, c_int32
#This is a test function
def test_function():
print("test_function called")
@section("tracepoint/syscalls/sys_enter_execve")
def trace_execve(ctx: c_void_p) -> c_int32:
print("execve called")
print("execve2 called")
test_function()
return c_int32(0)
LICENSE = "GPL"