-
Notifications
You must be signed in to change notification settings - Fork 2
/
hw1-grade.txt
177 lines (142 loc) · 5.95 KB
/
hw1-grade.txt
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
time: 1685221306
warning: test tests/userprog/do-stack-align doesn't count for grading
warning: test tests/userprog/stack-align-4 doesn't count for grading
warning: test tests/userprog/stack-align-3 doesn't count for grading
warning: test tests/userprog/practice doesn't count for grading
warning: test tests/userprog/stack-align-1 doesn't count for grading
warning: test tests/userprog/exec-bound-2 doesn't count for grading
warning: test tests/userprog/exec-bound doesn't count for grading
warning: test tests/userprog/fssize doesn't count for grading
warning: test tests/userprog/exec-bound-3 doesn't count for grading
warning: test tests/userprog/stack-align-2 doesn't count for grading
warning: test tests/userprog/iloveos doesn't count for grading
warning: test tests/userprog/sc-boundary-3 doesn't count for grading
warning: test tests/userprog/do-nothing doesn't count for grading
TOTAL TESTING SCORE: 100.0%
ALL TESTED PASSED -- PERFECT SCORE
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SUMMARY BY TEST SET
Test Set Pts Max % Ttl % Max
--------------------------------------------- --- --- ------ ------
tests/userprog/Rubric.functionality 108/108 35.0%/ 35.0%
tests/userprog/Rubric.robustness 88/ 88 25.0%/ 25.0%
tests/userprog/no-vm/Rubric 1/ 1 10.0%/ 10.0%
tests/filesys/base/Rubric 30/ 30 30.0%/ 30.0%
--------------------------------------------- --- --- ------ ------
Total 100.0%/100.0%
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SUMMARY OF INDIVIDUAL TESTS
Functionality of system calls (tests/userprog/Rubric.functionality):
- Test argument passing on Pintos command line.
3/ 3 tests/userprog/args-none
3/ 3 tests/userprog/args-single
3/ 3 tests/userprog/args-multiple
3/ 3 tests/userprog/args-many
3/ 3 tests/userprog/args-dbl-space
- Test "create" system call.
3/ 3 tests/userprog/create-empty
3/ 3 tests/userprog/create-long
3/ 3 tests/userprog/create-normal
3/ 3 tests/userprog/create-exists
- Test "open" system call.
3/ 3 tests/userprog/open-missing
3/ 3 tests/userprog/open-normal
3/ 3 tests/userprog/open-twice
- Test "read" system call.
3/ 3 tests/userprog/read-normal
3/ 3 tests/userprog/read-zero
- Test "write" system call.
3/ 3 tests/userprog/write-normal
3/ 3 tests/userprog/write-zero
- Test "close" system call.
3/ 3 tests/userprog/close-normal
- Test "exec" system call.
5/ 5 tests/userprog/exec-once
5/ 5 tests/userprog/exec-multiple
5/ 5 tests/userprog/exec-arg
- Test "wait" system call.
5/ 5 tests/userprog/wait-simple
5/ 5 tests/userprog/wait-twice
- Test "exit" system call.
5/ 5 tests/userprog/exit
- Test "halt" system call.
3/ 3 tests/userprog/halt
- Test recursive execution of user programs.
15/15 tests/userprog/multi-recurse
- Test read-only executable feature.
3/ 3 tests/userprog/rox-simple
3/ 3 tests/userprog/rox-child
3/ 3 tests/userprog/rox-multichild
- Section summary.
28/ 28 tests passed
108/108 points subtotal
Robustness of system calls (tests/userprog/Rubric.robustness):
- Test robustness of file descriptor handling.
2/ 2 tests/userprog/close-stdin
2/ 2 tests/userprog/close-stdout
2/ 2 tests/userprog/close-bad-fd
2/ 2 tests/userprog/close-twice
2/ 2 tests/userprog/read-bad-fd
2/ 2 tests/userprog/read-stdout
2/ 2 tests/userprog/write-bad-fd
2/ 2 tests/userprog/write-stdin
2/ 2 tests/userprog/multi-child-fd
- Test robustness of pointer handling.
3/ 3 tests/userprog/create-bad-ptr
3/ 3 tests/userprog/exec-bad-ptr
3/ 3 tests/userprog/open-bad-ptr
3/ 3 tests/userprog/read-bad-ptr
3/ 3 tests/userprog/write-bad-ptr
- Test robustness of buffer copying across page boundaries.
3/ 3 tests/userprog/create-bound
3/ 3 tests/userprog/open-boundary
3/ 3 tests/userprog/read-boundary
3/ 3 tests/userprog/write-boundary
- Test handling of null pointer and empty strings.
2/ 2 tests/userprog/create-null
2/ 2 tests/userprog/open-null
2/ 2 tests/userprog/open-empty
- Test robustness of system call implementation.
3/ 3 tests/userprog/sc-bad-arg
3/ 3 tests/userprog/sc-bad-sp
5/ 5 tests/userprog/sc-boundary
5/ 5 tests/userprog/sc-boundary-2
- Test robustness of "exec" and "wait" system calls.
5/ 5 tests/userprog/exec-missing
5/ 5 tests/userprog/wait-bad-pid
5/ 5 tests/userprog/wait-killed
- Test robustness of exception handling.
1/ 1 tests/userprog/bad-read
1/ 1 tests/userprog/bad-write
1/ 1 tests/userprog/bad-jump
1/ 1 tests/userprog/bad-read2
1/ 1 tests/userprog/bad-write2
1/ 1 tests/userprog/bad-jump2
- Section summary.
34/ 34 tests passed
88/ 88 points subtotal
Functionality of features that VM might break (tests/userprog/no-vm/Rubric):
1/ 1 tests/userprog/no-vm/multi-oom
- Section summary.
1/ 1 tests passed
1/ 1 points subtotal
Functionality of base file system (tests/filesys/base/Rubric):
- Test basic support for small files.
1/ 1 tests/filesys/base/sm-create
2/ 2 tests/filesys/base/sm-full
2/ 2 tests/filesys/base/sm-random
2/ 2 tests/filesys/base/sm-seq-block
3/ 3 tests/filesys/base/sm-seq-random
- Test basic support for large files.
1/ 1 tests/filesys/base/lg-create
2/ 2 tests/filesys/base/lg-full
2/ 2 tests/filesys/base/lg-random
2/ 2 tests/filesys/base/lg-seq-block
3/ 3 tests/filesys/base/lg-seq-random
- Test synchronized multiprogram access to files.
4/ 4 tests/filesys/base/syn-read
4/ 4 tests/filesys/base/syn-write
2/ 2 tests/filesys/base/syn-remove
- Section summary.
13/ 13 tests passed
30/ 30 points subtotal