Add another test that locks & unlocks in FIFO order instead of stack
[pintos-anon] / src / tests / threads / Make.tests
index d59d5c49a69620c987c18632ce952e2f92522c54..21d3b8737d1634f858a4e319659cebdbcfe69b13 100644 (file)
@@ -4,6 +4,7 @@
 tests/threads_TESTS = $(addprefix tests/threads/,alarm-single          \
 alarm-multiple alarm-priority alarm-zero alarm-negative                        \
 priority-change priority-donate-one priority-donate-multiple           \
+priority-donate-multiple2                                              \
 priority-donate-nest priority-fifo priority-preempt priority-sema      \
 priority-condvar mlfqs-load-1 mlfqs-load-60 mlfqs-load-avg             \
 mlfqs-recent-1 mlfqs-fair-2 mlfqs-fair-20 mlfqs-nice-2 mlfqs-nice-10)
@@ -17,6 +18,7 @@ tests/threads_SRC += tests/threads/alarm-negative.c
 tests/threads_SRC += tests/threads/priority-change.c
 tests/threads_SRC += tests/threads/priority-donate-one.c
 tests/threads_SRC += tests/threads/priority-donate-multiple.c
+tests/threads_SRC += tests/threads/priority-donate-multiple2.c
 tests/threads_SRC += tests/threads/priority-donate-nest.c
 tests/threads_SRC += tests/threads/priority-fifo.c
 tests/threads_SRC += tests/threads/priority-preempt.c