Skip to content

Commit cc626c3

Browse files
committed
Move binops1 to tests/passing
1 parent a8b3f4f commit cc626c3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/passing_tests/binops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@bpf
66
@section("tracepoint/syscalls/sys_enter_sync")
77
def sometag(ctx: c_void_p) -> c_int64:
8-
a = 1 + 2 + 1
8+
a = 1 + 2 + 1 + 12 + 13
99
print(f"{a}")
1010
return c_int64(0)
1111

tests/failing_tests/binops1.py renamed to tests/passing_tests/binops1.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44

55
@bpf
6-
@section("sometag1")
6+
@section("tracepoint/syscalls/sys_enter_sync")
77
def sometag(ctx: c_void_p) -> c_int64:
88
b = 1 + 2
99
a = 1 + b
10-
return c_int64(a)
10+
print(f"{a}")
11+
return c_int64(0)
1112

1213

1314
@bpf

0 commit comments

Comments
 (0)