aboutsummaryrefslogtreecommitdiff
path: root/tests/src/helpers.c
diff options
context:
space:
mode:
authorPaul Elliott <paul.elliott@arm.com>2024-01-31 15:33:23 +0000
committerPaul Elliott <paul.elliott@arm.com>2024-01-31 15:33:23 +0000
commit9efc60298ffbc09c43c837cbf7565023a312666e (patch)
tree7b54f58091fde18e98e5baac0bc79fc77c7c7b84 /tests/src/helpers.c
parentfad978b2321551d91c51ce4a3ff76fea1a9ef34e (diff)
downloadmbedtls-9efc60298ffbc09c43c837cbf7565023a312666e.zip
mbedtls-9efc60298ffbc09c43c837cbf7565023a312666e.tar.gz
mbedtls-9efc60298ffbc09c43c837cbf7565023a312666e.tar.bz2
Fix code style issues
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
Diffstat (limited to 'tests/src/helpers.c')
-rw-r--r--tests/src/helpers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/helpers.c b/tests/src/helpers.c
index 85345d8..49a7df2 100644
--- a/tests/src/helpers.c
+++ b/tests/src/helpers.c
@@ -147,7 +147,7 @@ unsigned long mbedtls_test_get_step(void)
void mbedtls_test_set_step(unsigned long step)
{
/* Internal function only - mbedtls_test_info_mutex should be held prior
- * to calling this function. */
+ * to calling this function. */
mbedtls_test_info.step = step;
}
@@ -168,7 +168,7 @@ void mbedtls_test_get_line1(char *line)
void mbedtls_test_set_line1(const char *line)
{
/* Internal function only - mbedtls_test_info_mutex should be held prior
- * to calling this function. */
+ * to calling this function. */
if (line == NULL) {
memset(mbedtls_test_info.line1, 0, MBEDTLS_TEST_LINE_LENGTH);
@@ -193,7 +193,7 @@ void mbedtls_test_get_line2(char *line)
void mbedtls_test_set_line2(const char *line)
{
/* Internal function only - mbedtls_test_info_mutex should be held prior
- * to calling this function. */
+ * to calling this function. */
if (line == NULL) {
memset(mbedtls_test_info.line2, 0, MBEDTLS_TEST_LINE_LENGTH);
@@ -245,7 +245,7 @@ unsigned mbedtls_test_get_case_uses_negative_0(void)
void mbedtls_test_set_case_uses_negative_0(unsigned uses)
{
/* Internal function only - mbedtls_test_info_mutex should be held prior
- * to calling this function. */
+ * to calling this function. */
mbedtls_test_info.case_uses_negative_0 = uses;
}