X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftests%2Fthreads%2Fpriority-fifo.c;h=3af98a30ac217e7e7978c87ce1327771c42b10b7;hb=f4651c01a134759e3dc904960f96d568e6855a4f;hp=e71b7e5e00d07b14b982a5788df149b2be5ed69d;hpb=94ef10ad53439c273d7c1e7397223c1cbd41f1f1;p=pintos-anon diff --git a/src/tests/threads/priority-fifo.c b/src/tests/threads/priority-fifo.c index e71b7e5..3af98a3 100644 --- a/src/tests/threads/priority-fifo.c +++ b/src/tests/threads/priority-fifo.c @@ -37,7 +37,7 @@ test_priority_fifo (void) int i, cnt; /* This test does not work with the MLFQS. */ - ASSERT (!enable_mlfqs); + ASSERT (!thread_mlfqs); /* Make sure our priority is the default. */ ASSERT (thread_get_priority () == PRI_DEFAULT); @@ -50,7 +50,7 @@ test_priority_fifo (void) ASSERT (output != NULL); lock_init (&lock); - thread_set_priority (PRI_DEFAULT - 2); + thread_set_priority (PRI_DEFAULT + 2); for (i = 0; i < THREAD_CNT; i++) { char name[16]; @@ -60,7 +60,7 @@ test_priority_fifo (void) d->iterations = 0; d->lock = &lock; d->op = &op; - thread_create (name, PRI_DEFAULT - 1, simple_thread_func, d); + thread_create (name, PRI_DEFAULT + 1, simple_thread_func, d); } thread_set_priority (PRI_DEFAULT);