From aee261b3bd7354d73d443114e6eab0de0dee2711 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 20 Jun 2005 22:55:36 +0000 Subject: [PATCH] Don't print recursive reboots. --- src/tests/make-grade | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tests/make-grade b/src/tests/make-grade index e6c4b9c..23f6ec3 100755 --- a/src/tests/make-grade +++ b/src/tests/make-grade @@ -132,13 +132,17 @@ for my $test (@failures) { if (open (OUTPUT, '<', "$test.output")) { print "\nOUTPUT FROM $test:\n\n"; - my ($panics) = 0; + my ($panics, $boots) = (0, 0); while () { if (/PANIC/ && ++$panics > 2) { print "[...details of additional panic(s) omitted...]\n"; last; } print; + if (/Pintos booting/ && ++$boots > 1) { + print "[...details of reboot(s) omitted...]\n"; + last; + } } close (OUTPUT); } -- 2.30.2