Skip to content
Snippets Groups Projects
Commit efeaebd0 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

* test_suite: added test_thread_sleep

parent 82abee67
No related branches found
No related tags found
No related merge requests found
...@@ -29,11 +29,13 @@ void shell_putchar(int c) { ...@@ -29,11 +29,13 @@ void shell_putchar(int c) {
} }
void mutex_trylock_fail(char* cmdline); void mutex_trylock_fail(char* cmdline);
void test_thread_sleep(char* line);
const shell_command_t shell_commands[] = { const shell_command_t shell_commands[] = {
{"start_test", print_teststart}, {"start_test", print_teststart},
{"end_test", print_testend}, {"end_test", print_testend},
{"mutex_trylock_fail", mutex_trylock_fail}, {"mutex_trylock_fail", mutex_trylock_fail},
{"thread_sleep", test_thread_sleep},
{NULL, NULL} {NULL, NULL}
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment