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