Clean tests/vm/zeros.
[pintos-anon] / src / tests / vm / Make.tests
1 # -*- makefile -*-
2
3 tests/vm_TESTS = $(addprefix tests/vm/,pt-grow-stack pt-grow-pusha      \
4 pt-grow-bad pt-big-stk-obj pt-bad-addr pt-bad-read pt-write-code        \
5 pt-write-code2 pt-grow-stk-sc page-linear page-parallel page-merge-seq  \
6 page-merge-par page-shuffle mmap-read mmap-close mmap-unmap             \
7 mmap-overlap mmap-twice mmap-write mmap-exit mmap-shuffle mmap-bad-fd   \
8 mmap-clean mmap-inherit mmap-misalign mmap-null mmap-over-code          \
9 mmap-over-data mmap-over-stk mmap-remove mmap-zero)
10
11 tests/vm_PROGS = $(tests/vm_TESTS) $(addprefix tests/vm/,child-linear   \
12 child-sort child-mm-wrt child-inherit)
13
14 tests/vm/pt-grow-stack_SRC = tests/vm/pt-grow-stack.c tests/arc4.c      \
15 tests/cksum.c tests/lib.c tests/main.c
16 tests/vm/pt-grow-pusha_SRC = tests/vm/pt-grow-pusha.c tests/lib.c       \
17 tests/main.c
18 tests/vm/pt-grow-bad_SRC = tests/vm/pt-grow-bad.c tests/lib.c tests/main.c
19 tests/vm/pt-big-stk-obj_SRC = tests/vm/pt-big-stk-obj.c tests/arc4.c    \
20 tests/cksum.c tests/lib.c tests/main.c
21 tests/vm/pt-bad-addr_SRC = tests/vm/pt-bad-addr.c tests/lib.c tests/main.c
22 tests/vm/pt-bad-read_SRC = tests/vm/pt-bad-read.c tests/lib.c tests/main.c
23 tests/vm/pt-write-code_SRC = tests/vm/pt-write-code.c tests/lib.c tests/main.c
24 tests/vm/pt-write-code2_SRC = tests/vm/pt-write-code-2.c tests/lib.c tests/main.c
25 tests/vm/pt-grow-stk-sc_SRC = tests/vm/pt-grow-stk-sc.c tests/lib.c tests/main.c
26 tests/vm/page-linear_SRC = tests/vm/page-linear.c tests/arc4.c  \
27 tests/lib.c tests/main.c
28 tests/vm/page-parallel_SRC = tests/vm/page-parallel.c tests/lib.c tests/main.c
29 tests/vm/page-merge-seq_SRC = tests/vm/page-merge-seq.c tests/arc4.c    \
30 tests/lib.c tests/main.c
31 tests/vm/page-merge-par_SRC = tests/vm/page-merge-par.c tests/arc4.c    \
32 tests/lib.c tests/main.c
33 tests/vm/page-shuffle_SRC = tests/vm/page-shuffle.c tests/arc4.c        \
34 tests/cksum.c tests/lib.c tests/main.c
35 tests/vm/mmap-read_SRC = tests/vm/mmap-read.c tests/lib.c tests/main.c
36 tests/vm/mmap-close_SRC = tests/vm/mmap-close.c tests/lib.c tests/main.c
37 tests/vm/mmap-unmap_SRC = tests/vm/mmap-unmap.c tests/lib.c tests/main.c
38 tests/vm/mmap-overlap_SRC = tests/vm/mmap-overlap.c tests/lib.c tests/main.c
39 tests/vm/mmap-twice_SRC = tests/vm/mmap-twice.c tests/lib.c tests/main.c
40 tests/vm/mmap-write_SRC = tests/vm/mmap-write.c tests/lib.c tests/main.c
41 tests/vm/mmap-exit_SRC = tests/vm/mmap-exit.c tests/lib.c tests/main.c
42 tests/vm/mmap-shuffle_SRC = tests/vm/mmap-shuffle.c tests/arc4.c        \
43 tests/cksum.c tests/lib.c tests/main.c
44 tests/vm/mmap-bad-fd_SRC = tests/vm/mmap-bad-fd.c tests/lib.c tests/main.c
45 tests/vm/mmap-clean_SRC = tests/vm/mmap-clean.c tests/lib.c tests/main.c
46 tests/vm/mmap-inherit_SRC = tests/vm/mmap-inherit.c tests/lib.c tests/main.c
47 tests/vm/mmap-misalign_SRC = tests/vm/mmap-misalign.c tests/lib.c       \
48 tests/main.c
49 tests/vm/mmap-null_SRC = tests/vm/mmap-null.c tests/lib.c tests/main.c
50 tests/vm/mmap-over-code_SRC = tests/vm/mmap-over-code.c tests/lib.c     \
51 tests/main.c
52 tests/vm/mmap-over-data_SRC = tests/vm/mmap-over-data.c tests/lib.c     \
53 tests/main.c
54 tests/vm/mmap-over-stk_SRC = tests/vm/mmap-over-stk.c tests/lib.c tests/main.c
55 tests/vm/mmap-remove_SRC = tests/vm/mmap-remove.c tests/lib.c tests/main.c
56 tests/vm/mmap-zero_SRC = tests/vm/mmap-zero.c tests/lib.c tests/main.c
57
58 tests/vm/child-linear_SRC = tests/vm/child-linear.c tests/arc4.c tests/lib.c
59 tests/vm/child-sort_SRC = tests/vm/child-sort.c tests/lib.c
60 tests/vm/child-mm-wrt_SRC = tests/vm/child-mm-wrt.c tests/lib.c tests/main.c
61 tests/vm/child-inherit_SRC = tests/vm/child-inherit.c tests/lib.c tests/main.c
62
63 tests/vm/pt-bad-read_PUTFILES = tests/vm/sample.txt
64 tests/vm/pt-write-code2_PUTFILES = tests/vm/sample.txt
65 tests/vm/mmap-close_PUTFILES = tests/vm/sample.txt
66 tests/vm/mmap-read_PUTFILES = tests/vm/sample.txt
67 tests/vm/mmap-unmap_PUTFILES = tests/vm/sample.txt
68 tests/vm/mmap-twice_PUTFILES = tests/vm/sample.txt
69 tests/vm/mmap-overlap_PUTFILES = tests/vm/zeros
70 tests/vm/mmap-exit_PUTFILES = tests/vm/child-mm-wrt
71 tests/vm/page-parallel_PUTFILES = tests/vm/child-linear
72 tests/vm/page-merge-seq_PUTFILES = tests/vm/child-sort
73 tests/vm/page-merge-par_PUTFILES = tests/vm/child-sort
74 tests/vm/mmap-clean_PUTFILES = tests/vm/sample.txt
75 tests/vm/mmap-inherit_PUTFILES = tests/vm/sample.txt tests/vm/child-inherit
76 tests/vm/mmap-misalign_PUTFILES = tests/vm/sample.txt
77 tests/vm/mmap-null_PUTFILES = tests/vm/sample.txt
78 tests/vm/mmap-over-code_PUTFILES = tests/vm/sample.txt
79 tests/vm/mmap-over-data_PUTFILES = tests/vm/sample.txt
80 tests/vm/mmap-over-stk_PUTFILES = tests/vm/sample.txt
81 tests/vm/mmap-remove_PUTFILES = tests/vm/sample.txt
82
83 tests/vm/page-linear.output: TIMEOUT = 300
84 tests/vm/page-shuffle.output: TIMEOUT = 600
85 tests/vm/mmap-shuffle.output: TIMEOUT = 600
86 tests/vm/page-merge-seq.output: TIMEOUT = 600
87 tests/vm/page-merge-par.output: TIMEOUT = 600
88
89 tests/vm/zeros:
90         dd if=/dev/zero of=$@ bs=1024 count=6
91
92 clean::
93         rm -f tests/vm/zeros