MarshalByRefObject.cs: Implemented GetLifetimeService() and
[mono.git] / mcs / tests / makefile
1 #
2 # You can change "RUNTIME" to control what runtime to use
3 # ie, make vs make RUNTIME=mono
4
5 CSC=csc.exe
6
7 MCS=../mcs/mcs.exe
8 MCS2=mono ../mcs/mcs.exe
9 VERIFY=../tools/verifier.exe
10
11 TEST_SOURCES = \
12         test-1   test-2   test-3   test-4   test-5   test-6   test-7   test-8   test-9   test-10 \
13         test-11  test-12  test-13  test-14  test-15  test-16  test-17  test-18  test-19  test-20 \
14         test-21  test-22  test-23  test-24  test-25  test-26  test-27  test-28  test-29  test-30 \
15         test-31  test-32  test-33  test-34  test-35  test-36  test-37  test-38  test-39  test-40 \
16         test-41  test-42  test-43  test-44           test-46  test-47  test-48  test-49  \
17         test-51  test-52           test-54  test-55  test-56  test-57           test-59  test-60 \
18         test-61  test-62  test-63  test-64  test-65                    test-68  test-69  test-70 \
19         test-71  test-72  test-73  test-74  test-75  test-76  test-77  test-78  test-79  test-80 \
20         test-81  test-82  test-83  test-84  test-85  test-86  test-87  test-88  test-89  test-90 \
21                  test-92  test-93  test-94  test-95  test-96  test-97  test-98  test-99  test-100\
22         test-101 test-102 test-103 test-104 test-105                   test-108 test-109 test-110\
23         test-111 test-112 test-113 test-114 test-115 test-116 test-117 test-118 test-119 \
24         test-121          test-123          test-125 test-126 test-127 test-128 test-129 test-130 \
25         test-131                   test-134 test-135 test-136 test-137 test-138 test-139 test-140 \
26         test-141 test-142 test-143 test-144 test-145 test-146 test-147 test-148 test-149 test-150 \
27                           test-153 test-154 test-155 test-156 test-157 test-158 test-159 test-160 \
28         test-161 test-162 test-163 test-164 test-165 test-166 test-167 test-168 test-169 test-170 \
29                  test-172 test-173 test-174 test-175 test-176 test-177          test-179
30
31
32 # NOTE: Slot test-178 is free, turns out it was an unsafe test.
33 #
34 #
35 UNSAFE_SOURCES = \
36         unsafe-1 unsafe-2 unsafe-3 test-58.cs test-171.cs unsafe-5.cs
37
38 WINDOWS_SOURCES = \
39         test-50 test-67
40
41 # A test is a 'no pass' if it fails on either windows or linux
42 # Test 120 does not pass because the MS.NET runtime is buggy.
43 TEST_NOPASS = \
44         test-45  test-53  test-91  test-106 test-107 test-120 test-122 test-132 test-133 test-66 test-177
45
46 all: test-compiler test-unsafe test-windows
47
48
49 # Compile with mono, run with MS jit
50 test-compiler:
51         @rm -f *.exe; \
52         for i in $(TEST_SOURCES); do \
53                 echo -n "Running $$i ... "; \
54                 if $(MCS) $$i.cs > /dev/null; then \
55                         if $(RUNTIME) ./$$i.exe > /dev/null; then \
56                                 echo $$i: ok; \
57                         else \
58                                 echo FAILED; exit 1; \
59                         fi; \
60                 else \
61                         echo FAILED TO COMPILE; exit 1; \
62                 fi \
63         done
64
65 # Compile with mono, run with MS jit
66 test-unsafe:
67         @for i in $(UNSAFE_SOURCES); do \
68                 echo -n "Running (unsafe) $$i ... "; \
69                 if $(MCS) --unsafe $$i.cs > /dev/null; then \
70                         if $(RUNTIME) ./$$i.exe > /dev/null; then \
71                                 echo OK; \
72                         else \
73                                 echo FAILED; exit 1; \
74                         fi; \
75                 else \
76                         echo FAILED WHILE COMPILING; exit 1; \
77                 fi \
78         done
79
80 # Compiled (previously) with mono, run with mono jit
81 test-jit:
82         @for i in $(TEST_SOURCES:.cs=.exe); do \
83                 echo -n "Running jit $$i ... "; \
84                 if mono ./$$i.exe > /dev/null; then \
85                         echo OK; \
86                 else \
87                         echo FAILED; exit 1; \
88                 fi \
89         done
90
91 # Compiled with mono, run with MS jit
92 test-windows:
93         @echo Running windows-only tests - these will fail on linux; \
94         for i in $(WINDOWS_SOURCES); do \
95                 echo -n "Running $$i ... "; \
96                 if $(MCS) $$i.cs > /dev/null; then \
97                         if ./$$i.exe > /dev/null; then \
98                                 echo OK; \
99                         else \
100                                 echo FAILED; exit 1; \
101                         fi; \
102                 else \
103                         echo FAILED TO COMPILE; exit 1; \
104                 fi \
105         done
106
107 # Compile with mono, run with mono jit
108 test-compiler-mono:
109         @rm -f *.exe; \
110         for i in $(TEST_SOURCES); do \
111                 echo -n "Running $$i ... "; \
112                 if $(MCS2) $$i.cs > /dev/null; then \
113                         if mono ./$$i.exe > /dev/null; then \
114                                 echo OK; \
115                         else \
116                                 echo FAILED; exit 1; \
117                         fi; \
118                 else \
119                         echo FAILED TO COMPILE; exit 1; \
120                 fi \
121         done
122         echo "Running NO_PASS tests ..."
123         for i in $(TEST_NOPASS); do \
124                 echo -n "Running $$i ... "; \
125                 if $(MCS2) $$i.cs > /dev/null; then \
126                         echo OK; \
127                 else \
128                         echo FAILED TO COMPILE; exit 1; \
129                 fi \
130         done
131
132 # Compile with mono, run with mono jit
133 test-unsafe-mono:
134         @rm -f *.exe; \
135         for i in $(UNSAFE_SOURCES); do \
136                 echo -n "Running $$i ... "; \
137                 if $(MCS2) --unsafe $$i.cs > /dev/null; then \
138                         if mono ./$$i.exe > /dev/null; then \
139                                 echo OK; \
140                         else \
141                                 echo FAILED; exit 1; \
142                         fi; \
143                 else \
144                         echo FAILED TO COMPILE; exit 1; \
145                 fi \
146         done
147
148 verify:
149         @for i in $(TEST_SOURCES); do \
150                 if $(MCS) -o mcs-gen-code.exe $$i.cs > /dev/null; then \
151                         if $(CSC) /out:csc-gen-code.exe $$i.cs > /dev/null; then \
152                                 if $(VERIFY) mcs-gen-code.exe csc-gen-code.exe > /dev/null; then \
153                                         echo $$i: identical assemblies; \
154                                 else \
155                                         echo $$i: unidentical assemblies; exit; \
156                                 fi; \
157                         fi \
158                 fi \
159         done; \
160         echo Verification passed
161
162
163 casts.cs: gen-cast-test.cs
164         $(CSC) /out:csc-cast.exe gen-cast-test.cs
165         ./csc-cast > casts.cs
166
167 casts-csc.exe: casts.cs
168         $(CSC) /out:casts-csc.exe casts.cs
169
170 casts.exe: casts.cs
171         $(MCS) casts.cs
172
173 csc-casts.out: casts-csc.exe
174         ./casts-csc.exe > csc-casts.out
175
176 msc-casts.out: casts.exe
177         ./casts.exe > msc-casts.out
178
179 test-casts: csc-casts.out msc-casts.out
180         cmp csc-casts.out msc-casts.out
181
182 clean:
183         rm *.exe
184         rm *.out
185         rm casts.cs
186