2002-06-08 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / tests / makefile
1 CSC=csc.exe
2
3 MCS=../mcs/mcs.exe
4 VERIFY=../tools/verifier.exe
5
6 TEST_SOURCES = \
7         test-1   test-2   test-3   test-4   test-5   test-6   test-7   test-8   test-9   test-10 \
8         test-11  test-12  test-13  test-14  test-15  test-16  test-17  test-18  test-19  test-20 \
9         test-21  test-22  test-23  test-24  test-25  test-26  test-27  test-28           test-30 \
10         test-31  test-32  test-33  test-34  test-35  test-36  test-37           test-39  test-40 \
11         test-41  test-42  test-43  test-44  test-45  test-46  test-47  test-48  test-49  test-50 \
12         test-51  test-52  test-53  test-54  test-55  test-56  test-57           test-59  test-60 \
13         test-61  test-62  test-63  test-64  test-65  test-66  test-67  test-68  test-69  test-70 \
14         test-71  test-72  test-73  test-74  test-75  test-76  test-77  test-78  test-79  test-80 \
15         test-81  test-82  test-83  test-84  test-85  test-86  test-87  test-88  test-89  test-90 \
16         test-91  test-92  test-93  test-94  test-95  test-96  test-97  test-98  test-99  test-100\
17         test-101 test-102 test-103 test-104 test-105 test-106 test-107 test-108 test-109 test-110\
18         test-111 test-112 test-113 test-114 test-115 test-116 test-117 test-118 test-119        \
19         test-121 test-122 test-123          test-125 test-126 test-127
20
21 UNSAFE_SOURCES = \
22         unsafe-1 unsafe-2
23
24 TEST_NOPASS = \
25         test-29 test-38 \
26         test-120
27
28 # Test 120 does not pass because the MS.NET runtime is buggy.
29
30 all: test-compiler test-unsafe
31
32 test-compiler:
33         -rm *.exe
34         for i in $(TEST_SOURCES); do \
35                 if $(MCS) $$i.cs > /dev/null; then \
36                         if ./$$i.exe; then \
37                                 echo $$i: ok; \
38                         else \
39                                 echo test $$i failed; exit; \
40                         fi; \
41                 else \
42                         echo compiler failed on $$i;   exit; \
43                 fi \
44         done
45
46 test-unsafe:
47         for i in $(UNSAFE_SOURCES); do \
48                 if $(MCS) --unsafe $$i.cs > /dev/null; then \
49                         if ./$$i.exe; then \
50                                 echo $$i: ok; \
51                         else \
52                                 echo test $$i failed; exit; \
53                         fi; \
54                 else \
55                         echo compiler failed on $$i;   exit; \
56                 fi \
57         done
58
59 test-jit:
60         for i in $(TEST_SOURCES:.cs=.exe); do \
61                 if mono ./$$i.exe; then \
62                         echo $$i: ok; \
63                 else \
64                         echo test $$i failed; exit; \
65                 fi \
66         done
67
68
69
70 verify:
71         for i in $(TEST_SOURCES); do \
72                 if $(MCS) -o mcs-gen-code.exe $$i.cs > /dev/null; then \
73                         if $(CSC) /out:csc-gen-code.exe $$i.cs > /dev/null; then \
74                                 if $(VERIFY) mcs-gen-code.exe csc-gen-code.exe > /dev/null; then \
75                                         echo $$i: identical assemblies; \
76                                 else \
77                                         echo $$i: unidentical assemblies; exit; \
78                                 fi; \
79                         fi \
80                 fi \
81         done
82
83
84 casts.cs: gen-cast-test.cs
85         $(CSC) /out:csc-cast.exe gen-cast-test.cs
86         ./csc-cast > casts.cs
87
88 casts-csc.exe: casts.cs
89         $(CSC) /out:casts-csc.exe casts.cs
90
91 casts.exe: casts.cs
92         $(MCS) casts.cs
93
94 csc-casts.out: casts-csc.exe
95         ./casts-csc.exe > csc-casts.out
96
97 msc-casts.out: casts.exe
98         ./casts.exe > msc-casts.out
99
100 test-casts: csc-casts.out msc-casts.out
101         cmp csc-casts.out msc-casts.out
102
103 clean:
104         rm *.exe
105         rm *.out
106         rm casts.cs
107