We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b3f4f commit cc626c3Copy full SHA for cc626c3
tests/passing_tests/binops.py
@@ -5,7 +5,7 @@
5
@bpf
6
@section("tracepoint/syscalls/sys_enter_sync")
7
def sometag(ctx: c_void_p) -> c_int64:
8
- a = 1 + 2 + 1
+ a = 1 + 2 + 1 + 12 + 13
9
print(f"{a}")
10
return c_int64(0)
11
tests/failing_tests/binops1.py renamed to tests/passing_tests/binops1.py
@@ -3,11 +3,12 @@
3
4
-@section("sometag1")
+@section("tracepoint/syscalls/sys_enter_sync")
b = 1 + 2
a = 1 + b
- return c_int64(a)
+ print(f"{a}")
+ return c_int64(0)
12
13
14
0 commit comments