From: Ben Pfaff Date: Thu, 14 Oct 2004 03:58:07 +0000 (+0000) Subject: Should iterate 10 times not 5. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=168808b0c8526d902250c1b3901dbbe7826b2418;p=pintos-anon Should iterate 10 times not 5. --- diff --git a/src/tests/threads/p1-3.c b/src/tests/threads/p1-3.c index 2c3530d..92203f1 100644 --- a/src/tests/threads/p1-3.c +++ b/src/tests/threads/p1-3.c @@ -54,7 +54,7 @@ test_fifo (void) "If the order varies then there is a bug.\n"); thread_set_priority (PRI_DEFAULT + 2); - for (i = 0; i < 5; i++) + for (i = 0; i < 10; i++) { char name[16]; snprintf (name, sizeof name, "%d", i);