1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

tests/thread_flood: fix typo and improve test output

This commit is contained in:
Alexandre Abadie 2017-10-24 18:17:02 +02:00
parent 775609dcac
commit 9a827f285c

View File

@ -36,7 +36,7 @@ int main(void)
{
kernel_pid_t thr_id = KERNEL_PID_UNDEF;
puts("Start spawning\n");
puts("[START] Spawning threads");
do {
thr_id = thread_create(
dummy_stack, sizeof(dummy_stack),
@ -46,7 +46,7 @@ int main(void)
} while (-EOVERFLOW != thr_id);
if (-EOVERFLOW == thr_id) {
puts("Thread creation successful aborted\n");
puts("[SUCCESS] Thread creation successfully aborted");
}
return 0;