1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 06:12:43 +01:00

* test_suite: added test_thread_sleep

This commit is contained in:
Kaspar Schleiser 2010-11-02 11:53:20 +01:00
parent 82abee6769
commit efeaebd096

View File

@ -29,11 +29,13 @@ void shell_putchar(int c) {
}
void mutex_trylock_fail(char* cmdline);
void test_thread_sleep(char* line);
const shell_command_t shell_commands[] = {
{"start_test", print_teststart},
{"end_test", print_testend},
{"mutex_trylock_fail", mutex_trylock_fail},
{"thread_sleep", test_thread_sleep},
{NULL, NULL}
};