Skip to content

Commit

Permalink
WIP: add crypto tests
Browse files Browse the repository at this point in the history
Signed-off-by: Jukka Laitinen <[email protected]>
  • Loading branch information
jlaitine committed Nov 15, 2023
1 parent dae6789 commit 6b58f32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/systemcmds/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ set(srcs
test_uart_send.c
test_versioning.cpp
test_cli.c
test_crypto.cpp
tests_main.c
)

Expand Down
1 change: 1 addition & 0 deletions src/systemcmds/tests/tests_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ const struct {
{"uart_send", test_uart_send, OPT_NOJIGTEST | OPT_NOALLTEST},
{"versioning", test_versioning, 0},

{"crypto", test_crypto, 0},
{NULL, NULL, 0}
};

Expand Down
1 change: 1 addition & 0 deletions src/systemcmds/tests/tests_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ extern int test_uart_loopback(int argc, char *argv[]);
extern int test_uart_send(int argc, char *argv[]);
extern int test_versioning(int argc, char *argv[]);
extern int test_cli(int argc, char *argv[]);
extern int test_crypto(int argc, char *argv[]);

__END_DECLS

Expand Down

0 comments on commit 6b58f32

Please sign in to comment.