-
Notifications
You must be signed in to change notification settings - Fork 0
/
grade-lab-mmap
executable file
·58 lines (44 loc) · 1.52 KB
/
grade-lab-mmap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
import re
from gradelib import *
r = Runner(save("xv6.out"))
@test(0, "running mmaptest")
def test_mmaptest():
r.run_qemu(shell_script([
'mmaptest'
]), timeout=180)
@test(20, "mmaptest: mmap f", parent=test_mmaptest)
def test_mmaptest_mmap_f():
r.match('^test mmap f: OK$')
@test(10, "mmaptest: mmap private", parent=test_mmaptest)
def test_mmaptest_mmap_private():
r.match('^test mmap private: OK$')
@test(10, "mmaptest: mmap read-only", parent=test_mmaptest)
def test_mmaptest_mmap_readonly():
r.match('^test mmap read-only: OK$')
@test(10, "mmaptest: mmap read/write", parent=test_mmaptest)
def test_mmaptest_mmap_readwrite():
r.match('^test mmap read/write: OK$')
@test(10, "mmaptest: mmap dirty", parent=test_mmaptest)
def test_mmaptest_mmap_dirty():
r.match('^test mmap dirty: OK$')
@test(10, "mmaptest: not-mapped unmap", parent=test_mmaptest)
def test_mmaptest_mmap_unmap():
r.match('^test not-mapped unmap: OK$')
@test(10, "mmaptest: two files", parent=test_mmaptest)
def test_mmaptest_mmap_two():
r.match('^test mmap two files: OK$')
@test(40, "mmaptest: fork_test", parent=test_mmaptest)
def test_mmaptest_fork_test():
r.match('^fork_test OK$')
@test(19, "usertests")
def test_usertests():
r.run_qemu(shell_script([
'usertests -q'
]), timeout=300)
r.match('^ALL TESTS PASSED$')
@test(5, "lab-mmap-report.txt")
def test_answers():
# just a simple sanity check, will be graded manually
check_answers("lab-mmap-report.txt")
run_tests()