Skip to content

Commit a45bc30

Browse files
committed
Fix tests
1 parent a0bf768 commit a45bc30

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/chunk_test.asm

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ test_pack_chunk_header_big_size_and_big_seq:
8989

9090

9191
test_pack_queue_chunk:
92-
packet_packer_reset
92+
call packet_packer_reset
9393

9494
; queue_chunk [rax] [rdi] [rsi] [rdx] [r10]
9595
; rax = flags (vital & resend)
@@ -131,7 +131,7 @@ test_pack_queue_chunk:
131131
assert_al_eq 0x0A, __LINE__
132132

133133
; call again to verify sequence incrementing
134-
packet_packer_reset
134+
call packet_packer_reset
135135

136136
; rax: flags
137137
mov rax, 0
@@ -147,7 +147,7 @@ test_pack_queue_chunk:
147147

148148

149149
; call again to verify sequence incrementing even more
150-
packet_packer_reset
150+
call packet_packer_reset
151151

152152
; rax: flags
153153
mov rax, 0

tests/packet_pack_int_test.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
_start:
44
init_test __FILE__
55

6-
packet_packer_reset
6+
call packet_packer_reset
77
packet_packer_pack_int 01
88
packet_packer_pack_int 01
99
packet_packer_pack_int 01

0 commit comments

Comments
 (0)