From: Ben Pfaff Date: Mon, 11 Oct 2004 22:34:27 +0000 (+0000) Subject: Make sure that we're not being tested with MLFQS on. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ca32ac0a54e78dc178de858a23cd14a012b0745;p=pintos-anon Make sure that we're not being tested with MLFQS on. --- diff --git a/src/tests/threads/p1-3.c b/src/tests/threads/p1-3.c index 3b48836..3caa7f9 100644 --- a/src/tests/threads/p1-3.c +++ b/src/tests/threads/p1-3.c @@ -11,6 +11,10 @@ #include "threads/synch.h" #include "threads/thread.h" +#ifdef MLFQS +#error This test not applicable with MLFQS enabled. +#endif + static void test_preempt (void); static void test_fifo (void); static void test_donate_return (void);