File tree 5 files changed +60
-1
lines changed
5 files changed +60
-1
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,12 @@ UPROGS=\
184
184
_getParentIDtest\
185
185
_getChildrenTest\
186
186
_getSyscallCounterTest\
187
+ _getCBTtest\
188
+ _getTurnAroundTimeTest\
189
+ _getWaitingTimeTest\
187
190
_roundRobinTest\
191
+ _prioritySchedTest\
192
+
188
193
189
194
190
195
fs.img : mkfs README $(UPROGS )
@@ -255,7 +260,9 @@ qemu-nox-gdb: fs.img xv6.img .gdbinit
255
260
EXTRA =\
256
261
mkfs.c ulib.c user.h cat.c echo.c forktest.c grep.c kill.c\
257
262
ln.c ls.c mkdir.c rm.c stressfs.c usertests.c wc.c zombie.c\
258
- getParentIDtest.c getChildrenTest.c getSyscallCounterTest.c roundRobinTest.c\
263
+ getParentIDtest.c getChildrenTest.c getSyscallCounterTest.c\
264
+ getCBTtest.c getTurnAroundTimeTest.c getWaitingTimeTest.c\
265
+ roundRobinTest.c prioritySchedTest.c\
259
266
printf.c umalloc.c\
260
267
README dot-bochsrc *.pl toc.* runoff runoff1 runoff.list\
261
268
.gdbinit.tmpl gdbutil\
Original file line number Diff line number Diff line change
1
+ #include "types.h"
2
+ #include "stat.h"
3
+ #include "user.h"
4
+
5
+ int main ()
6
+ {
7
+ printf (1 , "This is getCBTtest template!" );
8
+
9
+ while (wait () != -1 )
10
+ ;
11
+
12
+ exit ();
13
+ }
Original file line number Diff line number Diff line change
1
+ #include "types.h"
2
+ #include "stat.h"
3
+ #include "user.h"
4
+
5
+ int main ()
6
+ {
7
+ printf (1 , "This is getTurnAroundTimeTest template!" );
8
+
9
+ while (wait () != -1 )
10
+ ;
11
+
12
+ exit ();
13
+ }
Original file line number Diff line number Diff line change
1
+ #include "types.h"
2
+ #include "stat.h"
3
+ #include "user.h"
4
+
5
+ int main ()
6
+ {
7
+ printf (1 , "This is getWaitingTimeTest template!" );
8
+
9
+ while (wait () != -1 )
10
+ ;
11
+
12
+ exit ();
13
+ }
Original file line number Diff line number Diff line change
1
+ #include "types.h"
2
+ #include "stat.h"
3
+ #include "user.h"
4
+
5
+ int main ()
6
+ {
7
+ printf (1 , "This is prioritySchedTest template!" );
8
+
9
+ while (wait () != -1 )
10
+ ;
11
+
12
+ exit ();
13
+ }
You can’t perform that action at this time.
0 commit comments