Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
35c9f999
Unverified
Commit
35c9f999
authored
6 years ago
by
Koen Zandberg
Browse files
Options
Downloads
Patches
Plain Diff
tests/cn_cbor: fix memory leak
parent
dbccf06c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/unittests/tests-cn_cbor/tests-cn_cbor.c
+5
-10
5 additions, 10 deletions
tests/unittests/tests-cn_cbor/tests-cn_cbor.c
with
5 additions
and
10 deletions
tests/unittests/tests-cn_cbor/tests-cn_cbor.c
+
5
−
10
View file @
35c9f999
...
@@ -32,24 +32,17 @@ typedef struct {
...
@@ -32,24 +32,17 @@ typedef struct {
cn_cbor_error
err
;
cn_cbor_error
err
;
}
cbor_failure
;
}
cbor_failure
;
static
cn_cbor
*
cbor
;
static
size_t
test
,
offs
;
static
size_t
test
,
offs
;
static
unsigned
char
ebuf
[
EBUF_SIZE
];
static
unsigned
char
ebuf
[
EBUF_SIZE
];
static
cn_cbor_errback
errb
;
static
cn_cbor_errback
errb
;
static
void
setup_cn_cbor
(
void
)
static
void
setup_cn_cbor
(
void
)
{
{
cbor
=
NULL
;
test
=
0
;
test
=
0
;
offs
=
0
;
offs
=
0
;
memset
(
ebuf
,
'\0'
,
EBUF_SIZE
);
memset
(
ebuf
,
'\0'
,
EBUF_SIZE
);
}
}
static
void
teardown_cn_cbor
(
void
)
{
cn_cbor_free
(
cbor
);
}
static
void
test_parse
(
void
)
static
void
test_parse
(
void
)
{
{
char
*
tests
[]
=
{
char
*
tests
[]
=
{
...
@@ -114,7 +107,7 @@ static void test_parse(void)
...
@@ -114,7 +107,7 @@ static void test_parse(void)
errb
.
err
=
CN_CBOR_NO_ERROR
;
errb
.
err
=
CN_CBOR_NO_ERROR
;
cbor
=
cn_cbor_decode
(
buf
,
len
,
&
errb
);
cn_cbor
*
cbor
=
cn_cbor_decode
(
buf
,
len
,
&
errb
);
TEST_ASSERT_EQUAL_INT
(
errb
.
err
,
CN_CBOR_NO_ERROR
);
TEST_ASSERT_EQUAL_INT
(
errb
.
err
,
CN_CBOR_NO_ERROR
);
TEST_ASSERT_NOT_NULL
(
cbor
);
TEST_ASSERT_NOT_NULL
(
cbor
);
...
@@ -122,6 +115,7 @@ static void test_parse(void)
...
@@ -122,6 +115,7 @@ static void test_parse(void)
for
(
offs
=
0
;
offs
<
len
;
offs
++
)
{
for
(
offs
=
0
;
offs
<
len
;
offs
++
)
{
TEST_ASSERT_EQUAL_INT
(
buf
[
offs
],
ebuf
[
offs
]);
TEST_ASSERT_EQUAL_INT
(
buf
[
offs
],
ebuf
[
offs
]);
}
}
cn_cbor_free
(
cbor
);
}
}
}
}
...
@@ -149,9 +143,10 @@ static void test_errors(void)
...
@@ -149,9 +143,10 @@ static void test_errors(void)
size_t
len
=
fmt_hex_bytes
(
buf
,
tests
[
offs
].
hex
);
size_t
len
=
fmt_hex_bytes
(
buf
,
tests
[
offs
].
hex
);
TEST_ASSERT
(
len
);
TEST_ASSERT
(
len
);
cbor
=
cn_cbor_decode
(
buf
,
len
,
&
errb
);
cn_cbor
*
cbor
=
cn_cbor_decode
(
buf
,
len
,
&
errb
);
TEST_ASSERT_NULL
(
cbor
);
TEST_ASSERT_NULL
(
cbor
);
TEST_ASSERT_EQUAL_INT
(
errb
.
err
,
tests
[
offs
].
err
);
TEST_ASSERT_EQUAL_INT
(
errb
.
err
,
tests
[
offs
].
err
);
cn_cbor_free
(
cbor
);
}
}
}
}
...
@@ -162,7 +157,7 @@ TestRef test_cn_cbor(void)
...
@@ -162,7 +157,7 @@ TestRef test_cn_cbor(void)
new_TestFixture
(
test_errors
)
new_TestFixture
(
test_errors
)
};
};
EMB_UNIT_TESTCALLER
(
tests_cn_cbor
,
setup_cn_cbor
,
teardown_cn_cbor
,
fixtures
);
EMB_UNIT_TESTCALLER
(
tests_cn_cbor
,
setup_cn_cbor
,
NULL
,
fixtures
);
return
(
TestRef
)
&
tests_cn_cbor
;
return
(
TestRef
)
&
tests_cn_cbor
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment