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