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