Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / tests / threads / mlfqs-load-1.ck
1 # -*- perl -*-
2 use strict;
3 use warnings;
4 use tests::tests;
5
6 our ($test);
7 my (@output) = read_text_file ("$test.output");
8
9 common_checks (@output);
10
11 @output = get_core_output (@output);
12 fail "missing PASS in output"
13   unless grep ($_ eq '(mlfqs-load-1) PASS', @output);
14
15 pass;