test cases should not use the same priority like the tcpip thread => reduce theire priorities

This commit is contained in:
Stefan Lankes 2011-09-22 10:58:54 +02:00
parent 50315a1d20
commit b9a9c155b3

View file

@ -262,7 +262,7 @@ static int join_test(void* arg)
tid_t id, ret;
int result = -1234;
create_kernel_task(&id, foo, "Hello from foo2", HIGH_PRIO);
create_kernel_task(&id, foo, "Hello from foo2", HIGH_PRIO-1);
kprintf("Wait for child %u\n", id);
do {