Improve.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 19 Oct 2004 22:45:22 +0000 (22:45 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 19 Oct 2004 22:45:22 +0000 (22:45 +0000)
grading/threads/run-tests

index db788dcb6b77c639779bf0789578533dca3f4d5a..a08882211e8e8242f02cfdfa78af6e8edc9bc36d 100755 (executable)
@@ -423,7 +423,6 @@ sub verify_common {
            $details .= "Translation of backtrace:\n";
            my (@addrs) = $stack_line[0] =~ /Call stack:((?: 0x[0-9a-f]+)+)/;
 
-           print "addrs: '@addrs'\n";
            my ($A2L);
            if (`uname -m`
                =~ /i.86|pentium.*|[pk][56]|nexgen|viac3|6x86|athlon.*/) {
@@ -432,7 +431,8 @@ sub verify_common {
                $A2L = "i386-elf-addr2line";
            }
            open (A2L, "$A2L -fe output/$test/kernel.o @addrs|");
-           while (my $function = <A2L>) {
+           my ($function);
+           while ($function = <A2L>) {
                my ($line) = <A2L>;
                chomp $function;
                chomp $line;