X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=grading%2Fthreads%2Falarm-multiple.c;h=f5085c0e60542bb314c78dbfebb1bf168ab4a55e;hp=6e7c3d4079adc638ef593a35f437a7bf2ea1206c;hb=59385cfe7f0fc5a66dfc1da7c2e5b817edbcae65;hpb=78ee2ff83ef8787d0cfd74dafaca125c523ea0d0 diff --git a/grading/threads/alarm-multiple.c b/grading/threads/alarm-multiple.c index 6e7c3d4..f5085c0 100644 --- a/grading/threads/alarm-multiple.c +++ b/grading/threads/alarm-multiple.c @@ -11,15 +11,14 @@ #include "threads/thread.h" #include "devices/timer.h" -#ifdef MLFQS -#error This test not applicable with MLFQS enabled. -#endif - static void test_sleep (int thread_cnt, int iterations); void test (void) { + /* This test does not work with the MLFQS. */ + ASSERT (!enable_mlfqs); + test_sleep (5, 7); }