Don't print output for triple faults.
[pintos-anon] / src / tests / tests.pm
1 use strict;
2 use warnings;
3 use tests::Algorithm::Diff;
4
5 sub fail;
6 sub pass;
7
8 die if @ARGV != 2;
9 our ($test, $src_dir) = @ARGV;
10 our ($src_stem) = "$src_dir/$test";
11
12 our ($messages) = "";
13 open (MESSAGES, '>', \$messages);
14 select (MESSAGES);
15
16 sub check_expected {
17     my ($expected) = pop @_;
18     my (@options) = @_;
19     my (@output) = read_text_file ("$test.output");
20     common_checks (@output);
21     compare_output (@options, \@output, $expected);
22 }
23
24 sub common_checks {
25     my (@output) = @_;
26
27     fail "No output at all\n" if @output == 0;
28
29     check_for_panic (@output);
30     check_for_keyword ("FAIL", @output);
31     check_for_triple_fault (@output);
32     check_for_keyword ("TIMEOUT", @output);
33
34     fail "Didn't start up properly: no \"Pintos booting\" startup message\n"
35       if !grep (/Pintos booting with.*kB RAM\.\.\./, @output);
36     fail "Didn't start up properly: no \"Boot complete\" startup message\n"
37       if !grep (/Boot complete/, @output);
38     fail "Didn't shut down properly: no \"Timer: # ticks\" shutdown message\n"
39       if !grep (/Timer: \d+ ticks/, @output);
40     fail "Didn't shut down properly: no \"Powering off\" shutdown message\n"
41       if !grep (/Powering off/, @output);
42 }
43
44 sub check_for_panic {
45     my (@output) = @_;
46
47     my ($panic) = grep (/PANIC/, @output);
48     return unless defined $panic;
49
50     print "Kernel panic: ", substr ($panic, index ($panic, "PANIC")), "\n";
51
52     my (@stack_line) = grep (/Call stack:/, @output);
53     if (@stack_line != 0) {
54         my (@addrs) = $stack_line[0] =~ /Call stack:((?: 0x[0-9a-f]+)+)/;
55         print "Call stack: @addrs\n";
56         print "Translation of call stack:\n";
57         print `backtrace kernel.o @addrs`;
58     }
59
60     if ($panic =~ /sec_no \< d-\>capacity/) {
61         print <<EOF;
62 \nThis assertion commonly fails when accessing a file via an inode that
63 has been closed and freed.  Freeing an inode clears all its sector
64 indexes to 0xcccccccc, which is not a valid sector number for disks
65 smaller than about 1.6 TB.
66 EOF
67     }
68
69     fail;
70 }
71
72 sub check_for_keyword {
73     my ($keyword, @output) = @_;
74     
75     my ($kw_line) = grep (/$keyword/, @output);
76     return unless defined $kw_line;
77
78     # Most output lines are prefixed by (test-name).  Eliminate this
79     # from our message for brevity.
80     $kw_line =~ s/^\([^\)]+\)\s+//;
81     print "$kw_line\n";
82
83     fail;
84 }
85
86 sub check_for_triple_fault {
87     my (@output) = @_;
88
89     return unless grep (/Pintos booting/, @output) > 1;
90
91     print <<EOF;
92 Pintos spontaneously rebooted during this test.
93 This is most often caused by unhandled page faults.
94 EOF
95
96     fail;
97 }
98
99 # Get @output without header or trailer.
100 sub get_core_output {
101     my ($p);
102     do { $p = shift; } while (defined ($p) && $p !~ /^Executing '.*':$/);
103     do { $p = pop; } while (defined ($p) && $p !~ /^Execution of '.*' complete.$/);
104     return @_;
105 }
106
107 sub compare_output {
108     my ($expected) = pop @_;
109     my ($output) = pop @_;
110     my (%options) = @_;
111
112     my (@output) = get_core_output (@$output);
113     fail "'$test' didn't run or didn't produce any output\n" if !@output;
114
115     if (exists $options{IGNORE_EXIT_CODES}) {
116         delete $options{IGNORE_EXIT_CODES};
117         @output = grep (!/^[a-zA-Z0-9-_]+: exit\(\d+\)$/, @output);
118     }
119     die "unknown option " . (keys (%options))[0] . "\n" if %options;
120
121     my ($msg);
122
123     # Compare actual output against each allowed output.
124     foreach my $exp_string (@$expected) {
125         my (@expected) = split ("\n", $exp_string);
126
127         $msg .= "Acceptable output:\n";
128         $msg .= join ('', map ("  $_\n", @expected));
129
130         # Check whether actual and expected match.
131         # If it's a perfect match, we're done.
132         if ($#output == $#expected) {
133             my ($eq) = 1;
134             for (my ($i) = 0; $i <= $#expected; $i++) {
135                 $eq = 0 if $output[$i] ne $expected[$i];
136             }
137             pass if $eq;
138         }
139
140         # They differ.  Output a diff.
141         my (@diff) = "";
142         my ($d) = Algorithm::Diff->new (\@expected, \@output);
143         while ($d->Next ()) {
144             my ($ef, $el, $af, $al) = $d->Get (qw (min1 max1 min2 max2));
145             if ($d->Same ()) {
146                 push (@diff, map ("  $_\n", $d->Items (1)));
147             } else {
148                 push (@diff, map ("- $_\n", $d->Items (1))) if $d->Items (1);
149                 push (@diff, map ("+ $_\n", $d->Items (2))) if $d->Items (2);
150             }
151         }
152
153         $msg .= "Differences in `diff -u' format:\n";
154         $msg .= join ('', @diff);
155     }
156
157     # Failed to match.  Report failure.
158     fail "Test output failed to match any acceptable form.\n\n$msg";
159 }
160
161 sub fail {
162     finish ("FAIL", @_);
163 }
164
165 sub pass {
166     finish ("PASS", @_);
167 }
168
169 sub finish {
170     my ($verdict, @rest) = @_;
171
172     my ($result_fn) = "$test.result";
173     open (RESULT, '>', $result_fn) or die "$result_fn: create: $!\n";
174     print RESULT "$verdict\n", $messages, @rest;
175     close (RESULT);
176
177     if ($verdict eq 'PASS') {
178         print STDOUT "pass $test\n";
179     } else {
180         print STDOUT "FAIL $test\n";
181     }
182     print STDOUT $messages, @rest, "\n";
183
184     exit 0;
185 }
186
187 sub read_text_file {
188     my ($file_name) = @_;
189     open (FILE, '<', $file_name) or die "$file_name: open: $!\n";
190     my (@content) = <FILE>;
191     chomp (@content);
192     close (FILE);
193     return @content;
194 }
195
196 1;