Update tests (semaphores/mutexes.)

Most mutex tests are failing due to thread scheduling or
reuse issues.
This commit is contained in:
Unknown W. Brackets 2012-11-17 20:28:57 -08:00
parent 40a6ebfabe
commit c92f1dc8e6

View File

@ -32,9 +32,9 @@ tests_good = [
"gpu/callbacks/ge_callbacks",
"threads/mbx/mbx",
"threads/mutex/mutex",
"threads/mutex/delete/delete",
"threads/semaphores/semaphores",
"threads/semaphores/cancel/cancel",
"threads/semaphores/create/create",
"threads/semaphores/delete/delete",
"threads/semaphores/poll/poll",
"threads/semaphores/refer/refer",
@ -50,7 +50,13 @@ tests_next = [
# These are the next tests up for fixing. These run by default.
"threads/fpl/fpl",
"threads/msgpipe/msgpipe",
"threads/mutex/create/create",
"threads/mutex/lock/lock",
"threads/mutex/priority/priority",
"threads/mutex/try/try",
"threads/mutex/unlock/unlock",
"threads/scheduling/scheduling",
"threads/semaphores/create/create",
"threads/semaphores/priority/priority",
"threads/semaphores/wait/wait",
"threads/threads/threads",