Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
12b8e555
Commit
12b8e555
authored
Mar 25, 2024
by
BoskyWSMFN
Committed by
Mouse
Mar 25, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix-format-specifier-warnings
parent
eeb65579
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
tests/tests-skeletons/check-INTEGER.c
tests/tests-skeletons/check-INTEGER.c
+6
-5
No files found.
tests/tests-skeletons/check-INTEGER.c
View file @
12b8e555
...
...
@@ -2,6 +2,7 @@
#include <assert.h>
#include <asn_application.h>
#include <asn_system.h>
#include <INTEGER.h>
#define CHECK_XER(a,b,c) check_xer(__LINE__, a, b, c)
...
...
@@ -170,10 +171,10 @@ check_64(uint8_t *buf, size_t size, int64_t check_i64, int check_ret) {
printf
(
"]: "
);
ret
=
asn_INTEGER2int64
(
&
val
,
&
rint64
);
printf
(
" (%
lld, %d) vs (%lld
, %d)
\n
"
,
printf
(
" (%
"
ASN_PRIdMAX
", %d) vs (%"
ASN_PRIdMAX
"
, %d)
\n
"
,
rint64
,
ret
,
check_i64
,
check_ret
);
assert
(
ret
==
check_ret
);
printf
(
"%
lld %lld
\n
"
,
rint64
,
check_i64
);
printf
(
"%
"
ASN_PRIdMAX
" %"
ASN_PRIdMAX
"
\n
"
,
rint64
,
check_i64
);
assert
(
rint64
==
check_i64
);
if
(
check_ret
==
0
)
{
...
...
@@ -195,7 +196,7 @@ check_64(uint8_t *buf, size_t size, int64_t check_i64, int check_ret) {
ret
=
INTEGER_print
(
&
asn_DEF_INTEGER
,
&
val
,
0
,
_print2buf
,
scratch
);
assert
(
shared_scratch_start
<
scratch
+
sizeof
(
scratch
));
assert
(
ret
==
0
);
ret
=
snprintf
(
verify
,
sizeof
(
verify
),
"%
lld
"
,
check_i64
);
ret
=
snprintf
(
verify
,
sizeof
(
verify
),
"%
"
ASN_PRIdMAX
"
"
,
check_i64
);
assert
(
ret
<
0
||
(
size_t
)
ret
<
sizeof
(
verify
));
ret
=
strcmp
(
scratch
,
verify
);
printf
(
" [%s] vs [%s]: %d%s
\n
"
,
...
...
@@ -232,7 +233,7 @@ check_unsigned_64(uint8_t *buf, int size, uint64_t check_u64, int check_ret) {
printf
(
"]: "
);
ret
=
asn_INTEGER2uint64
(
&
val
,
&
ruint64
);
printf
(
" (%
llu, %d) vs (%llu
, %d)
\n
"
,
printf
(
" (%
"
ASN_PRIuMAX
", %d) vs (%"
ASN_PRIuMAX
"
, %d)
\n
"
,
ruint64
,
ret
,
check_u64
,
check_ret
);
assert
(
ret
==
check_ret
);
assert
(
ruint64
==
check_u64
);
...
...
@@ -263,7 +264,7 @@ check_unsigned_64(uint8_t *buf, int size, uint64_t check_u64, int check_ret) {
ret
=
INTEGER_print
(
&
asn_DEF_INTEGER
,
&
val
,
0
,
_print2buf
,
scratch
);
assert
(
shared_scratch_start
<
scratch
+
sizeof
(
scratch
));
assert
(
ret
==
0
);
ret
=
snprintf
(
verify
,
sizeof
(
verify
),
"%
llu
"
,
check_u64
);
ret
=
snprintf
(
verify
,
sizeof
(
verify
),
"%
"
ASN_PRIuMAX
"
"
,
check_u64
);
assert
(
ret
<
(
int
)
sizeof
(
verify
));
ret
=
strcmp
(
scratch
,
verify
);
printf
(
" [%s] vs [%s]: %d%s
\n
"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment