2010-06-29 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / tests / Makefile.am
1 SUBDIRS = cas assemblyresolve
2
3 # avoid including eglib twice since GLIB_LIBS == GMODULE_LIBS for eglib builds
4 if EGLIB_BUILD
5 glib_libs = $(GLIB_LIBS)
6 else
7 glib_libs = $(GLIB_LIBS) $(GMODULE_LIBS)
8 endif
9
10 check-local: test
11
12 aotcheck: testaot gshared-aot
13
14 TEST_PROG = ../interpreter/mint
15
16 JITTEST_PROG = $(if $(SGEN),$(top_builddir)/mono/mini/mono-sgen,$(top_builddir)/mono/mini/mono)
17
18 TEST_PROG_RUN = MONO_SHARED_DIR=$(mono_build_root)/runtime MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(TEST_PROG)
19 JITTEST_PROG_RUN = MONO_SHARED_DIR=$(mono_build_root)/runtime MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(JITTEST_PROG)
20
21 RUNTIME_ARGS=--config tests-config --optimize=all --debug
22
23 with_mono_path = MONO_PATH=$(mcs_topdir)/class/lib/net_2_0
24 with_mono_path_moonlight = MONO_PATH=$(mcs_topdir)/class/lib/moonlight_raw
25
26 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper
27 RUNTIME_MOONLIGHT = $(with_mono_path_moonlight) $(top_builddir)/runtime/mono-wrapper
28
29 MKBUNDLE = \
30         PKG_CONFIG_PATH=$(top_builddir):$(PKG_CONFIG_PATH) \
31         $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/mkbundle.exe
32
33 MCS = $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/gmcs.exe -unsafe -nowarn:0162 -nowarn:0168 -nowarn:0219 -debug
34 SMCS = $(RUNTIME_MOONLIGHT) --runtime=moonlight --security=temporary-smcs-hack $(mcs_topdir)/class/lib/moonlight_raw/smcs.exe -unsafe -nowarn:0162 -nowarn:0168 -nowarn:0219
35 ILASM = $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/ilasm.exe
36
37 BENCHSRC=fib.cs random.cs nested-loops.cs ackermann.cs tight-loop.cs sieve.cs
38
39 STRESS_TESTS_SRC=       \
40         abort-stress-1.cs       \
41         abort-stress-2.cs       \
42         abort-stress-3.cs       \
43         domain-stress.cs        \
44         gchandle-stress.cs      \
45         monitor-stress.cs       \
46         thread-stress.cs        \
47         gc-stress.cs            \
48         exit-stress.cs          \
49         process-stress.cs       \
50         assembly-load-stress.cs
51
52 BASE_TEST_CS_SRC=               \
53         array-init.cs           \
54         arraylist.cs            \
55         assemblyresolve_event.cs        \
56         assemblyresolve_event3.cs       \
57         checked.cs              \
58         char-isnumber.cs        \
59         create-instance.cs      \
60         field-layout.cs         \
61         pack-layout.cs          \
62         pack-bug.cs             \
63         hash-table.cs           \
64         test-ops.cs             \
65         obj.cs                  \
66         test-dup-mp.cs          \
67         string.cs               \
68         stringbuilder.cs        \
69         switch.cs               \
70         outparm.cs              \
71         delegate.cs             \
72         bitconverter.cs         \
73         exception.cs            \
74         exception2.cs           \
75         exception3.cs           \
76         exception4.cs           \
77         exception5.cs           \
78         exception6.cs           \
79         exception7.cs           \
80         exception8.cs           \
81         exception10.cs          \
82         exception11.cs          \
83         exception12.cs          \
84         exception13.cs          \
85         exception14.cs          \
86         exception15.cs          \
87         exception16.cs          \
88         exception17.cs          \
89         typeload-unaligned.cs   \
90         struct.cs               \
91         valuetype-gettype.cs    \
92         typeof-ptr.cs           \
93         static-constructor.cs   \
94         pinvoke.cs              \
95         pinvoke2.cs             \
96         pinvoke3.cs             \
97         pinvoke11.cs            \
98         pinvoke13.cs            \
99         pinvoke17.cs            \
100         invoke.cs               \
101         invoke2.cs              \
102         runtime-invoke.cs               \
103         invoke-string-ctors.cs          \
104         reinit.cs               \
105         box.cs                  \
106         array.cs                \
107         enum.cs                 \
108         enum2.cs                \
109         property.cs             \
110         enumcast.cs             \
111         assignable-tests.cs     \
112         array-cast.cs           \
113         array-subtype-attr.cs   \
114         cattr-compile.cs        \
115         cattr-field.cs          \
116         cattr-object.cs         \
117         custom-attr.cs          \
118         double-cast.cs          \
119         newobj-valuetype.cs     \
120         arraylist-clone.cs      \
121         setenv.cs               \
122         vtype.cs                \
123         isvaluetype.cs          \
124         iface6.cs               \
125         iface7.cs               \
126         ipaddress.cs            \
127         array-vt.cs             \
128         interface1.cs           \
129         reflection-enum.cs      \
130         reflection-prop.cs      \
131         reflection4.cs          \
132         reflection5.cs          \
133         reflection-const-field.cs \
134         many-locals.cs          \
135         string-compare.cs       \
136         test-prime.cs           \
137         params.cs               \
138         reflection.cs           \
139         interface.cs            \
140         iface.cs                \
141         iface2.cs               \
142         iface3.cs               \
143         iface4.cs               \
144         iface-large.cs          \
145         virtual-method.cs       \
146         intptrcast.cs           \
147         indexer.cs              \
148         stream.cs               \
149         console.cs              \
150         shift.cs                \
151         jit-int.cs              \
152         jit-uint.cs             \
153         jit-long.cs             \
154         long.cs                 \
155         jit-ulong.cs            \
156         jit-float.cs            \
157         pop.cs                  \
158         time.cs                 \
159         appdomain.cs        \
160         appdomain1.cs           \
161         appdomain2.cs           \
162         appdomain-client.cs     \
163         appdomain-unload.cs \
164         appdomain-async-invoke.cs       \
165         loader.cs       \
166         pointer.cs              \
167         hashcode.cs             \
168         delegate1.cs            \
169         delegate2.cs            \
170         delegate3.cs            \
171         delegate5.cs            \
172         delegate6.cs            \
173         delegate7.cs            \
174         delegate8.cs            \
175         delegate9.cs            \
176         remoting1.cs            \
177         remoting2.cs            \
178         remoting3.cs            \
179         remoting4.cs            \
180         remoting5.cs            \
181         largeexp.cs             \
182         largeexp2.cs            \
183         marshalbyref1.cs        \
184         static-ctor.cs          \
185         inctest.cs              \
186         bound.cs                \
187         array-invoke.cs         \
188         test-arr.cs             \
189         decimal.cs              \
190         decimal-array.cs        \
191         marshal.cs              \
192         marshal1.cs             \
193         marshal2.cs             \
194         marshal3.cs             \
195         marshal5.cs             \
196         marshal6.cs             \
197         marshal7.cs             \
198         marshal8.cs             \
199         marshal9.cs             \
200         marshalbool.cs          \
201         marshal-valuetypes.cs   \
202         test-byval-in-struct.cs \
203         thread.cs               \
204         thread5.cs              \
205         thread6.cs              \
206         thread-static.cs        \
207         thread-static-init.cs   \
208         context-static.cs       \
209         float-pop.cs            \
210         interfacecast.cs        \
211         array3.cs               \
212         classinit.cs            \
213         classinit2.cs           \
214         synchronized.cs         \
215         async_read.cs           \
216         threadpool.cs           \
217         threadpool1.cs          \
218         base-definition.cs      \
219         bug-27420.cs            \
220         bug-47295.cs            \
221         bug-46781.cs            \
222         bug-48015.cs            \
223         bug-42136.cs            \
224         bug-59286.cs            \
225         bug-70561.cs            \
226         bug-78311.cs            \
227         bug-78653.cs            \
228         bug-78656.cs            \
229         bug-77127.cs            \
230         bug-323114.cs           \
231         bug-331958.cs           \
232         interlocked.cs          \
233         cross-domain.cs         \
234         appdomain-exit.cs       \
235         delegate-async-exit.cs  \
236         delegate-delegate-exit.cs       \
237         delegate-exit.cs        \
238         finalizer-abort.cs      \
239         finalizer-exception.cs  \
240         finalizer-exit.cs       \
241         main-exit.cs    \
242         main-returns-abort-resetabort.cs        \
243         main-returns-background-abort-resetabort.cs     \
244         main-returns-background-resetabort.cs   \
245         main-returns-background.cs      \
246         main-returns-background-change.cs       \
247         main-returns.cs         \
248         subthread-exit.cs       \
249         desweak.cs              \
250         cominterop.cs           \
251         exists.cs               \
252         handleref.cs    \
253         transparentproxy.cs \
254         dbnull-missing.cs       \
255         test-type-ctor.cs       \
256         soft-float-tests.cs     \
257         thread-exit.cs          \
258         finalize-parent.cs      \
259         assemblyresolve_event2.2.cs     \
260         interlocked-2.2.cs      \
261         pinvoke-2.2.cs          \
262         bug-78431.2.cs          \
263         bug-79684.2.cs          \
264         catch-generics.2.cs     \
265         event-get.2.cs          \
266         safehandle.2.cs         \
267         stackframes-async.2.cs          \
268         module-cctor-loader.2.cs        \
269         generics-invoke-byref.2.cs      \
270         generic-signature-compare.2.cs  \
271         generics-sharing.2.cs   \
272         shared-generic-methods.2.cs     \
273         shared-generic-synchronized.2.cs        \
274         generic-inlining.2.cs   \
275         generic-initobj.2.cs    \
276         generic-delegate.2.cs   \
277         generic-sizeof.2.cs     \
278         generic-virtual.2.cs    \
279         generic-interface-methods.2.cs  \
280         generic-array-type.2.cs \
281         generic-method-patching.2.cs    \
282         generic-static-methods.2.cs     \
283         generic-null-call.2.cs  \
284         generic-special.2.cs    \
285         generic-exceptions.2.cs \
286         generic-virtual2.2.cs   \
287         generic-valuetype-interface.2.cs        \
288         generic-getgenericarguments.2.cs        \
289         generic-type-builder.2.cs       \
290         generic-synchronized.2.cs       \
291         generic-delegate-ctor.2.cs      \
292         generic-array-iface-set.2.cs    \
293         generic-typedef.2.cs    \
294         generic-marshalbyref.2.cs       \
295         generic-xdomain.2.cs    \
296         bug-431413.2.cs \
297         bug-459285.2.cs \
298         generic-virtual-invoke.2.cs     \
299         bug-461198.2.cs \
300         generic-sealed-virtual.2.cs     \
301         generic-system-arrays.2.cs      \
302         generic-stack-traces.2.cs       \
303         generic-stack-traces2.2.cs      \
304         bug-472600.2.cs \
305         recursive-generics.2.cs \
306         bug-473482.2.cs \
307         bug-473999.2.cs \
308         bug-479763.2.cs \
309         bug-616463.cs   \
310         bug-80392.2.cs          \
311         dynamic-method-access.2.cs      \
312         dynamic-method-finalize.2.cs    \
313         bug-82194.2.cs  \
314         anonarray.2.cs  \
315         ienumerator-interfaces.2.cs     \
316         array-enumerator-ifaces.2.cs    \
317         generic_type_definition_encoding.2.cs \
318         generic_type_definition.2.cs    \
319         bug-333798.2.cs         \
320         bug-333798-tb.2.cs              \
321         bug-335131.2.cs         \
322         bug-322722_patch_bx.2.cs                \
323         bug-348522.2.cs         \
324         bug-340662_bug.cs       \
325         bug-322722_dyn_method_throw.2.cs        \
326         bug-389886-2.cs \
327         bug-325283.2.cs \
328         thunks.cs \
329         winx64structs.cs \
330         bug-349190.2.cs \
331         nullable_boxing.2.cs    \
332         valuetype-equals.cs     \
333         custom-modifiers.2.cs   \
334         bug-382986.cs   \
335         test-inline-call-stack.cs       \
336         bug-324535.cs   \
337         modules.cs      \
338         bug-81673.cs    \
339         bug-81691.cs    \
340         bug-80307.cs    \
341         bug-415577.cs   \
342         filter-stack.cs \
343         vararg2.cs      \
344         bug-389886-sre-generic-interface-instances.cs   \
345         bug-461867.cs   \
346         bug-461941.cs   \
347         bug-461261.cs   \
348         bug-400716.cs   \
349         bug-462592.cs   \
350         bug-459094.cs   \
351         generic-unloading.2.cs  \
352         generic-unloading-sub.2.cs      \
353         bug-467456.cs   \
354         appdomain-unload-callback.cs    \
355         bug-508538.cs   \
356         bug-472692.2.cs         \
357         gchandles.cs    \
358         interlocked-3.cs        \
359         interlocked-4.2.cs      \
360         finalizer-wait.cs       \
361         critical-finalizers.cs  \
362         appdomain-thread-abort.cs \
363         xdomain-threads.cs      \
364         w32message.cs   \
365         bug-544446.cs   \
366         gc-altstack.cs  \
367         large-gc-bitmap.cs      \
368         bug-561239.cs   \
369         bug-562150.cs   \
370         bug-575941.cs   \
371         bug-599469.cs
372
373 TEST_CS_SRC_DIST=       \
374         $(BASE_TEST_CS_SRC)     \
375         async-exc-compilation.cs \
376         filter-stack.cs
377
378 if AMD64
379 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
380 else
381 if X86
382 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
383 else
384 TEST_CS_SRC = $(BASE_TEST_CS_SRC)
385 endif
386 endif
387
388 if IA64
389 TEST_CS_SRC+=async-exc-compilation.cs filter-stack.cs
390 # bug #319249
391 PLATFORM_DISABLED_TESTS=exception17.exe
392 PLATFORM_DISABLED_TESTS+=winx64structs.exe
393 endif
394
395 if X86
396
397 if HOST_WIN32
398 PLATFORM_DISABLED_TESTS=async-exc-compilation.exe
399 endif
400
401 endif
402
403 if POWERPC
404 # bug #71274
405 PLATFORM_DISABLED_TESTS=finalizer-abort.exe finalizer-exception.exe finalizer-exit.exe
406 endif
407
408 if ARM
409 PLATFORM_DISABLED_TESTS=filter-stack.exe
410 endif
411
412 # The two finalizer tests only work under sgen
413 # gc-altstack.exe fails under boehm because it has no support for altstack
414 DISABLED_TESTS=                 \
415         delegate-async-exception.exe    \
416         bug-348522.2.exe        \
417         finalizer-wait.exe      \
418         critical-finalizers.exe \
419         gc-altstack.exe \
420         $(PLATFORM_DISABLED_TESTS)
421
422 AOT_DISABLED_TESTS=constraints-load.exe
423
424 # These only compile with MS CSC
425 TEST_CSC_SRC=                   \
426         vararg.cs
427
428 TEST_IL_SRC=                    \
429         field-access.il         \
430         method-access.il        \
431         ldftn-access.il         \
432         cpblkTest.il            \
433         vbinterface.il          \
434         calliTest.il            \
435         ckfiniteTest.il         \
436         fault-handler.il                \
437         locallocTest.il         \
438         initblkTest.il          \
439         qt-instance.il          \
440         vararg.il               \
441         bug-29859.il            \
442         bug-78549.il            \
443         static-fields-nonconst.il       \
444         reload-at-bb-end.il     \
445         test-enum-indstoreil.il \
446         filter-bug.il           \
447         even-odd.il             \
448         bug-82022.il    \
449         vt-sync-method.il       \
450         enum_types.il   \
451         invalid-token.il        \
452         call_missing_method.il  \
453         call_missing_class.il   \
454         ldfld_missing_field.il  \
455         ldfld_missing_class.il  \
456         find-method.2.il        \
457         bug-79215.2.il  \
458         bug-79956.2.il  \
459         bug-327438.2.il \
460         bug-387274.2.il \
461         bug-426309.2.il \
462         ldtoken_with_byref_typespec.2.il \
463         resolve_method_bug.2.il \
464         resolve_field_bug.2.il \
465         resolve_type_bug.2.il   \
466         generics-sharing-other-exc.2.il \
467         generic-ldobj.2.il      \
468         generic-mkrefany.2.il   \
469         generic-refanyval.2.il  \
470         generic-ldtoken.2.il    \
471         generic-ldtoken-method.2.il     \
472         generic-ldtoken-field.2.il      \
473         generic-tailcall.2.il   \
474         generic-tailcall2.2.il  \
475         generic-array-exc.2.il  \
476         generic-valuetype-newobj2.2.il  \
477         generic-valuetype-newobj.2.il   \
478         generic-constrained.2.il        \
479         generic-type-load-exception.2.il        \
480         bug-81466.il    \
481         bug457574.il    \
482         bug445361.il    \
483         bug-463303.il   \
484         bug469742.2.il  \
485         bug-528055.il   \
486         constraints-load.il     \
487         array_load_exception.il \
488         bug-481403.il   \
489         interface-with-static-method.il \
490         bug-515884.il
491
492 #       bug-318677.il
493
494 # pre-requisite test sources: files that are not test themselves
495 # but that need to be compiled
496 PREREQ_IL_SRC=event-il.il module-cctor.il
497 PREREQ_CS_SRC=
498 PREREQ_IL_DLL_SRC=event-il.il module-cctor.il
499 PREREQ_CS_DLL_SRC=
500
501 PREREQSI_IL=$(PREREQ_IL_SRC:.il=.exe)
502 PREREQSI_CS=$(PREREQ_CS_SRC:.cs=.exe)
503 TESTSI_CS=$(TEST_CS_SRC:.cs=.exe)
504 TESTSI_IL=$(TEST_IL_SRC:.il=.exe)
505 TESTBS=$(BENCHSRC:.cs=.exe)
506 STRESS_TESTS=$(STRESS_TESTS_SRC:.cs=.exe)
507
508 EXTRA_DIST=test-driver $(TEST_CS_SRC_DIST) $(TEST_IL_SRC) \
509         $(BENCHSRC) $(STRESS_TESTS_SRC) stress-runner.pl $(PREREQ_IL_SRC) $(PREREQ_CS_SRC)
510
511 %.exe: %.il
512         $(ILASM) -out:$@ $<
513
514 %.exe: %.cs TestDriver.dll
515         $(MCS) -r:TestDriver.dll -out:$@ $<
516
517 # mkbundle works on ppc, but the pkg-config POC doesn't when run with make test
518 if POWERPC
519 test_platform:  testbundle
520 else
521 # Can't use mkbundle on win32 since there is no static build there
522 # Can't run test-unhandled-exception on Windows because of all the debug popups...
523 if HOST_WIN32
524 test_platform:
525 else
526 # mkbundle uses the installed mono-2.pc so it won't work if there is no system mono
527 #test_platform: testbundle test-iomap-regression
528 test_platform:  test-iomap-regression
529 endif
530 endif
531
532 #
533 # Tests that the internals in mono/io-layer/messages.c are ok by triggering the 
534 # code that checks that the table is properly sorted
535 #
536 test_messages: w32message.exe
537         > test_messages.zero
538         $(JITTEST_PROG_RUN) w32message.exe >& w32message.allout && cmp test_messages.zero w32message.allout
539
540 if MOONLIGHT
541 test_2_1 : test-coreclr-security
542 else
543 test_2_1 :
544 endif
545
546 # test_messages fails on the buildbots
547 #test: assemblyresolve/test/asm.dll testjit test-type-load test-generic-sharing test_platform test_2_1 test_messages
548 test: assemblyresolve/test/asm.dll testjit test-type-load test-generic-sharing test_platform test-runtime-invoke test-imt-big-iface test_2_1 test-process-exit
549
550 assemblyresolve/test/asm.dll:
551         $(MAKE) -C assemblyresolve prereq
552
553 TestDriver.dll:
554         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs
555
556 test_cs: $(TEST_PROG) $(TESTSI_CS) libtest.la
557         @failed=0; \
558         passed=0; \
559         for i in $(TESTSI_CS); do       \
560                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
561                 then \
562                         passed=`expr $${passed} + 1`; \
563                 else \
564                         if [ $$? = 2 ]; then break; fi; \
565                         failed=`expr $${failed} + 1`; \
566                 fi \
567         done; \
568         echo; echo ".cs: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
569
570 test_il: $(TEST_PROG) $(TESTSI_IL) libtest.la
571         @failed=0; \
572         passed=0; \
573         for i in $(TESTSI_IL); do       \
574                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" $(RUNTIME_ARGS); \
575                 then \
576                         passed=`expr $${passed} + 1`; \
577                 else \
578                         if [ $$? = 2 ]; then break; fi; \
579                         failed=`expr $${failed} + 1`; \
580                 fi \
581         done; \
582         echo; echo ".il: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
583
584 testb: $(TEST_PROG) $(TESTBS)
585         for i in $(TESTBS); do  \
586                 $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS);     \
587         done
588
589 runtest: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
590         @failed=0; \
591         passed=0; \
592         failed_tests="";\
593         for i in $(TESTSI_CS) $(TESTBS) $(TESTSI_IL); do        \
594                 rm -f $${i}.so; \
595                 if [ x$(AOT) = x1 ]; then if echo $(AOT_DISABLED_TESTS) | grep -v -q $${i}; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > $${i}.aotlog 2>&1 || exit 1; fi; fi; \
596                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
597                 then \
598                         passed=`expr $${passed} + 1`; \
599                 else \
600                         if [ $$? = 2 ]; then break; fi; \
601                         failed=`expr $${failed} + 1`; \
602                         failed_tests="$${failed_tests} $$i"; \
603                 fi \
604         done; \
605         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
606         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
607           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
608
609 runtest-managed: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
610         @$(RUNTIME) ./test-runner.exe -j a --disabled '$(DISABLED_TESTS)' $(TESTSI_CS) $(TESTBS) $(TESTSI_IL)
611
612 testjit:
613         @if test x$(M) != x; then $(MAKE) runtest-managed; else $(MAKE) runtest; fi
614
615 testaot:
616         @$(MAKE) AOT=1 runtest
617
618 testtrace:
619         @$(MAKE) RUNTIME_ARGS="$${RUNTIME_ARGS} --trace" runtest
620
621 testinterp:
622         @$(MAKE) JITTEST_PROG_RUN="$(TEST_PROG_RUN)" runtest
623
624 testjitspeed: $(JITTEST_PROG) $(TESTBS)
625         for i in $(TESTBS); do  \
626                 echo $$i;       \
627                 time $(JITTEST_PROG) $$i;       \
628         done
629
630 test-iomap-regression: exists.cs
631         @$(MCS) $(srcdir)/exists.cs -out:exists.exe
632         @echo "Testing exists.exe..."
633         @MONO_IOMAP=all $(RUNTIME) exists.exe
634
635 stresstest: $(STRESS_TESTS)
636         @failed=0; \
637         passed=0; \
638         failed_tests="";\
639         for i in $(STRESS_TESTS); do    \
640                 if $(srcdir)/stress-runner.pl $$i ../mini/mono $(RUNTIME_ARGS); \
641                 then \
642                         passed=`expr $${passed} + 1`; \
643                 else \
644                         if [ $$? = 2 ]; then break; fi; \
645                         failed=`expr $${failed} + 1`; \
646                         failed_tests="$${failed_tests} $$i"; \
647                 fi \
648         done; \
649         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
650         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
651           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
652
653 testbundle: console.exe
654         @echo "Testing mkbundle..."
655         @$(MKBUNDLE) --static console.exe > mkbundle.stdout
656         @$(with_mono_path) MONO_CFG_DIR=$(mono_cfg_dir) MONO_SHARED_DIR=$(mono_build_root)/runtime ./a.out >> mkbundle.stdout
657         @- rm -rf a.out
658
659 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
660 test-type-load: TestDriver.dll
661         @$(ILASM) /dll /output:load-missing.dll $(srcdir)/load-missing.il > /dev/null
662         @$(MCS) -t:library -out:t.dll -d:FOUND $(srcdir)/t-missing.cs
663         @$(MCS) -r:TestDriver.dll -r:load-missing.dll -r:t.dll -out:load-exceptions.exe $(srcdir)/load-exceptions.cs
664         @$(MCS) -t:library -out:t.dll $(srcdir)/t-missing.cs
665         @echo "Testing load-exception.exe..."
666         @$(RUNTIME) load-exceptions.exe > load-exceptions.exe.stdout 2> load-exceptions.exe.stderr
667
668 # Generated tests for runtime invoke
669 EXTRA_DIST += gen-runtime-invoke.cs
670 test-runtime-invoke: TestDriver.dll gen-runtime-invoke.exe
671         @$(RUNTIME) gen-runtime-invoke.exe > runtime-invoke.gen.cs
672         @$(MCS) -out:runtime-invoke.gen.exe -r:TestDriver.dll runtime-invoke.gen.cs
673         @echo "Testing runtime-invoke.gen.exe..."
674         @$(RUNTIME) runtime-invoke.gen.exe > runtime-invoke.gen.exe.stdout 2> runtime-invoke.gen.exe.stderr
675
676 EXTRA_DIST += make-imt-test.cs
677 test-imt-big-iface: TestDriver.dll make-imt-test.exe
678         @$(RUNTIME) make-imt-test.exe > imt_big_iface_test.cs
679         @$(MCS) -out:imt_big_iface_test.exe -r:TestDriver.dll imt_big_iface_test.cs
680         @echo "Testing imt_big_iface_test.exe..."
681         @$(RUNTIME) imt_big_iface_test.exe > imt_big_iface_test.exe.stdout 2> imt_big_iface_test.exe.stderr
682
683 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
684 test-inline-call-stack-library.dll: TestDriver.dll $(srcdir)/test-inline-call-stack-library.cs
685         $(MCS) -t:library -out:test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack-library.cs
686 test-inline-call-stack.exe: TestDriver.dll test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack.cs
687         $(MCS) -r:TestDriver.dll -r:test-inline-call-stack-library.dll -out:test-inline-call-stack.exe $(srcdir)/test-inline-call-stack.cs
688
689 EXTRA_DIST += unhandled-exception-base-configuration.config
690 EXTRA_DIST += unhandled-exception-legacy-configuration.config
691 EXTRA_DIST += unhandled-exception-test-case.2.cs
692 EXTRA_DIST += unhandled-exception-test-runner.2.cs
693 unhandled-exception-test-case.1.cs: unhandled-exception-test-case.2.cs
694         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case.1.cs
695 unhandled-exception-test-case-legacy.1.cs: unhandled-exception-test-case.1.cs
696         cp unhandled-exception-test-case.1.cs unhandled-exception-test-case-legacy.1.cs
697 unhandled-exception-test-case-legacy.2.cs: unhandled-exception-test-case.2.cs
698         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case-legacy.2.cs
699 unhandled-exception-config_files: unhandled-exception-base-configuration.config unhandled-exception-legacy-configuration.config
700         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.1.exe.config
701         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.2.exe.config
702         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.1.exe.config
703         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.2.exe.config
704 unhandled-exception-test-case.1.exe: unhandled-exception-test-case.1.cs
705         $(MCS) /debug unhandled-exception-test-case.1.cs
706 unhandled-exception-test-case-legacy.1.exe: unhandled-exception-test-case-legacy.1.cs
707         $(MCS) /debug unhandled-exception-test-case-legacy.1.cs
708 unhandled-exception-test-case.2.exe: unhandled-exception-test-case.2.cs
709         $(MCS) /debug unhandled-exception-test-case.2.cs
710 unhandled-exception-test-case-legacy.2.exe: unhandled-exception-test-case-legacy.2.cs
711         $(MCS) /debug unhandled-exception-test-case-legacy.2.cs
712 unhandled-exception-test-runner.2.exe: unhandled-exception-test-runner.2.cs
713         $(MCS) /debug unhandled-exception-test-runner.2.cs
714
715 test-unhandled-exception: unhandled-exception-test-runner.2.exe unhandled-exception-config_files unhandled-exception-test-case.1.exe unhandled-exception-test-case-legacy.1.exe  unhandled-exception-test-case.2.exe unhandled-exception-test-case-legacy.2.exe
716         $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
717
718 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
719 bug-80307.exe: $(srcdir)/bug-80307.cs
720         $(MCS) -r:System.Web -out:$@ $(srcdir)/bug-80307.cs
721         cd $(top_builddir)/runtime && $(MAKE) test-support-files
722
723 EXTRA_DIST += bug-81673-interface.cs
724 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
725         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
726         $(MCS) -out:bug-81673.exe -r:bug-81673-interface.dll $(srcdir)/bug-81673.cs
727         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
728
729 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
730 bug-81691.exe bug-81691-b.dll: $(srcdir)/bug-81691.cs $(srcdir)/bug-81691-a.cs $(srcdir)/bug-81691-b.cs
731         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs
732         $(MCS) -target:library -out:bug-81691-b.dll -r:bug-81691-a.dll $(srcdir)/bug-81691-b.cs
733         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
734         rm -f bug-81691-a.dll
735 bug-81691.exe: bug-81691-b.dll
736
737 EXTRA_DIST += bug-81466-lib.il
738 bug-81466-lib.dll: bug-81466-lib.il
739         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
740 bug-81466.exe: bug-81466.il bug-81466-lib.dll
741         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
742
743 EXTRA_DIST += bug-324535-il.il
744 bug-324535-il.dll : bug-324535-il.il
745         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
746 bug-324535.exe : bug-324535.cs bug-324535-il.dll
747         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
748
749 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
750 custom-modifiers-lib.dll: custom-modifiers-lib.il
751         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
752 custom-modifiers.2.exe: custom-modifiers.2.cs custom-modifiers-lib.dll
753         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
754
755 EXTRA_DIST += bug-382986-lib.cs
756 bug-382986-lib.dll: bug-382986-lib.cs
757         $(MCS) -target:library -out:$@ $(srcdir)/bug-382986-lib.cs
758 bug-382986.exe: bug-382986.cs bug-382986-lib.dll
759         $(MCS) -out:$@ -r:bug-382986-lib.dll $(srcdir)/bug-382986.cs
760
761 EXTRA_DIST += coreclr-security.cs
762
763 if MOONLIGHT
764 coreclr-security.exe : coreclr-security.cs
765         $(SMCS) -out:coreclr-security.exe $(srcdir)/coreclr-security.cs
766
767 test-coreclr-security : coreclr-security.exe
768         @echo "Testing coreclr-security.exe..."
769         @$(RUNTIME_MOONLIGHT) --security=core-clr-test coreclr-security.exe
770 endif
771
772 EXTRA_DIST += generic-unboxing.2.il
773 generic-unboxing.2.dll : generic-unboxing.2.il
774         $(ILASM) /dll /output:generic-unboxing.2.dll $(srcdir)/generic-unboxing.2.il
775
776 EXTRA_DIST += generic-boxing.2.il
777 generic-boxing.2.dll : generic-boxing.2.il generic-unboxing.2.dll
778         $(ILASM) /dll /output:generic-boxing.2.dll $(srcdir)/generic-boxing.2.il
779
780 EXTRA_DIST += generic-unbox.2.cs
781 generic-unbox.2.exe : generic-unbox.2.cs generic-unboxing.2.dll
782         $(MCS) -r:generic-unboxing.2.dll -out:$@ $(srcdir)/generic-unbox.2.cs
783
784 EXTRA_DIST += generic-box.2.cs
785 generic-box.2.exe : generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
786         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $(srcdir)/generic-box.2.cs
787
788 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
789 generic-delegate2-lib.2.dll : generic-delegate2-lib.2.il
790         $(ILASM) /dll /output:$@ $(srcdir)/generic-delegate2-lib.2.il
791 generic-delegate2.2.exe : generic-delegate2.2.cs generic-delegate2-lib.2.dll
792         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $(srcdir)/generic-delegate2.2.cs
793
794 gshared: test-generic-sharing
795
796 gshared-aot:
797         @$(MAKE) AOT=1 gshared
798
799 GSHARED_TESTS = \
800                 generics-sharing.2.exe shared-generic-methods.2.exe     \
801                 shared-generic-synchronized.2.exe generic-initobj.2.exe         \
802                 generics-sharing-other-exc.2.exe generic-box.2.exe              \
803                 generic-unbox.2.exe generic-delegate.2.exe generic-sizeof.2.exe \
804                 generic-ldobj.2.exe generic-mkrefany.2.exe                      \
805                 generic-refanyval.2.exe generic-ldtoken.2.exe                   \
806                 generic-ldtoken-method.2.exe  generic-ldtoken-field.2.exe       \
807                 generic-virtual.2.exe generic-tailcall.2.exe                    \
808                 generic-interface-methods.2.exe generic-array-type.2.exe        \
809                 generic-method-patching.2.exe generic-static-methods.2.exe      \
810                 generic-null-call.2.exe generic-tailcall2.2.exe                 \
811                 generic-array-exc.2.exe generic-special.2.exe                   \
812                 generic-exceptions.2.exe generic-delegate2.2.exe                \
813                 generic-virtual2.2.exe generic-valuetype-interface.2.exe        \
814                 generic-valuetype-newobj.2.exe generic-valuetype-newobj2.2.exe  \
815                 generic-getgenericarguments.2.exe generic-type-builder.2.exe    \
816                 generic-synchronized.2.exe generic-delegate-ctor.2.exe          \
817                 generic-constrained.2.exe bug-431413.2.exe                      \
818                 generic-virtual-invoke.2.exe generic-typedef.2.exe              \
819                 generic-marshalbyref.2.exe bug-459285.2.exe bug-461198.2.exe    \
820                 generic-sealed-virtual.2.exe generic-system-arrays.2.exe        \
821                 generic-stack-traces.2.exe generic-stack-traces2.2.exe          \
822                 bug-472600.2.exe bug-473482.2.exe bug-473999.2.exe              \
823                 bug-479763.2.exe generic-xdomain.2.exe                          \
824                 generic-type-load-exception.2.exe bug-616463.exe
825
826 test-generic-sharing-normal: $(GSHARED_TESTS)
827         @for fn in $+ ; do      \
828                 echo "Testing $$fn ...";        \
829                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;     \
830                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;     \
831                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;     \
832                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;      \
833                 if [ x$(AOT) = x1 ]; then MONO_GENERIC_SHARING=all $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $$fn > /dev/null || exit 1; MONO_GENERIC_SHARING=all $(RUNTIME) $$fn > $$fn.stdout || exit 1; fi; \
834         done
835
836 test-generic-sharing-managed: test-runner.exe $(GSHARED_TESTS)
837         @$(RUNTIME) ./test-runner.exe -j a --opt-sets "gshared gshared,shared gshared,-inline gshared,-inline,shared" $(GSHARED_TESTS)
838
839 test-generic-sharing:
840         @if test x$(M) != x; then $(MAKE) test-generic-sharing-managed; else $(MAKE) test-generic-sharing-normal; fi
841
842 EXTRA_DIST += async-exceptions.cs
843 async-exceptions.exe : async-exceptions.cs
844         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
845 test-async-exceptions : async-exceptions.exe
846         for i in `echo 0 1 2 3 4 5 6 7 8 9 10`; do $(RUNTIME) --inject-async-exc Tests:foo $$i async-exceptions.exe || exit 1; done
847         for i in `echo 0 1 2 3 4 5 6 7 8 9 10`; do $(RUNTIME) --inject-async-exc Tests:bar $$i async-exceptions.exe || exit 1; done
848
849 EXTRA_DIST += modules.cs modules-m1.cs
850 modules-m1.netmodule: modules-m1.cs
851         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
852 modules.exe: modules.cs modules-m1.netmodule TestDriver.dll
853         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
854
855 # Useful if mono is compiled with --enable-shared=no
856 patch-libtool:
857         cp "../../libtool" .
858         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
859         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
860         touch libtest.c
861
862 EXTRA_DIST += bug-438454.cs bug-438454.exe.stdout.expected
863 test-process-exit:
864         @$(MCS) $(srcdir)/bug-438454.cs -out:bug-438454.exe
865         @echo "Testing bug-438454.exe..."
866         @$(RUNTIME) bug-438454.exe > bug-438454.exe.stdout
867         @diff bug-438454.exe.stdout bug-438454.exe.stdout.expected
868
869 noinst_LTLIBRARIES = libtest.la
870
871 INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS)
872
873 if HOST_WIN32
874 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
875 # This shows up when compiling mono_test_marshal_delegate ()
876 libtest_la_CFLAGS=-fno-optimize-sibling-calls
877 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
878 # can't find them. So we use --kill-at to remove the @ suffix as well.
879 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
880 else
881 libtest_la_LDFLAGS = -rpath `pwd`
882 endif
883 libtest_la_SOURCES = libtest.c
884 libtest_la_LIBADD = $(glib_libs)
885
886 CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.aotlog *.exe stest.dat