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