From c92f1dc8e6559833c9495f49a22441f6def082be Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 17 Nov 2012 20:28:57 -0800 Subject: [PATCH] Update tests (semaphores/mutexes.) Most mutex tests are failing due to thread scheduling or reuse issues. --- test.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test.py b/test.py index e9686032e..b6bbb1967 100644 --- a/test.py +++ b/test.py @@ -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",