[marshal] Rethrow in native-to-managed wrapper to keep exception stacktrace (#5384)
[mono.git] / mono / tests / Makefile.am
1 SUBDIRS = gc-descriptors . testing_gac
2
3 check-local:
4         ok=:; \
5         $(MAKE) test-jit || ok=false; \
6         $(MAKE) test-generic-sharing || ok=false; \
7         $(MAKE) test-type-load || ok=false; \
8         $(MAKE) test-multi-netmodule || ok=false; \
9         $(MAKE) test-cattr-type-load || ok=false; \
10         $(MAKE) test-reflection-load-with-context || ok=false; \
11         $(MAKE) test-platform || ok=false; \
12         $(MAKE) test-console-output || ok=false; \
13         $(MAKE) test-env-options || ok=false; \
14         $(MAKE) test-unhandled-exception-2 || ok=false; \
15         $(MAKE) test-appdomain-unload || ok=false; \
16         $(MAKE) test-process-stress || ok=false; \
17         $(MAKE) test-pedump || ok=false; \
18         $(MAKE) test-internalsvisibleto || ok=false; \
19         $(MAKE) rm-empty-logs || ok=false; \
20         $(MAKE) runtest-gac-loading || ok=false; \
21         $$ok
22
23 check-full:
24         ok=; \
25         $(MAKE) test-sgen || ok=false; \
26         $(MAKE) check-local || ok=false; \
27         $$ok
28
29 check-parallel:
30         ok=; \
31         $(MAKE) compile-tests; \
32         $(MAKE) check-full || ok=false; \
33         $$ok
34
35 check-coreclr:
36         $(MAKE) -C $(mono_build_root)/acceptance-tests check-coreclr
37
38 check-stress:
39         $(MAKE) test-stress-sgen
40
41 # for backwards compatibility on Wrench
42 test-wrench: check-parallel
43
44 aotcheck: testaot gshared-aot
45
46 JITTEST_PROG = $(if $(VALGRIND), valgrind $(VALGRIND_ARGS),) $(if $(SGEN),$(top_builddir)/mono/mini/mono-sgen,$(top_builddir)/mono/mini/mono)
47
48 JITTEST_PROG_RUN = MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(JITTEST_PROG)
49
50
51 RUNTIME_ARGS=--config tests-config --optimize=all --debug
52
53 CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
54
55 with_mono_path = MONO_PATH=$(CLASS)
56
57 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper
58 TOOLS_RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/build $(top_builddir)/runtime/mono-wrapper --aot-path=$(mcs_topdir)/class/lib/build
59
60 MKBUNDLE = \
61         PKG_CONFIG_PATH=$(top_builddir):$(PKG_CONFIG_PATH) \
62         $(RUNTIME) $(CLASS)/mkbundle.exe
63
64 if FULL_AOT_TESTS
65 PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY,FULL_AOT_DESKTOP 
66 endif
67
68 if HYBRID_AOT_TESTS
69 PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY 
70 endif
71
72 MCS_NO_UNSAFE = $(TOOLS_RUNTIME) $(CSC) -debug:portable \
73         -noconfig -nologo \
74         -nowarn:0162 -nowarn:0168 -nowarn:0219 -nowarn:0414 -nowarn:0618 \
75         -nowarn:0169 -nowarn:1690 -nowarn:0649 -nowarn:0612 -nowarn:3021 \
76         -nowarn:0197 $(PROFILE_MCS_FLAGS)
77 MCS_NO_LIB = $(MCS_NO_UNSAFE) -unsafe
78
79 MCS = $(MCS_NO_LIB)
80
81 ILASM = $(TOOLS_RUNTIME) $(mcs_topdir)/class/lib/build/ilasm.exe
82
83 TEST_RUNNER = ./test-runner.exe --runtime $(top_builddir)/runtime/mono-wrapper --mono-path "$(CLASS)"
84
85 if FULL_AOT_TESTS
86 TEST_RUNNER += --runtime-args "$(AOT_RUN_FLAGS)"
87 endif
88
89 if HYBRID_AOT_TESTS
90 TEST_RUNNER += --runtime-args "$(AOT_RUN_FLAGS)"
91 endif
92
93 if HOST_WIN32
94 TEST_RUNNER += --config tests-config --runtime $(if $(MONO_EXECUTABLE),$(shell cygpath -w -a $(MONO_EXECUTABLE) | sed 's/\\/\\\\/g'),mono)
95 else
96 TEST_RUNNER += --config tests-config --runtime $(if $(MONO_EXECUTABLE),$(MONO_EXECUTABLE),mono)
97 endif
98
99 TEST_RUNNER += $(if $(V), --verbose,)
100
101 TESTS_BENCH_SRC=fib.cs random.cs nested-loops.cs ackermann.cs tight-loop.cs sieve.cs
102
103 TESTS_STRESS_SRC=       \
104         abort-stress-1.cs       \
105         abort-stress-2.cs       \
106         abort-stress-3.cs       \
107         domain-stress.cs        \
108         gchandle-stress.cs      \
109         monitor-stress.cs       \
110         thread-stress.cs        \
111         gc-stress.cs            \
112         gc-copy-stress.cs       \
113         gc-graystack-stress.cs          \
114         exit-stress.cs          \
115         process-stress.cs       \
116         assembly-load-stress.cs
117
118 # Disabled until ?mcs is fixed
119 #       bug-331958.cs
120 TESTS_CS_SRC=           \
121         generic-unloading-sub.2.cs      \
122         create-instance.cs      \
123         bug-2907.cs             \
124         array-init.cs           \
125         arraylist.cs            \
126         assembly-load-remap.cs  \
127         assemblyresolve_event.cs        \
128         assemblyresolve_event3.cs       \
129         assemblyresolve_event4.cs       \
130         assemblyresolve_event5.cs       \
131         checked.cs              \
132         char-isnumber.cs        \
133         field-layout.cs         \
134         pack-layout.cs          \
135         pack-bug.cs             \
136         hash-table.cs           \
137         test-ops.cs             \
138         obj.cs                  \
139         test-dup-mp.cs          \
140         string.cs               \
141         stringbuilder.cs        \
142         switch.cs               \
143         outparm.cs              \
144         delegate.cs             \
145         bitconverter.cs         \
146         exception.cs            \
147         exception2.cs           \
148         exception3.cs           \
149         exception4.cs           \
150         exception5.cs           \
151         exception6.cs           \
152         exception7.cs           \
153         exception8.cs           \
154         exception10.cs          \
155         exception11.cs          \
156         exception12.cs          \
157         exception13.cs          \
158         exception14.cs          \
159         exception15.cs          \
160         exception16.cs          \
161         exception17.cs          \
162         exception18.cs          \
163         typeload-unaligned.cs   \
164         struct.cs               \
165         valuetype-gettype.cs    \
166         typeof-ptr.cs           \
167         static-constructor.cs   \
168         pinvoke.cs              \
169         pinvoke-utf8.cs         \
170         pinvoke3.cs             \
171         pinvoke11.cs            \
172         pinvoke13.cs            \
173         pinvoke17.cs            \
174         invoke.cs               \
175         invoke2.cs              \
176         runtime-invoke.cs               \
177         invoke-string-ctors.cs          \
178         reinit.cs               \
179         box.cs                  \
180         array.cs                \
181         enum.cs                 \
182         enum2.cs                \
183         enum-intrins.cs         \
184         property.cs             \
185         enumcast.cs             \
186         assignable-tests.cs     \
187         array-cast.cs           \
188         array-subtype-attr.cs   \
189         cattr-compile.cs        \
190         cattr-field.cs          \
191         cattr-object.cs         \
192         custom-attr.cs          \
193         double-cast.cs          \
194         newobj-valuetype.cs     \
195         arraylist-clone.cs      \
196         setenv.cs               \
197         vtype.cs                \
198         isvaluetype.cs          \
199         iface6.cs               \
200         iface7.cs               \
201         ipaddress.cs            \
202         array-vt.cs             \
203         interface1.cs           \
204         reflection-enum.cs      \
205         reflection-prop.cs      \
206         reflection4.cs          \
207         reflection5.cs          \
208         reflection-const-field.cs \
209         many-locals.cs          \
210         string-compare.cs       \
211         test-prime.cs           \
212         test-tls.cs             \
213         params.cs               \
214         reflection.cs           \
215         interface.cs            \
216         iface.cs                \
217         iface2.cs               \
218         iface3.cs               \
219         iface4.cs               \
220         iface-large.cs          \
221         virtual-method.cs       \
222         intptrcast.cs           \
223         indexer.cs              \
224         stream.cs               \
225         console.cs              \
226         shift.cs                \
227         jit-int.cs              \
228         jit-uint.cs             \
229         jit-long.cs             \
230         long.cs                 \
231         jit-ulong.cs            \
232         jit-float.cs            \
233         pop.cs                  \
234         time.cs                 \
235         pointer.cs              \
236         hashcode.cs             \
237         delegate1.cs            \
238         delegate2.cs            \
239         delegate3.cs            \
240         delegate5.cs            \
241         delegate6.cs            \
242         delegate7.cs            \
243         delegate8.cs            \
244         delegate10.cs           \
245         delegate11.cs           \
246         delegate12.cs           \
247         delegate13.cs           \
248         largeexp.cs             \
249         largeexp2.cs            \
250         marshalbyref1.cs        \
251         static-ctor.cs          \
252         inctest.cs              \
253         bound.cs                \
254         array-invoke.cs         \
255         test-arr.cs             \
256         decimal.cs              \
257         decimal-array.cs        \
258         marshal.cs              \
259         marshal1.cs             \
260         marshal2.cs             \
261         marshal3.cs             \
262         marshal5.cs             \
263         marshal6.cs             \
264         marshal7.cs             \
265         marshal8.cs             \
266         marshal9.cs             \
267         marshalbool.cs          \
268         test-byval-in-struct.cs \
269         thread.cs               \
270         thread5.cs              \
271         thread-static.cs        \
272         thread-static-init.cs   \
273         context-static.cs       \
274         float-pop.cs            \
275         interfacecast.cs        \
276         array3.cs               \
277         classinit.cs            \
278         classinit2.cs           \
279         classinit3.cs           \
280         synchronized.cs         \
281         async_read.cs           \
282         threadpool.cs           \
283         threadpool1.cs          \
284         threadpool-exceptions1.cs \
285         threadpool-exceptions2.cs \
286         threadpool-exceptions3.cs \
287         threadpool-exceptions4.cs \
288         threadpool-exceptions5.cs \
289         threadpool-exceptions6.cs \
290         base-definition.cs      \
291         bug-27420.cs            \
292         bug-46781.cs            \
293         bug-42136.cs            \
294         bug-59286.cs            \
295         bug-70561.cs            \
296         bug-78311.cs            \
297         bug-78653.cs            \
298         bug-78656.cs            \
299         bug-77127.cs            \
300         bug-323114.cs           \
301         bug-Xamarin-5278.cs     \
302         interlocked.cs          \
303         delegate-async-exit.cs  \
304         delegate-delegate-exit.cs       \
305         delegate-exit.cs        \
306         finalizer-abort.cs      \
307         finalizer-exception.cs  \
308         finalizer-exit.cs       \
309         finalizer-thread.cs     \
310         main-exit.cs    \
311         main-returns-abort-resetabort.cs        \
312         main-returns-background-abort-resetabort.cs     \
313         main-returns-background-resetabort.cs   \
314         main-returns-background.cs      \
315         main-returns-background-change.cs       \
316         main-returns.cs         \
317         subthread-exit.cs       \
318         desweak.cs              \
319         exists.cs               \
320         handleref.cs    \
321         dbnull-missing.cs       \
322         test-type-ctor.cs       \
323         soft-float-tests.cs     \
324         thread-exit.cs          \
325         finalize-parent.cs      \
326         interlocked-2.2.cs      \
327         pinvoke-2.2.cs          \
328         bug-78431.2.cs          \
329         bug-79684.2.cs          \
330         catch-generics.2.cs     \
331         event-get.2.cs          \
332         safehandle.2.cs         \
333         module-cctor-loader.2.cs        \
334         generics-invoke-byref.2.cs      \
335         generic-signature-compare.2.cs  \
336         generics-sharing.2.cs   \
337         shared-generic-methods.2.cs     \
338         shared-generic-synchronized.2.cs        \
339         generic-inlining.2.cs   \
340         generic-initobj.2.cs    \
341         generic-delegate.2.cs   \
342         generic-sizeof.2.cs     \
343         generic-virtual.2.cs    \
344         generic-interface-methods.2.cs  \
345         generic-array-type.2.cs \
346         generic-method-patching.2.cs    \
347         generic-static-methods.2.cs     \
348         generic-null-call.2.cs  \
349         generic-special.2.cs    \
350         generic-special2.2.cs   \
351         generic-exceptions.2.cs \
352         generic-virtual2.2.cs   \
353         generic-valuetype-interface.2.cs        \
354         generic-getgenericarguments.2.cs        \
355         generic-synchronized.2.cs       \
356         generic-delegate-ctor.2.cs      \
357         generic-array-iface-set.2.cs    \
358         generic-typedef.2.cs    \
359         bug-431413.2.cs \
360         bug-459285.2.cs \
361         generic-virtual-invoke.2.cs     \
362         bug-461198.2.cs \
363         generic-sealed-virtual.2.cs     \
364         generic-system-arrays.2.cs      \
365         generic-stack-traces.2.cs       \
366         generic-stack-traces2.2.cs      \
367         bug-472600.2.cs \
368         recursive-generics.2.cs \
369         bug-473482.2.cs \
370         bug-473999.2.cs \
371         bug-479763.2.cs \
372         bug-616463.cs   \
373         bug-80392.2.cs          \
374         bug-82194.2.cs  \
375         anonarray.2.cs  \
376         ienumerator-interfaces.2.cs     \
377         array-enumerator-ifaces.2.cs    \
378         generic_type_definition_encoding.2.cs \
379         bug-333798.2.cs         \
380         bug-348522.2.cs         \
381         bug-340662_bug.cs       \
382         bug-325283.2.cs \
383         thunks.cs \
384         winx64structs.cs \
385         nullable_boxing.2.cs    \
386         valuetype-equals.cs     \
387         custom-modifiers.2.cs   \
388         bug-382986.cs   \
389         test-inline-call-stack.cs       \
390         bug-324535.cs   \
391         modules.cs      \
392         bug-81673.cs    \
393         bug-81691.cs    \
394         bug-415577.cs   \
395         filter-stack.cs \
396         vararg.cs       \
397         vararg2.cs      \
398         bug-461867.cs   \
399         bug-461941.cs   \
400         bug-461261.cs   \
401         bug-400716.cs   \
402         bug-459094.cs   \
403         bug-467456.cs   \
404         bug-508538.cs   \
405         bug-472692.2.cs         \
406         gchandles.cs    \
407         interlocked-3.cs        \
408         interlocked-4.2.cs      \
409         w32message.cs   \
410         gc-altstack.cs  \
411         large-gc-bitmap.cs      \
412         bug-561239.cs   \
413         bug-562150.cs   \
414         bug-599469.cs   \
415         monitor-resurrection.cs \
416         monitor-wait-abort.cs   \
417         monitor-abort.cs        \
418         bug-666008.cs   \
419         bug-685908.cs   \
420         sgen-long-vtype.cs      \
421         delegate-invoke.cs      \
422         bug-696593.cs   \
423         bug-705140.cs   \
424         bug-1147.cs     \
425         mono-path.cs    \
426         bug-bxc-795.cs  \
427         bug-3903.cs     \
428         async-with-cb-throws.cs \
429         bug-6148.cs     \
430         bug-10127.cs    \
431         bug-18026.cs    \
432         allow-synchronous-major.cs      \
433         block_guard_restore_aligment_on_exit.cs \
434         thread_static_gc_layout.cs \
435         sleep.cs \
436         bug-27147.cs    \
437         bug-30085.cs    \
438         bug-17537.cs    \
439         pinvoke_ppcc.cs \
440         pinvoke_ppcs.cs \
441         pinvoke_ppci.cs \
442         pinvoke_ppcf.cs \
443         pinvoke_ppcd.cs \
444         bug-29585.cs    \
445         priority.cs     \
446         abort-cctor.cs  \
447         thread-native-exit.cs \
448         reference-loader.cs \
449         thread-suspend-suspended.cs \
450         thread-suspend-selfsuspended.cs \
451         remoting4.cs    \
452         remoting1.cs    \
453         remoting2.cs    \
454         remoting3.cs    \
455         remoting5.cs    \
456         appdomain.cs    \
457         appdomain-client.cs     \
458         appdomain-unload.cs     \
459         appdomain-async-invoke.cs       \
460         appdomain-thread-abort.cs       \
461         appdomain1.cs   \
462         appdomain2.cs   \
463         appdomain-exit.cs       \
464         appdomain-serialize-exception.cs \
465         assemblyresolve_event2.2.cs     \
466         appdomain-unload-callback.cs    \
467         appdomain-unload-doesnot-raise-pending-events.cs        \
468         appdomain-unload-asmload.cs     \
469         unload-appdomain-on-shutdown.cs \
470         bug-47295.cs    \
471         loader.cs       \
472         pinvoke2.cs     \
473         generic-type-builder.2.cs       \
474         dynamic-generic-size.cs \
475         cominterop.cs   \
476         dynamic-method-access.2.cs      \
477         dynamic-method-finalize.2.cs    \
478         dynamic-method-stack-traces.cs  \
479         generic_type_definition.2.cs    \
480         bug-333798-tb.2.cs      \
481         bug-335131.2.cs \
482         bug-322722_patch_bx.2.cs        \
483         bug-322722_dyn_method_throw.2.cs        \
484         bug-389886-2.cs \
485         bug-349190.2.cs \
486         bug-389886-sre-generic-interface-instances.cs   \
487         bug-462592.cs   \
488         bug-575941.cs   \
489         bug-389886-3.cs \
490         constant-division.cs    \
491         dynamic-method-resurrection.cs  \
492         bug-80307.cs    \
493         assembly_append_ordering.cs     \
494         bug-544446.cs   \
495         bug-36848.cs    \
496         generic-marshalbyref.2.cs       \
497         stackframes-async.2.cs  \
498         transparentproxy.cs     \
499         bug-48015.cs    \
500         delegate9.cs    \
501         marshal-valuetypes.cs   \
502         xdomain-threads.cs      \
503         monitor.cs      \
504         generic-xdomain.2.cs    \
505         threadpool-exceptions7.cs       \
506         cross-domain.cs \
507         generic-unloading.2.cs  \
508         namedmutex-destroy-race.cs      \
509         thread6.cs      \
510         appdomain-threadpool-unload.cs  \
511         process-unref-race.cs   \
512         bug-46661.cs    \
513         w32message.cs \
514         runtime-invoke.gen.cs \
515         imt_big_iface_test.cs \
516         bug-58782-plain-throw.cs \
517         bug-58782-capture-and-throw.cs
518
519 if AMD64
520 TESTS_CS_SRC += async-exc-compilation.cs finally_guard.cs finally_block_ending_in_dead_bb.cs
521 endif
522
523 if X86
524 TESTS_CS_SRC += async-exc-compilation.cs finally_guard.cs finally_block_ending_in_dead_bb.cs
525 endif
526
527 TESTS_IL_SRC=                   \
528         field-access.il         \
529         method-access.il        \
530         ldftn-access.il         \
531         cpblkTest.il            \
532         vbinterface.il          \
533         calliTest.il            \
534         calliGenericTest.il             \
535         ckfiniteTest.il         \
536         fault-handler.il                \
537         locallocTest.il         \
538         initblkTest.il          \
539         qt-instance.il          \
540         vararg.il               \
541         bug-29859.il            \
542         bug-78549.il            \
543         static-fields-nonconst.il       \
544         reload-at-bb-end.il     \
545         test-enum-indstoreil.il \
546         filter-bug.il           \
547         even-odd.il             \
548         bug-82022.il    \
549         vt-sync-method.il       \
550         enum_types.il   \
551         invalid-token.il        \
552         call_missing_method.il  \
553         call_missing_class.il   \
554         ldfld_missing_field.il  \
555         ldfld_missing_class.il  \
556         find-method.2.il        \
557         bug-79215.2.il  \
558         bug-79956.2.il  \
559         bug-327438.2.il \
560         bug-387274.2.il \
561         bug-426309.2.il \
562         ldtoken_with_byref_typespec.2.il \
563         resolve_method_bug.2.il \
564         resolve_field_bug.2.il \
565         resolve_type_bug.2.il   \
566         generics-sharing-other-exc.2.il \
567         generic-ldobj.2.il      \
568         generic-mkrefany.2.il   \
569         generic-refanyval.2.il  \
570         generic-ldtoken.2.il    \
571         generic-ldtoken-method.2.il     \
572         generic-ldtoken-field.2.il      \
573         generic-tailcall.2.il   \
574         generic-tailcall2.2.il  \
575         generic-array-exc.2.il  \
576         generic-valuetype-newobj2.2.il  \
577         generic-valuetype-newobj.2.il   \
578         generic-constrained.2.il        \
579         generic-type-load-exception.2.il        \
580         bug-81466.il    \
581         bug457574.il    \
582         bug445361.il    \
583         bug-463303.il   \
584         bug469742.2.il  \
585         bug-528055.il   \
586         array_load_exception.il \
587         bug-481403.il   \
588         interface-with-static-method.il \
589         bug-633291.il   \
590         delegate-with-null-target.il    \
591         bug-318677.il   \
592         gsharing-valuetype-layout.il    \
593         invalid_generic_instantiation.il \
594         bug-45841-fpstack-exceptions.il \
595         instance_tailrec.il
596
597 TESTS_GSHARED_SRC = \
598         generics-sharing.2.cs   \
599         shared-generic-methods.2.cs     \
600         shared-generic-synchronized.2.cs        \
601         generic-initobj.2.cs            \
602         generics-sharing-other-exc.2.cs \
603         generic-box.2.cs                \
604         generic-unbox.2.cs      \
605         generic-delegate.2.cs   \
606         generic-sizeof.2.cs     \
607         generic-ldobj.2.cs      \
608         generic-mkrefany.2.cs                   \
609         generic-refanyval.2.cs  \
610         generic-ldtoken.2.cs                    \
611         generic-ldtoken-method.2.cs     \
612         generic-ldtoken-field.2.cs      \
613         generic-virtual.2.cs    \
614         generic-tailcall.2.cs                   \
615         generic-interface-methods.2.cs  \
616         generic-array-type.2.cs \
617         generic-method-patching.2.cs    \
618         generic-static-methods.2.cs     \
619         generic-null-call.2.cs  \
620         generic-tailcall2.2.cs                  \
621         generic-array-exc.2.cs  \
622         generic-special.2.cs                    \
623         generic-special2.2.cs   \
624         generic-exceptions.2.cs \
625         generic-delegate2.2.cs          \
626         generic-virtual2.2.cs   \
627         generic-valuetype-interface.2.cs        \
628         generic-valuetype-newobj.2.cs   \
629         generic-valuetype-newobj2.2.cs  \
630         generic-getgenericarguments.2.cs        \
631         generic-synchronized.2.cs       \
632         generic-delegate-ctor.2.cs              \
633         generic-constrained.2.cs        \
634         bug-431413.2.cs                 \
635         generic-virtual-invoke.2.cs     \
636         generic-typedef.2.cs            \
637         generic-marshalbyref.2.cs       \
638         bug-459285.2.cs \
639         bug-461198.2.cs \
640         generic-sealed-virtual.2.cs     \
641         generic-system-arrays.2.cs      \
642         generic-stack-traces.2.cs       \
643         generic-stack-traces2.2.cs              \
644         bug-472600.2.cs \
645         bug-473482.2.cs \
646         bug-473999.2.cs         \
647         bug-479763.2.cs                         \
648         generic-type-load-exception.2.cs        \
649         bug-616463.cs   \
650         bug-1147.cs     \
651         generic-type-builder.2.cs
652
653 PLATFORM_DISABLED_TESTS=
654
655 if HOST_WIN32
656 PLATFORM_DISABLED_TESTS += bug-58782-plain-throw.exe bug-58782-capture-and-throw.exe
657 endif
658
659 if AMD64
660 # #651684
661 PLATFORM_DISABLED_TESTS += finally_guard.exe
662
663 if HOST_WIN32
664 PLATFORM_DISABLED_TESTS += w32message.exe
665 endif
666
667 endif
668
669 if X86
670
671 if HOST_WIN32
672 PLATFORM_DISABLED_TESTS += async-exc-compilation.exe finally_guard.exe finally_block_ending_in_dead_bb.exe \
673         bug-18026.exe monitor.exe threadpool-exceptions5.exe process-unref-race.exe w32message.exe \
674         unhandled-exception-1.exe unhandled-exception-2.exe unhandled-exception-3.exe unhandled-exception-4.exe \
675         unhandled-exception-5.exe unhandled-exception-6.exe unhandled-exception-7.exe unhandled-exception-8.exe
676 endif
677
678 endif
679
680 if POWERPC
681 # bug #71274
682 PLATFORM_DISABLED_TESTS += finalizer-abort.exe finalizer-exception.exe finalizer-exit.exe
683 endif
684
685 if POWERPC64
686 # FIXME: These tests hang/fail for unknown reasons
687 PLATFORM_DISABLED_TESTS += monitor.exe threadpool-exceptions5.exe appdomain-thread-abort.exe appdomain-unload.exe \
688         pinvoke2.exe pinvoke3.exe pinvoke11.exe threadpool-exceptions7.exe winx64structs.exe bug-10127.exe pinvoke_ppcc.exe \
689         pinvoke_ppcs.exe pinvoke_ppci.exe pinvoke_ppcf.exe pinvoke_ppcd.exe abort-cctor.exe load-exceptions.exe \
690         sgen-domain-unload-2.exe sgen-weakref-stress.exe sgen-cementing-stress.exe sgen-new-threads-dont-join-stw.exe \
691         sgen-new-threads-dont-join-stw-2.exe sgen-new-threads-collect.exe sgen-bridge.exe
692 endif
693
694 if ARM
695 PLATFORM_DISABLED_TESTS += filter-stack.exe
696 INTERP_DISABLED_TESTS_PLATFORM=finalizer-exception.exe main-returns-abort-resetabort.exe block_guard_restore_aligment_on_exit.exe \
697         delegate-exit.exe delegate-exit.exe delegate-delegate-exit.exe delegate-async-exit.exe delegate3.exe delegate1.exe
698 endif
699
700 if ARM64
701 INTERP_DISABLED_TESTS_PLATFORM=finalizer-exception.exe main-returns-abort-resetabort.exe block_guard_restore_aligment_on_exit.exe
702 endif
703
704 if MIPS
705 # monitor.exe is racy
706 PLATFORM_DISABLED_TESTS += filter-stack.exe monitor.exe
707 endif
708
709 if S390X
710 PLATFORM_DISABLED_TESTS += dynamic-method-resurrection.exe
711 #PLATFORM_DISABLED_TESTS=dynamic-method-resurrection.exe exception17.exe
712
713 PLATFORM_DISABLED_TESTS += \
714         sgen-toggleref.exe \
715         sgen-bridge.exe \
716         sgen-bridge-major-fragmentation.exe \
717         sgen-bridge-xref.exe
718 endif
719
720 if ENABLE_COOP
721 COOP_DISABLED_TESTS= thunks.exe
722 else
723 COOP_DISABLED_TESTS= 
724 endif
725
726 PROFILE_DISABLED_TESTS=
727
728 if FULL_AOT_TESTS
729 # Tests which rely on TypeLoadExceptions
730 # In full-aot mode, these cause the relevant methods to be not AOTed.
731 PROFILE_DISABLED_TESTS += \
732         typeload-unaligned.exe \
733         field-access.exe \
734         invalid_generic_instantiation.exe \
735         bug-481403.exe \
736         array_ldelema.exe \
737         array_load_exception.exe \
738         bug445361.exe \
739         generic-type-load-exception.2.exe \
740         invalid-token.exe \
741         call_missing_method.exe \
742         call_missing_class.exe \
743         ldfld_missing_field.exe \
744         ldfld_missing_class.exe \
745         vt-sync-method.exe \
746         resolve_method_bug.2.exe \
747         resolve_field_bug.2.exe \
748         resolve_type_bug.2.exe \
749         bug-81691.exe \
750         bug-327438.2.exe
751
752 # Tests which rely on remoting
753 PROFILE_DISABLED_TESTS += \
754         context-static.exe \
755         bug-415577.exe \
756         generic-marshalbyref.2.exe \
757         unhandled-exception-7.exe
758
759 # Tests which use unsupported pinvoke+full aot
760 # functionality
761 PROFILE_DISABLED_TESTS += \
762         marshal.exe \
763         marshal2.exe \
764         marshal6.exe \
765         marshal7.exe \
766         marshal8.exe \
767         pinvoke-2.2.exe \
768         pinvoke3.exe \
769         thunks.exe \
770         bug-58782-plain-throw.exe \
771         bug-58782-capture-and-throw.exe
772
773 # Tests which load assemblies which are not
774 # in the testing_aot_full profile
775 PROFILE_DISABLED_TESTS += \
776         assembly-load-remap.exe
777
778 # Test which needs remoting support
779 PROFILE_DISABLED_TESTS += \
780         remoting4.exe   \
781         remoting1.exe   \
782         remoting2.exe   \
783         remoting3.exe   \
784         remoting5.exe
785
786 # Tests which needs AppDomain support
787 PROFILE_DISABLED_TESTS += \
788         appdomain.exe   \
789         appdomain-client.exe    \
790         appdomain-unload.exe    \
791         appdomain-async-invoke.exe      \
792         appdomain-thread-abort.exe      \
793         appdomain1.exe  \
794         appdomain2.exe  \
795         appdomain-exit.exe      \
796         appdomain-unload-asmload.exe \
797         appdomain-unload-callback.exe   \
798         appdomain-unload-doesnot-raise-pending-events.exe       \
799         unload-appdomain-on-shutdown.exe        \
800         assemblyresolve_event2.2.exe    \
801         bug-544446.exe  \
802         bug-36848.exe   \
803         generic-marshalbyref.2.exe      \
804         stackframes-async.2.exe \
805         transparentproxy.exe    \
806         bug-48015.exe   \
807         delegate9.exe   \
808         marshal-valuetypes.exe  \
809         xdomain-threads.exe     \
810         monitor.exe     \
811         generic-xdomain.2.exe   \
812         threadpool-exceptions7.exe      \
813         cross-domain.exe        \
814         generic-unloading.2.exe \
815         appdomain-threadpool-unload.exe
816
817 # Tests which needs System.Reflection.Emit support
818 PROFILE_DISABLED_TESTS += \
819         bug-47295.exe   \
820         loader.exe      \
821         pinvoke2.exe    \
822         generic-type-builder.2.exe      \
823         dynamic-generic-size.exe        \
824         cominterop.exe  \
825         dynamic-method-access.2.exe     \
826         dynamic-method-finalize.2.exe   \
827         dynamic-method-stack-traces.exe \
828         generic_type_definition.2.exe   \
829         bug-333798-tb.2.exe     \
830         bug-335131.2.exe        \
831         bug-322722_patch_bx.2.exe       \
832         bug-322722_dyn_method_throw.2.exe       \
833         bug-389886-2.exe        \
834         bug-349190.2.exe        \
835         bug-389886-sre-generic-interface-instances.exe  \
836         bug-462592.exe  \
837         bug-575941.exe  \
838         bug-389886-3.exe        \
839         constant-division.exe   \
840         dynamic-method-resurrection.exe \
841         assembly_append_ordering.exe \
842         assemblyresolve_event5.exe
843
844 # Test which needs System.Web support
845 PROFILE_DISABLED_TESTS += \
846         bug-80307.exe
847
848 # Tests which needs named Mutex support
849 PROFILE_DISABLED_TESTS += \
850         namedmutex-destroy-race.exe
851
852 # ThreadAbortException doesn't have necessary field for this test
853 PROFILE_DISABLED_TESTS += \
854         thread6.exe
855
856 # can't AOT the TestingReferenceAssembly.dll which is a dependency
857 # of reference-loader.exe because it contains the [ReferenceAssemblyAttribute]
858 # and the runtime errors out with "File does not contain a valid CIL image."
859 PROFILE_DISABLED_TESTS += \
860         reference-loader.exe
861
862 # constraints-load.il: 
863 # Failed to load method 0x6000007 from '..../mono/tests/constraints-load.exe' due to 
864 # Could not resolve type with token 01000002 assembly:mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 type:System.BrokenIComparable`1 member:<none>.
865 PROFILE_DISABLED_TESTS += \
866         constraints-load.exe \
867         bug-515884.exe
868
869 PROFILE_DISABLED_TESTS += \
870         generic-type-builder.2.exe
871
872 PROFILE_DISABLED_TESTS += \
873         sgen-domain-unload.exe  \
874         sgen-domain-unload-2.exe
875
876 PROFILE_DISABLED_TESTS += \
877         appdomain-loader.exe \
878         assemblyresolve_event3.exe \
879         appdomain-serialize-exception.exe
880 endif
881
882 if HYBRID_AOT_TESTS
883 PROFILE_DISABLED_TESTS += \
884         bug-80307.exe \
885         namedmutex-destroy-race.exe
886 endif
887
888 AOT_DISABLED_TESTS= \
889         constraints-load.exe
890
891 CI_DISABLED_TESTS = \
892         main-returns-background-resetabort.exe \
893         main-returns-background-abort-resetabort.exe    \
894         assemblyresolve_event3.exe \
895         delegate2.exe   \
896         finally_guard.exe \
897         generic-xdomain.2.exe
898
899 # failing tests which we temporarily disable for PRs
900 # so they don't interfere with other people's work
901 CI_PR_DISABLED_TESTS = \
902         appdomain-threadpool-unload.exe \
903         appdomain-thread-abort.exe
904
905 # appdomain-threadpool-unload.exe creates 100 appdomains, takes too long with llvm
906 LLVM_DISABLED_TESTS = \
907         finally_block_ending_in_dead_bb.exe \
908         appdomain-threadpool-unload.exe
909
910 LLVM = $(filter --llvm, $(MONO_ENV_OPTIONS))
911
912 # The two finalizer tests only work under sgen
913 # gc-altstack.exe fails under boehm because it has no support for altstack
914 # bug-459094.exe creates an extremely deep directory tree
915 # delegate-invoke.exe depends on 929c6bc9b6d76a273f251e6f5dfacac36e9c38bd which was
916 # reverted.
917 # bug-Xamarin-5278.exe got broken by 5d26590e79da139a284459299aee95c25f4cd835
918 # appdomain-thread-abort.exe: https://bugzilla.xamarin.com/show_bug.cgi?id=47054
919 KNOWN_FAILING_TESTS = \
920         delegate-async-exception.exe    \
921         bug-348522.2.exe        \
922         bug-459094.exe \
923         delegate-invoke.exe \
924         bug-Xamarin-5278.exe \
925         appdomain-thread-abort.exe
926
927 DISABLED_TESTS = \
928         $(KNOWN_FAILING_TESTS) \
929         $(PLATFORM_DISABLED_TESTS) \
930         $(EXTRA_DISABLED_TESTS) \
931         $(COOP_DISABLED_TESTS) \
932         $(PROFILE_DISABLED_TESTS) \
933         $(if $(AOT),$(AOT_DISABLED_TESTS)) \
934         $(if $(CI),$(CI_DISABLED_TESTS)) \
935         $(if $(CI_PR),$CI_PR_DISABLED_TESTS) \
936         $(if $(LLVM),$(LLVM_DISABLED_TESTS))
937
938 INTERP_DISABLED_TESTS = \
939         $(CI_PR_DISABLED_TESTS) \
940         $(CI_DISABLED_TESTS) \
941         $(KNOWN_FAILING_TESTS) \
942         $(INTERP_DISABLED_TESTS_PLATFORM) \
943         abort-cctor.exe \
944         appdomain-async-invoke.exe \
945         appdomain-exit.exe \
946         appdomain-serialize-exception.exe \
947         appdomain-unload-asmload.exe \
948         appdomain-unload-callback.exe \
949         appdomain-unload-doesnot-raise-pending-events.exe \
950         appdomain-unload.exe \
951         appdomain.exe \
952         appdomain1.exe \
953         appdomain2.exe \
954         array_load_exception.exe \
955         assembly_append_ordering.exe \
956         assemblyresolve_event4.exe \
957         async-exc-compilation.exe \
958         async-with-cb-throws.exe \
959         async_read.exe \
960         bug-18026.exe \
961         bug-2907.exe \
962         bug-323114.exe \
963         bug-327438.2.exe \
964         bug-335131.2.exe \
965         bug-415577.exe \
966         bug-45841-fpstack-exceptions.exe \
967         bug-461867.exe \
968         bug-461941.exe \
969         bug-46661.exe \
970         bug-47295.exe \
971         bug-48015.exe \
972         bug-58782-plain-throw.exe \
973         bug-58782-capture-and-throw.exe \
974         bug-544446.exe \
975         bug-685908.exe \
976         bug-80307.exe \
977         bug-80392.2.exe \
978         bug-81673.exe \
979         bug-82022.exe \
980         bug445361.exe \
981         call_missing_class.exe \
982         call_missing_method.exe \
983         calliGenericTest.exe \
984         cominterop.exe \
985         context-static.exe \
986         cross-domain.exe \
987         delegate-with-null-target.exe \
988         delegate9.exe \
989         dynamic-method-stack-traces.exe \
990         even-odd.exe \
991         exception18.exe \
992         field-access.exe \
993         finally_block_ending_in_dead_bb.exe \
994         generic-array-exc.2.exe \
995         generic-marshalbyref.2.exe \
996         generic-mkrefany.2.exe \
997         generic-refanyval.2.exe \
998         generic-stack-traces2.2.exe \
999         generic-type-load-exception.2.exe \
1000         generic-unloading.2.exe \
1001         generics-invoke-byref.2.exe \
1002         generics-sharing.2.exe \
1003         handleref.exe \
1004         invalid-token.exe \
1005         invalid_generic_instantiation.exe \
1006         ldfld_missing_class.exe \
1007         ldfld_missing_field.exe \
1008         ldftn-access.exe \
1009         main-returns-background-change.exe \
1010         marshal-valuetypes.exe \
1011         marshal.exe \
1012         marshal2.exe \
1013         marshal8.exe \
1014         marshal9.exe \
1015         marshalbool.exe \
1016         method-access.exe \
1017         monitor.exe \
1018         nullable_boxing.2.exe \
1019         pinvoke-2.2.exe \
1020         pinvoke-utf8.exe \
1021         pinvoke.exe \
1022         pinvoke11.exe \
1023         pinvoke2.exe \
1024         pinvoke3.exe \
1025         pinvoke_ppcc.exe \
1026         pinvoke_ppcd.exe \
1027         pinvoke_ppcf.exe \
1028         pinvoke_ppci.exe \
1029         pinvoke_ppcs.exe \
1030         process-unref-race.exe \
1031         reload-at-bb-end.exe \
1032         remoting1.exe \
1033         remoting2.exe \
1034         remoting3.exe \
1035         remoting4.exe \
1036         remoting5.exe \
1037         safehandle.2.exe \
1038         stackframes-async.2.exe \
1039         static-constructor.exe \
1040         test-inline-call-stack.exe \
1041         test-type-ctor.exe \
1042         thread6.exe \
1043         threadpool-exceptions1.exe \
1044         threadpool-exceptions2.exe \
1045         threadpool-exceptions3.exe \
1046         threadpool-exceptions4.exe \
1047         threadpool-exceptions5.exe \
1048         threadpool-exceptions6.exe \
1049         threadpool-exceptions7.exe \
1050         threadpool.exe \
1051         threadpool1.exe \
1052         thunks.exe \
1053         transparentproxy.exe \
1054         typeload-unaligned.exe \
1055         unload-appdomain-on-shutdown.exe \
1056         vararg.exe \
1057         vararg2.exe \
1058         vt-sync-method.exe \
1059         winx64structs.exe \
1060         xdomain-threads.exe
1061
1062 TESTS_CS=$(filter-out $(DISABLED_TESTS),$(TESTS_CS_SRC:.cs=.exe))
1063 TESTS_IL=$(filter-out $(DISABLED_TESTS),$(TESTS_IL_SRC:.il=.exe))
1064 TESTS_BENCH=$(filter-out $(DISABLED_TESTS),$(TESTS_BENCH_SRC:.cs=.exe))
1065 TESTS_STRESS=$(filter-out $(DISABLED_TESTS),$(TESTS_STRESS_SRC:.cs=.exe))
1066 TESTS_GSHARED=$(filter-out $(DISABLED_TESTS),$(TESTS_GSHARED_SRC:.cs=.exe))
1067
1068 if FULL_AOT_TESTS
1069 TESTSAOT_CS=$(TESTS_CS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1070 TESTSAOT_IL=$(TESTS_IL:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1071 TESTSAOT_BENCH=$(TESTS_BENCH:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1072 TESTSAOT_STRESS=$(TESTS_STRESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1073 TESTSAOT_GSHARED=$(TESTS_GSHARED:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1074 endif
1075
1076 if HYBRID_AOT_TESTS
1077 TESTSAOT_CS=$(TESTS_CS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1078 TESTSAOT_IL=$(TESTS_IL:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1079 TESTSAOT_BENCH=$(TESTS_BENCH:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1080 TESTSAOT_STRESS=$(TESTS_STRESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1081 TESTSAOT_GSHARED=$(TESTS_GSHARED:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1082 endif
1083
1084 EXTRA_DIST=test-driver test-runner.cs $(TESTS_CS_SRC) $(TESTS_IL_SRC) \
1085         $(TESTS_BENCH_SRC) $(TESTS_STRESS_SRC) stress-runner.pl
1086
1087 %.exe: %.il
1088         $(ILASM) -out:$@ $<
1089
1090 if !FULL_AOT_TESTS
1091 if !HYBRID_AOT_TESTS
1092 TEST_DRIVER_HARD_KILL_FEATURE=-r:$(CLASS)/Mono.Posix.dll
1093 endif
1094 endif
1095
1096 if FULL_AOT_TESTS
1097 TEST_DRIVER_DEPEND=TestDriver.dll$(PLATFORM_AOT_SUFFIX)
1098 else
1099 if HYBRID_AOT_TESTS
1100 TEST_DRIVER_DEPEND=TestDriver.dll$(PLATFORM_AOT_SUFFIX)
1101 else
1102 TEST_DRIVER_DEPEND=TestDriver.dll
1103 endif
1104 endif
1105
1106 %.exe: %.cs $(TEST_DRIVER_DEPEND)
1107         $(MCS) -r:$(CLASS)/System.dll -r:$(CLASS)/System.Xml.dll -r:$(CLASS)/System.Core.dll -r:TestDriver.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $<
1108
1109 # N.B. test-runner.exe references the TOOLS_RUNTIME versions of the framework assemblies
1110 test-runner.exe: test-runner.cs $(TEST_DRIVER_DEPEND)
1111         $(MCS) -r:System.dll -r:System.Xml.dll -r:System.Core.dll -r:TestDriver.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $<
1112
1113 %.dll: %.cs
1114         $(MCS) -r:$(CLASS)/System.dll -target:library -out:$@ $<
1115 %.dll: %.il
1116         $(ILASM) /dll /output:$@ $<
1117
1118 reference-loader.exe: reference-loader.cs TestingReferenceAssembly.dll TestingReferenceReferenceAssembly.dll $(TEST_DRIVER_DEPEND)
1119         $(MCS) -r:$(CLASS)/System.dll -r:TestDriver.dll -r:TestingReferenceAssembly.dll -r:TestingReferenceReferenceAssembly.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $(srcdir)/reference-loader.cs
1120
1121 TestingReferenceAssembly.dll: TestingReferenceAssembly.cs
1122         $(MCS) -target:library -out:$@ $<
1123
1124 TestingReferenceReferenceAssembly.dll: TestingReferenceReferenceAssembly.cs TestingReferenceAssembly.dll
1125         $(MCS) -r:TestingReferenceAssembly.dll -target:library -out:$@ $<
1126
1127 %.exe$(PLATFORM_AOT_SUFFIX): %.exe 
1128         $(RUNTIME) $(AOT_BUILD_FLAGS) $<
1129
1130 %.dll$(PLATFORM_AOT_SUFFIX): %.dll 
1131         $(RUNTIME) $(AOT_BUILD_FLAGS) $<
1132
1133 # mkbundle works on ppc, but the pkg-config POC doesn't when run with make test
1134 if POWERPC
1135 test-platform:
1136 else
1137 # Can't use mkbundle on win32 since there is no static build there
1138 # Can't run test-unhandled-exception on Windows because of all the debug popups...
1139 if HOST_WIN32
1140 test-platform:
1141 else
1142 # mkbundle uses the installed mono-2.pc so it won't work if there is no system mono
1143 #test-platform: testbundle test-iomap-regression
1144 test-platform:  test-iomap-regression
1145 endif
1146 endif
1147
1148 # Target to precompile the test executables
1149 tests: compile-tests
1150
1151 #
1152 # Test that no symbols are missed in eglib-remap.h
1153 #
1154 if HOST_LINUX
1155 test-platform: test-eglib-remap
1156 else
1157 if HOST_DARWIN
1158 test-platform: test-eglib-remap
1159 endif
1160 endif
1161 # The following regexp describes all symbols that start with "g_" but are not part of eglibc.
1162 # The optional underscore prepending symbol names may or may not appear depending on the
1163 # system and the state of the leading-underscore compiler flag.
1164 OK_G_SYMBOLS='\<_?g_(s?list_(pre|ap)pend_(image|mempool)|concat_dir_and_file|Ctoc)\>'
1165 test-eglib-remap:
1166         @echo "Testing eglib remap..."
1167         @if which nm > /dev/null; then if nm $(top_builddir)/mono/mini/mono | grep -Ev $(OK_G_SYMBOLS) | grep -E 't _?g_'; then exit 1; else exit 0; fi; fi
1168
1169 test-env-options:
1170         MONO_ENV_OPTIONS="--version" $(RUNTIME) array-init.exe | grep -q Architecture:
1171
1172 # Precompile the test assemblies in parallel
1173 compile-tests:
1174         $(MAKE) -j4 $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH) $(TESTS_STRESS) $(TESTS_GSHARED) $(TESTSAOT_CS) $(TESTSAOT_IL) $(TESTSAOT_BENCH) $(TESTSAOT_STRESS) $(TESTSAOT_GSHARED) compile-gac-loading
1175
1176 # Remove empty .stdout and .stderr files for wrench
1177 rm-empty-logs:
1178         @echo "Removing empty logs..."
1179         find . '(' -name "*.stdout" -o -name "*.stderr" ')' -size 0 -exec rm {} \;
1180
1181 TestDriver.dll:
1182         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs $(srcdir)/../mini/TestHelpers.cs
1183
1184 runtest: compile-tests
1185         @failed=0; \
1186         passed=0; \
1187         failed_tests="";\
1188         if [ "x$$V" = "x1" ]; then dump_action="dump-output"; else dump_action="no-dump"; fi; \
1189         rm -f testlist testlist.sorted; \
1190         for i in $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH); do echo $${i} >> testlist; sort testlist > testlist.sorted; done; \
1191         for i in `cat testlist.sorted`; do \
1192                 rm -f $${i}.so; \
1193                 $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > $${i}.aotlog 2>&1 || exit 1; \
1194                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" "$${dump_action}" $(RUNTIME_ARGS); \
1195                 then \
1196                         passed=`expr $${passed} + 1`; \
1197                 else \
1198                         if [ $$? = 2 ]; then break; fi; \
1199                         failed=`expr $${failed} + 1`; \
1200                         failed_tests="$${failed_tests} $$i"; \
1201                 fi \
1202         done; \
1203         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1204         rm -f testlist testlist.sorted; \
1205         if [ $${failed} != 0 ]; then \
1206           echo -e "\nFailed tests:\n"; \
1207           for i in $${failed_tests}; do \
1208             echo $${i}; \
1209             if [ "x$$V" = "x1" ]; then \
1210               cat $${i}.stdout; \
1211               cat $${i}.stderr; \
1212             fi; \
1213           done; \
1214           exit 1; \
1215         fi
1216
1217 runtest-managed: test-runner.exe compile-tests
1218         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) -j a --testsuite-name "runtime" --timeout 300 --disabled "$(DISABLED_TESTS)" $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH)
1219
1220 runtest-managed-serial: test-runner.exe compile-tests
1221         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) -j 1 --testsuite-name "runtime" --disabled "$(DISABLED_TESTS)" $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH)
1222
1223 test-jit:
1224         @if test x$(M) != x0; then $(MAKE) runtest-managed; else $(MAKE) runtest; fi
1225
1226 testaot:
1227         @$(MAKE) AOT=1 runtest
1228
1229 testtrace:
1230         @$(MAKE) RUNTIME_ARGS="$${RUNTIME_ARGS} --trace" runtest
1231
1232 testinterp: test-runner.exe compile-tests
1233         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) -j a --runtime-args "--interpreter" --testsuite-name "runtime-interp" --timeout 300 --disabled "$(INTERP_DISABLED_TESTS)" $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH)
1234
1235 testjitspeed: $(JITTEST_PROG) compile-tests
1236         for i in $(TESTS_BENCH); do     \
1237                 echo $$i;       \
1238                 time $(JITTEST_PROG) $$i;       \
1239         done
1240
1241 test-iomap-regression: exists.exe
1242         @echo "Testing exists.exe..."
1243         @MONO_IOMAP=all $(RUNTIME) exists.exe
1244
1245 stresstest: compile-tests
1246         @failed=0; \
1247         passed=0; \
1248         failed_tests="";\
1249         for i in $(TESTS_STRESS); do    \
1250                 if $(srcdir)/stress-runner.pl $$i ../mini/mono $(RUNTIME_ARGS); \
1251                 then \
1252                         passed=`expr $${passed} + 1`; \
1253                 else \
1254                         if [ $$? = 2 ]; then break; fi; \
1255                         failed=`expr $${failed} + 1`; \
1256                         failed_tests="$${failed_tests} $$i"; \
1257                 fi \
1258         done; \
1259         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1260         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
1261           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
1262
1263 testbundle: console.exe
1264         @echo "Testing mkbundle..."
1265         @$(MKBUNDLE) --static console.exe > mkbundle.stdout
1266         @$(with_mono_path) MONO_CFG_DIR=$(mono_cfg_dir) ./a.out >> mkbundle.stdout
1267         @- rm -rf a.out
1268
1269 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
1270
1271 load-missing.dll: load-missing.il
1272         $(Q) $(ILASM) /dll /output:$@ $<
1273
1274 load-exceptions.exe t.dll: load-exceptions.cs t-missing.cs load-missing.dll $(TEST_DRIVER_DEPEND)
1275         $(Q) $(MCS) -t:library -out:t.dll -d:FOUND t-missing.cs
1276         $(Q) $(MCS) -r:TestDriver.dll -r:load-missing.dll -r:t.dll -out:$@ $<
1277         $(Q) $(MCS) -t:library -out:t.dll t-missing.cs
1278
1279 test-type-load: load-exceptions.exe
1280 if !POWERPC64
1281         $(Q) $(RUNTIME) load-exceptions.exe > load-exceptions.exe.stdout 2> load-exceptions.exe.stderr
1282 endif
1283
1284 EXTRA_DIST += test-multi-netmodule-1-netmodule.cs test-multi-netmodule-2-dll1.cs test-multi-netmodule-3-dll2.cs test-multi-netmodule-4-exe.cs
1285
1286 test-multi-netmodule-1-netmodule.netmodule: test-multi-netmodule-1-netmodule.cs
1287         $(Q) $(MCS) -t:module -out:$@ $<
1288 test-multi-netmodule-2-dll1.dll: test-multi-netmodule-2-dll1.cs test-multi-netmodule-1-netmodule.netmodule
1289         $(Q) $(MCS) -addmodule:test-multi-netmodule-1-netmodule.netmodule -t:library  -out:$@ $<
1290 test-multi-netmodule-3-dll2.dll: test-multi-netmodule-3-dll2.cs test-multi-netmodule-1-netmodule.netmodule
1291         $(Q) $(MCS) -addmodule:test-multi-netmodule-1-netmodule.netmodule -t:library -out:$@ $<
1292 test-multi-netmodule-4-exe.exe: test-multi-netmodule-4-exe.cs test-multi-netmodule-2-dll1.dll test-multi-netmodule-3-dll2.dll
1293         $(Q) $(MCS) -r:test-multi-netmodule-2-dll1.dll -out:$@ $<
1294
1295 test-multi-netmodule: test-multi-netmodule-4-exe.exe
1296         $(Q) $(RUNTIME) test-multi-netmodule-4-exe.exe > test-multi-netmodule-4-exe.exe.stdout 2> test-multi-netmodule-4-exe.exe.stderr
1297
1298 EXTRA_DIST += custom-attr-errors.cs custom-attr-errors-lib.cs
1299
1300 custom-attr-errors.exe custom-attr-errors-lib.dll: custom-attr-errors.cs custom-attr-errors-lib.cs $(TEST_DRIVER_DEPEND)
1301         $(Q) $(MCS) /t:library -D:WITH_MEMBERS custom-attr-errors-lib.cs
1302         $(Q) $(MCS) -r:TestDriver.dll -r:custom-attr-errors-lib.dll custom-attr-errors.cs
1303         $(Q) $(MCS) /t:library custom-attr-errors-lib.cs
1304
1305 test-cattr-type-load: custom-attr-errors.exe
1306         $(Q) $(RUNTIME) custom-attr-errors.exe > custom-attr-errors.exe.stdout 2> custom-attr-errors.exe.stderr
1307
1308 EXTRA_DIST += reflection-load-with-context-lib.cs reflection-load-with-context-second-lib.cs reflection-load-with-context.cs
1309
1310 reflection-load-with-context-second-lib.dll: reflection-load-with-context-second-lib.cs
1311         $(Q) $(MCS) /t:library -out:$@ $<
1312 reflection-load-with-context-lib.dll: reflection-load-with-context-lib.cs reflection-load-with-context-second-lib.dll
1313         $(Q) $(MCS) /t:library -r:reflection-load-with-context-second-lib.dll -out:$@ $<
1314 reflection-load-with-context.exe: reflection-load-with-context-lib.dll
1315
1316 test-reflection-load-with-context: reflection-load-with-context.exe
1317         $(Q) $(RUNTIME) reflection-load-with-context.exe > reflection-load-with-context.exe.stdout 2> reflection-load-with-context.exe.stderr
1318
1319
1320 EXTRA_DIST += debug-casts.cs
1321 # This depends on TLS, so its not ran by default
1322 debug-casts: debug-casts.exe
1323         $(Q) $(RUNTIME) --debug=casts debug-casts.exe
1324
1325 EXTRA_DIST += sgen-bridge.cs sgen-descriptors.cs sgen-gshared-vtype.cs sgen-bridge-major-fragmentation.cs sgen-domain-unload.cs sgen-weakref-stress.cs sgen-cementing-stress.cs sgen-case-23400.cs      finalizer-wait.cs critical-finalizers.cs sgen-domain-unload-2.cs sgen-suspend.cs sgen-new-threads-dont-join-stw.cs sgen-new-threads-dont-join-stw-2.cs sgen-new-threads-collect.cs sgen-bridge-xref.cs bug-17590.cs sgen-toggleref.cs sgen-bridge-gchandle.cs
1326
1327 test-sgen:
1328         ok=; \
1329         $(MAKE) test-sgen-regular || ok=false; \
1330         $(MAKE) test-sgen-toggleref || ok=false; \
1331         $(MAKE) test-sgen-bridge || ok=false; \
1332         $(MAKE) test-sgen-bridge2 || ok=false; \
1333         $(MAKE) test-sgen-bridge3 || ok=false; \
1334         $$ok
1335
1336 test-stress-sgen:
1337         ok=; \
1338         $(MAKE) test-stress-sgen-regular || ok=false; \
1339         $(MAKE) test-stress-sgen-toggleref || ok=false; \
1340         $(MAKE) test-stress-sgen-bridge || ok=false; \
1341         $(MAKE) test-stress-sgen-bridge2 || ok=false; \
1342         $(MAKE) test-stress-sgen-bridge3 || ok=false; \
1343         $$ok
1344
1345 TESTS_SGEN_REGULAR_SRC =        \
1346         finalizer-wait.cs       \
1347         critical-finalizers.cs  \
1348         sgen-descriptors.cs     \
1349         sgen-gshared-vtype.cs   \
1350         sgen-weakref-stress.cs  \
1351         sgen-cementing-stress.cs        \
1352         sgen-case-23400.cs      \
1353         sgen-new-threads-dont-join-stw.cs       \
1354         sgen-new-threads-dont-join-stw-2.cs     \
1355         sgen-new-threads-collect.cs     \
1356         gc-graystack-stress.cs  \
1357         bug-17590.cs    \
1358         sgen-domain-unload.cs   \
1359         sgen-domain-unload-2.cs
1360
1361 TESTS_SGEN_REGULAR=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_REGULAR_SRC:.cs=.exe))
1362
1363 if FULL_AOT_TESTS
1364 TESTSAOT_SGEN_REGULAR=$(TESTS_SGEN_REGULAR:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1365 endif
1366
1367 if HYBRID_AOT_TESTS
1368 TESTSAOT_SGEN_REGULAR=$(TESTS_SGEN_REGULAR:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1369 endif
1370
1371 test-sgen-regular: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR)
1372         ok=; \
1373         $(MAKE) test-sgen-regular-ms-simple || ok=false; \
1374         $(MAKE) test-sgen-regular-ms-conc-simple || ok=false; \
1375         $$ok
1376
1377 test-stress-sgen-regular: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR)
1378         ok=; \
1379         $(MAKE) test-sgen-regular-ms-simple MONO_TESTS_STRESS=1 || ok=false; \
1380         $(MAKE) test-sgen-regular-ms-conc-simple MONO_TESTS_STRESS=1 || ok=false; \
1381         $(MAKE) test-sgen-regular-ms-conc-par-simple MONO_TESTS_STRESS=1 || ok=false; \
1382         $(MAKE) test-sgen-regular-ms-conc-split MONO_TESTS_STRESS=1 || ok=false; \
1383         $(MAKE) test-sgen-regular-ms-conc-split-95-clear-at-gc MONO_TESTS_STRESS=1 || ok=false; \
1384         $(MAKE) test-sgen-regular-ms-conc-par-simple-par-dyn MONO_TESTS_STRESS=1 || ok=false; \
1385         $(MAKE) test-sgen-regular-ms-conc-par-simple-par-512k MONO_TESTS_STRESS=1 || ok=false; \
1386         $(MAKE) test-sgen-regular-ms-conc-par-simple-par-32m MONO_TESTS_STRESS=1 || ok=false; \
1387         $(MAKE) test-sgen-regular-ms-conc-par-simple-par-dyn-clear-at-gc MONO_TESTS_STRESS=1 || ok=false; \
1388         $$ok
1389
1390 test-sgen-regular-ms-simple: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1391         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1392 test-sgen-regular-ms-conc-simple: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1393         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1394 test-sgen-regular-ms-conc-par-simple: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1395         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc-par,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1396 test-sgen-regular-ms-conc-split: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1397         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc,minor=split" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1398 test-sgen-regular-ms-conc-split-95-clear-at-gc: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1399         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=clear-at-gc --gc-params=major=marksweep-conc,minor=split,alloc-ratio=95" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1400 test-sgen-regular-ms-conc-par-simple-par-dyn: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1401         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc-par,minor=simple-par,dynamic-nursery" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1402 test-sgen-regular-ms-conc-par-simple-par-512k: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1403         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=512k" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1404 test-sgen-regular-ms-conc-par-simple-par-32m: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1405         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=32m" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1406 test-sgen-regular-ms-conc-par-simple-par-dyn-clear-at-gc: $(TESTS_SGEN_REGULAR) $(TESTSAOT_SGEN_REGULAR) test-runner.exe
1407         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=clear-at-gc --gc-params=major=marksweep-conc-par,minor=simple-par,dynamic-nursery" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_REGULAR)
1408
1409 TESTS_SGEN_TOGGLEREF_SRC=       \
1410         sgen-toggleref.cs
1411
1412 TESTS_SGEN_TOGGLEREF=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_TOGGLEREF_SRC:.cs=.exe))
1413
1414 if FULL_AOT_TESTS
1415 TESTSAOT_SGEN_TOGGLEREF=$(TESTS_SGEN_TOGGLEREF:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1416 endif
1417
1418 if HYBRID_AOT_TESTS
1419 TESTSAOT_SGEN_TOGGLEREF=$(TESTS_SGEN_TOGGLEREF:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1420 endif
1421
1422 test-sgen-toggleref: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF)
1423         ok=; \
1424         $(MAKE) test-sgen-toggleref-ms-simple || ok=false; \
1425         $(MAKE) test-sgen-toggleref-ms-conc-simple || ok=false; \
1426         $$ok
1427
1428 test-stress-sgen-toggleref: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF)
1429         ok=; \
1430         $(MAKE) test-sgen-toggleref-ms-simple MONO_TESTS_STRESS=1 || ok=false; \
1431         $(MAKE) test-sgen-toggleref-ms-conc-simple MONO_TESTS_STRESS=1 || ok=false; \
1432         $(MAKE) test-sgen-toggleref-ms-conc-par-simple MONO_TESTS_STRESS=1 || ok=false; \
1433         $(MAKE) test-sgen-toggleref-ms-conc-split MONO_TESTS_STRESS=1 || ok=false; \
1434         $(MAKE) test-sgen-toggleref-ms-conc-split-95-clear-at-gc MONO_TESTS_STRESS=1 || ok=false; \
1435         $(MAKE) test-sgen-toggleref-ms-conc-par-simple-par-dyn MONO_TESTS_STRESS=1 || ok=false; \
1436         $(MAKE) test-sgen-toggleref-ms-conc-par-simple-par-512k MONO_TESTS_STRESS=1 || ok=false; \
1437         $(MAKE) test-sgen-toggleref-ms-conc-par-simple-par-32m MONO_TESTS_STRESS=1 || ok=false; \
1438         $(MAKE) test-sgen-toggleref-ms-conc-par-simple-par-dyn-clear-at-gc MONO_TESTS_STRESS=1 || ok=false; \
1439         $$ok
1440
1441 test-sgen-toggleref-ms-simple: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1442         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1443 test-sgen-toggleref-ms-conc-simple: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1444         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1445 test-sgen-toggleref-ms-conc-par-simple: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1446         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc-par,minor=simple" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1447 test-sgen-toggleref-ms-conc-split: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1448         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc,minor=split" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1449 test-sgen-toggleref-ms-conc-split-95-clear-at-gc: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1450         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=clear-at-gc --gc-params=toggleref-test,major=marksweep-conc,minor=split,alloc-ratio=95" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1451 test-sgen-toggleref-ms-conc-par-simple-par-dyn: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1452         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc-par,minor=simple-par,dynamic-nursery" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1453 test-sgen-toggleref-ms-conc-par-simple-par-512k: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1454         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc-par,minor=simple-par,nursery-size=512k" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1455 test-sgen-toggleref-ms-conc-par-simple-par-32m: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1456         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug= --gc-params=toggleref-test,major=marksweep-conc-par,minor=simple-par,nursery-size=32m" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1457 test-sgen-toggleref-ms-conc-par-simple-par-dyn-clear-at-gc: $(TESTS_SGEN_TOGGLEREF) $(TESTSAOT_SGEN_TOGGLEREF) test-runner.exe
1458         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=clear-at-gc --gc-params=toggleref-test,major=marksweep-conc-par,minor=simple-par,dynamic-nursery" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_TOGGLEREF)
1459
1460 TESTS_SGEN_BRIDGE_SRC=  \
1461         sgen-bridge.cs  \
1462         sgen-bridge-major-fragmentation.cs
1463
1464 TESTS_SGEN_BRIDGE=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE_SRC:.cs=.exe))
1465
1466 if FULL_AOT_TESTS
1467 TESTSAOT_SGEN_BRIDGE=$(TESTS_SGEN_BRIDGE:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1468 endif
1469
1470 if HYBRID_AOT_TESTS
1471 TESTSAOT_SGEN_BRIDGE=$(TESTS_SGEN_BRIDGE:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1472 endif
1473
1474 test-sgen-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE)
1475         ok=; \
1476         $(MAKE) test-sgen-bridge-ms-simple-tarjan-bridge || ok=false; \
1477         $(MAKE) test-sgen-bridge-ms-conc-simple-tarjan-bridge || ok=false; \
1478         $$ok
1479
1480 test-stress-sgen-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE)
1481         ok=; \
1482         $(MAKE) test-sgen-bridge-ms-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1483         $(MAKE) test-sgen-bridge-ms-conc-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1484         $(MAKE) test-sgen-bridge-ms-conc-split-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1485         $(MAKE) test-sgen-bridge-ms-conc-simple-new-bridge MONO_TESTS_STRESS=1 || ok=false; \
1486         $(MAKE) test-sgen-bridge-ms-conc-simple-old-bridge MONO_TESTS_STRESS=1 || ok=false; \
1487         $(MAKE) test-sgen-bridge-ms-conc-par-simple-par-dyn-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1488         $(MAKE) test-sgen-bridge-ms-conc-par-simple-par-512k-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1489         $(MAKE) test-sgen-bridge-ms-conc-par-simple-par-32m-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1490         $$ok
1491
1492 test-sgen-bridge-ms-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1493         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1494 test-sgen-bridge-ms-conc-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1495         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1496 test-sgen-bridge-ms-conc-split-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1497         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc,minor=split,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1498 test-sgen-bridge-ms-conc-simple-new-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1499         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=new" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1500 test-sgen-bridge-ms-conc-simple-old-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1501         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=old" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1502 test-sgen-bridge-ms-conc-par-simple-par-dyn-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1503         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,dynamic-nursery,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1504 test-sgen-bridge-ms-conc-par-simple-par-512k-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1505         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=512k,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1506 test-sgen-bridge-ms-conc-par-simple-par-32m-tarjan-bridge: $(TESTS_SGEN_BRIDGE) $(TESTSAOT_SGEN_BRIDGE) test-runner.exe
1507         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=32m,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE)
1508
1509 TESTS_SGEN_BRIDGE2_SRC= \
1510         sgen-bridge-xref.cs
1511
1512 TESTS_SGEN_BRIDGE2=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE2_SRC:.cs=.exe))
1513
1514 if FULL_AOT_TESTS
1515 TESTSAOT_SGEN_BRIDGE2=$(TESTS_SGEN_BRIDGE2:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1516 endif
1517
1518 if HYBRID_AOT_TESTS
1519 TESTSAOT_SGEN_BRIDGE2=$(TESTS_SGEN_BRIDGE2:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1520 endif
1521
1522 test-sgen-bridge2: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2)
1523         ok=; \
1524         $(MAKE) test-sgen-bridge2-ms-simple-tarjan-bridge || ok=false; \
1525         $(MAKE) test-sgen-bridge2-ms-conc-simple-tarjan-bridge || ok=false; \
1526         $$ok
1527
1528 test-stress-sgen-bridge2: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2)
1529         ok=; \
1530         $(MAKE) test-sgen-bridge2-ms-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1531         $(MAKE) test-sgen-bridge2-ms-conc-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1532         $(MAKE) test-sgen-bridge2-ms-conc-split-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1533         $(MAKE) test-sgen-bridge2-ms-conc-simple-new-bridge MONO_TESTS_STRESS=1 || ok=false; \
1534         $(MAKE) test-sgen-bridge2-ms-conc-simple-old-bridge MONO_TESTS_STRESS=1 || ok=false; \
1535         $(MAKE) test-sgen-bridge2-ms-conc-par-simple-par-dyn-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1536         $(MAKE) test-sgen-bridge2-ms-conc-par-simple-par-512k-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1537         $(MAKE) test-sgen-bridge2-ms-conc-par-simple-par-32m-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1538         $$ok
1539
1540 test-sgen-bridge2-ms-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1541         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1542 test-sgen-bridge2-ms-conc-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1543         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1544 test-sgen-bridge2-ms-conc-split-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1545         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc,minor=split,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1546 test-sgen-bridge2-ms-conc-simple-new-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1547         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=new" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1548 test-sgen-bridge2-ms-conc-simple-old-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1549         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=old" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1550 test-sgen-bridge2-ms-conc-par-simple-par-dyn-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1551         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,dynamic-nursery,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1552 test-sgen-bridge2-ms-conc-par-simple-par-512k-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1553         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=512k,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1554 test-sgen-bridge2-ms-conc-par-simple-par-32m-tarjan-bridge: $(TESTS_SGEN_BRIDGE2) $(TESTSAOT_SGEN_BRIDGE2) test-runner.exe
1555         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=2Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=32m,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE2)
1556
1557 TESTS_SGEN_BRIDGE3_SRC= \
1558         sgen-bridge-gchandle.cs
1559
1560 TESTS_SGEN_BRIDGE3=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE3_SRC:.cs=.exe))
1561
1562 if FULL_AOT_TESTS
1563 TESTSAOT_SGEN_BRIDGE3=$(TESTS_SGEN_BRIDGE3:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1564 endif
1565
1566 if HYBRID_AOT_TESTS
1567 TESTSAOT_SGEN_BRIDGE3=$(TESTS_SGEN_BRIDGE3:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1568 endif
1569
1570 test-sgen-bridge3: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3)
1571         ok=; \
1572         $(MAKE) test-sgen-bridge3-ms-simple-tarjan-bridge || ok=false; \
1573         $(MAKE) test-sgen-bridge3-ms-conc-simple-tarjan-bridge || ok=false; \
1574         $$ok
1575
1576 test-stress-sgen-bridge3: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3)
1577         ok=; \
1578         $(MAKE) test-sgen-bridge3-ms-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1579         $(MAKE) test-sgen-bridge3-ms-conc-simple-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1580         $(MAKE) test-sgen-bridge3-ms-conc-split-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1581         $(MAKE) test-sgen-bridge3-ms-conc-simple-new-bridge MONO_TESTS_STRESS=1 || ok=false; \
1582         $(MAKE) test-sgen-bridge3-ms-conc-simple-old-bridge MONO_TESTS_STRESS=1 || ok=false; \
1583         $(MAKE) test-sgen-bridge3-ms-conc-par-simple-par-dyn-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1584         $(MAKE) test-sgen-bridge3-ms-conc-par-simple-par-512k-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1585         $(MAKE) test-sgen-bridge3-ms-conc-par-simple-par-32m-tarjan-bridge MONO_TESTS_STRESS=1 || ok=false; \
1586         $$ok
1587
1588 test-sgen-bridge3-ms-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1589         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1590 test-sgen-bridge3-ms-conc-simple-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1591         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1592 test-sgen-bridge3-ms-conc-split-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1593         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc,minor=split,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1594 test-sgen-bridge3-ms-conc-simple-new-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1595         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=new" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1596 test-sgen-bridge3-ms-conc-simple-old-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1597         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc,minor=simple,bridge-implementation=old" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1598 test-sgen-bridge3-ms-conc-par-simple-par-dyn-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1599         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,dynamic-nursery,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1600 test-sgen-bridge3-ms-conc-par-simple-par-512k-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1601         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=512k,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1602 test-sgen-bridge3-ms-conc-par-simple-par-32m-tarjan-bridge: $(TESTS_SGEN_BRIDGE3) $(TESTSAOT_SGEN_BRIDGE3) test-runner.exe
1603         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=bridge=3Bridge --gc-params=major=marksweep-conc-par,minor=simple-par,nursery-size=32m,bridge-implementation=tarjan" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_BRIDGE3)
1604
1605 TESTS_SGEN_OOM_SRC =    \
1606         sgen-oom-cementing-stress.cs    \
1607         sgen-oom-new-threads-dont-join-stw-2.cs \
1608         sgen-oom-bridge-major-fragmentation.cs \
1609         gc-oom-handling.cs      \
1610         gc-oom-handling2.cs
1611
1612 TESTS_SGEN_OOM=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_OOM_SRC:.cs=.exe))
1613
1614 if FULL_AOT_TESTS
1615 TESTSAOT_SGEN_OOM=$(TESTS_SGEN_OOM:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1616 endif
1617
1618 if HYBRID_AOT_TESTS
1619 TESTSAOT_SGEN_OOM=$(TESTS_SGEN_OOM:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1620 endif
1621
1622 tests-sgen-oom: $(TESTS_SGEN_OOM) $(TESTSAOT_SGEN_OOM) test-runner.exe sgen-cementing-stress.exe sgen-new-threads-dont-join-stw-2.exe sgen-bridge-major-fragmentation.exe
1623         $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --runtime-args "--gc=sgen --gc-debug=max-valloc-size=50M,bridge=Bridge" --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_SGEN_OOM)
1624
1625 AOT_CONFIGURATIONS=     \
1626         "|regular"      \
1627         "--gc=boehm|boehm"
1628
1629 #LLVM crashes, got to fix it first.
1630 #       "--llvm|llvm"   \
1631 #       "--llvm --gc=boehm|llvm+boehm"
1632
1633
1634 test-aot:
1635         @failed=0; \
1636         passed=0; \
1637         failed_tests="";\
1638         profile=$(DEFAULT_PROFILE);     \
1639         tmpfile=`mktemp -t mono_aot_outputXXXXXX` || exit 1;    \
1640         rm -f test-aot-$${name}.stdout test-aot-$${name}.stderr; \
1641         for assembly in $(mcs_topdir)/class/lib/$$profile/*.dll ; do    \
1642                 asm_name=`basename $$assembly`; \
1643                 echo "... $$asm_name";  \
1644                 for conf in $(AOT_CONFIGURATIONS); do   \
1645                         name=`echo $$conf | cut -d\| -f 2`;     \
1646                         params=`echo $$conf | cut -d\| -f 1`;   \
1647                         test_name="$${asm_name}|$${name}";      \
1648                         echo "  $$test_name";   \
1649                         if MONO_PATH=$(mcs_topdir)/class/lib/$$profile $(JITTEST_PROG_RUN) $$params --aot=outfile=$$tmpfile $$assembly >> test-aot-$${name}.stdout 2>> test-aot-$${name}.stderr;        \
1650                         then \
1651                                 passed=`expr $${passed} + 1`; \
1652                         else \
1653                                 failed=`expr $${failed} + 1`; \
1654                                 failed_tests="$${failed_tests} $$test_name"; \
1655                         fi \
1656                 done;   \
1657         done;   \
1658         rm      $$tmpfile;      \
1659         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1660         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
1661         for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
1662
1663
1664 # Generated tests for runtime invoke
1665 EXTRA_DIST += gen-runtime-invoke.cs
1666
1667 runtime-invoke.gen.cs: gen-runtime-invoke.exe
1668         $(Q) $(RUNTIME) gen-runtime-invoke.exe > runtime-invoke.gen.cs
1669
1670 EXTRA_DIST += make-imt-test.cs
1671
1672 imt_big_iface_test.cs: make-imt-test.exe
1673         $(Q) $(RUNTIME) make-imt-test.exe > imt_big_iface_test.cs
1674
1675 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
1676
1677 test-inline-call-stack-library.dll: $(srcdir)/test-inline-call-stack-library.cs
1678         $(MCS) -t:library -out:$@ $<
1679
1680 test-inline-call-stack.exe$(PLATFORM_AOT_SUFFIX): test-inline-call-stack-library.dll$(PLATFORM_AOT_SUFFIX)
1681 test-inline-call-stack.exe: test-inline-call-stack.cs test-inline-call-stack-library.dll $(TEST_DRIVER_DEPEND)
1682         $(MCS) -r:TestDriver.dll -r:test-inline-call-stack-library.dll -out:$@ $<
1683
1684 EXTRA_DIST += unhandled-exception-base-configuration.config
1685 EXTRA_DIST += unhandled-exception-legacy-configuration.config
1686 EXTRA_DIST += appdomain-unload.exe.config
1687 EXTRA_DIST += unhandled-exception-test-case.2.cs
1688 EXTRA_DIST += unhandled-exception-test-runner.2.cs
1689 unhandled-exception-test-case.1.cs: unhandled-exception-test-case.2.cs
1690         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case.1.cs
1691 unhandled-exception-test-case-legacy.1.cs: unhandled-exception-test-case.1.cs
1692         cp unhandled-exception-test-case.1.cs unhandled-exception-test-case-legacy.1.cs
1693 unhandled-exception-test-case-legacy.2.cs: unhandled-exception-test-case.2.cs
1694         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case-legacy.2.cs
1695 unhandled-exception-config_files: unhandled-exception-base-configuration.config unhandled-exception-legacy-configuration.config
1696         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.1.exe.config
1697         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.2.exe.config
1698         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.1.exe.config
1699         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.2.exe.config
1700
1701 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
1702
1703 test-unhandled-exception: unhandled-exception-test-runner.2.exe
1704         $(Q) $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
1705
1706 safehandle.2.exe winx64structs.exe thunks.exe pinvoke3.exe pinvoke2.exe pinvoke-2.2.exe pinvoke17.exe pinvoke13.exe \
1707         pinvoke11.exe pinvoke_ppcs.exe pinvoke_ppci.exe pinvoke_ppcf.exe pinvoke_ppcd.exe pinvoke_ppcc.exe pinvoke.exe \
1708         marshalbool.exe marshal9.exe marshal5.exe marshal.exe handleref.exe cominterop.exe bug-Xamarin-5278.exe \
1709         bug-58782-plain-throw.exe bug-58782-capture-and-throw.exe: libtest.la
1710
1711 event-get.2.exe$(PLATFORM_AOT_SUFFIX): event-il.exe$(PLATFORM_AOT_SUFFIX)
1712 event-get.2.exe: event-il.exe
1713
1714 module-cctor-loader.2.exe$(PLATFORM_AOT_SUFFIX): module-cctor.exe$(PLATFORM_AOT_SUFFIX)
1715 module-cctor-loader.2.exe: module-cctor.exe
1716
1717 reference-loader.exe$(PLATFORM_AOT_SUFFIX): TestingReferenceAssembly.dll$(PLATFORM_AOT_SUFFIX) TestingReferenceReferenceAssembly.dll$(PLATFORM_AOT_SUFFIX)
1718 reference-loader.exe: TestingReferenceAssembly.dll TestingReferenceReferenceAssembly.dll
1719
1720 assemblyresolve_asm.dll$(PLATFORM_AOT_SUFFIX): assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX)
1721         MONO_PATH="assemblyresolve_deps:$(CLASS)" $(top_builddir)/runtime/mono-wrapper $(AOT_BUILD_FLAGS) assemblyresolve_asm.dll
1722 assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX): assemblyresolve_deps/TestBase.dll$(PLATFORM_AOT_SUFFIX)
1723
1724 EXTRA_DIST += assemblyresolve_TestBase.cs assemblyresolve_Test.cs assemblyresolve_asm.cs 
1725 assemblyresolve_deps:
1726         mkdir -p assemblyresolve_deps
1727 assemblyresolve_deps/TestBase.dll: assemblyresolve_deps $(srcdir)/assemblyresolve_TestBase.cs
1728         $(MCS) -target:library -out:assemblyresolve_deps/TestBase.dll $(srcdir)/assemblyresolve_TestBase.cs
1729 assemblyresolve_deps/Test.dll: assemblyresolve_deps assemblyresolve_deps/TestBase.dll $(srcdir)/assemblyresolve_Test.cs
1730         $(MCS) -target:library -r:assemblyresolve_deps/TestBase.dll -out:assemblyresolve_deps/Test.dll $(srcdir)/assemblyresolve_Test.cs
1731 assemblyresolve_asm.dll: assemblyresolve_deps/Test.dll $(srcdir)/assemblyresolve_asm.cs
1732         $(MCS) -target:library -r:assemblyresolve_deps/TestBase.dll -r:assemblyresolve_deps/Test.dll -out:assemblyresolve_asm.dll $(srcdir)/assemblyresolve_asm.cs
1733
1734 assemblyresolve_event3.exe$(PLATFORM_AOT_SUFFIX): assemblyresolve_asm.dll$(PLATFORM_AOT_SUFFIX) assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX) assemblyresolve_deps/TestBase.dll$(PLATFORM_AOT_SUFFIX)
1735 assemblyresolve_event3.exe: assemblyresolve_asm.dll assemblyresolve_deps/Test.dll assemblyresolve_deps/TestBase.dll
1736
1737 assemblyresolve_event4.exe$(PLATFORM_AOT_SUFFIX): assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX) assemblyresolve_deps/TestBase.dll$(PLATFORM_AOT_SUFFIX)
1738 assemblyresolve_event4.exe: assemblyresolve_deps/Test.dll assemblyresolve_deps/TestBase.dll
1739
1740 EXTRA_DIST += assemblyresolve_event5_label.cs assemblyresolve_event5_helper.cs
1741 assemblyresolve_deps/assemblyresolve_event5_label.dll: assemblyresolve_event5_label.cs assemblyresolve_deps 
1742         $(MCS) -target:library -out:assemblyresolve_deps/assemblyresolve_event5_label.dll $(srcdir)/assemblyresolve_event5_label.cs
1743 assemblyresolve_event5_helper.dll: assemblyresolve_event5_helper.cs assemblyresolve_deps/assemblyresolve_event5_label.dll
1744         $(MCS) -target:library -out:assemblyresolve_event5_helper.dll -r:assemblyresolve_deps/assemblyresolve_event5_label.dll $(srcdir)/assemblyresolve_event5_helper.cs
1745 assemblyresolve_event5.exe: assemblyresolve_event5_helper.dll
1746
1747 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
1748 bug-80307.exe: $(srcdir)/bug-80307.cs
1749         $(MCS) -r:$(CLASS)/System.Web.dll -out:$@ $(srcdir)/bug-80307.cs
1750         cd $(top_builddir)/runtime && $(MAKE) test-support-files
1751
1752 EXTRA_DIST += bug-81673-interface.cs
1753
1754 bug-81673.exe$(PLATFORM_AOT_SUFFIX): bug-81673-interface.dll$(PLATFORM_AOT_SUFFIX)
1755 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
1756         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1757         $(MCS) -r:bug-81673-interface.dll -out:bug-81673.exe $(srcdir)/bug-81673.cs
1758         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1759
1760 EXTRA_DIST += bug-36848-a.cs
1761
1762 bug-36848.exe$(PLATFORM_AOT_SUFFIX): bug-36848-a.dll$(PLATFORM_AOT_SUFFIX)
1763 bug-36848.exe bug-36848-a.dll: $(srcdir)/bug-36848.cs $(srcdir)/bug-36848-a.cs
1764         $(MCS) -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs
1765         $(MCS) -r:bug-36848-a.dll -out:bug-36848.exe $(srcdir)/bug-36848.cs
1766         $(MCS) -define:WITH_STOP -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs
1767
1768 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
1769
1770 bug-81691.exe$(PLATFORM_AOT_SUFFIX): bug-81691-b.dll$(PLATFORM_AOT_SUFFIX)
1771 bug-81691.exe bug-81691-a.dll bug-81691-b.dll: $(srcdir)/bug-81691.cs $(srcdir)/bug-81691-a.cs $(srcdir)/bug-81691-b.cs
1772         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs 
1773         $(MCS) -r:bug-81691-a.dll -target:library -out:bug-81691-b.dll $(srcdir)/bug-81691-b.cs
1774         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
1775         rm -f bug-81691-a.dll
1776
1777 EXTRA_DIST += bug-81466-lib.il
1778
1779 bug-81466.exe$(PLATFORM_AOT_SUFFIX): bug-81466-lib.dll$(PLATFORM_AOT_SUFFIX)
1780 bug-81466.exe bug-81466-lib.dll: $(srcdir)/bug-81466.il $(srcdir)/bug-81466-lib.il
1781         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
1782         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
1783
1784 EXTRA_DIST += bug-324535-il.il
1785
1786 bug-324535.exe$(PLATFORM_AOT_SUFFIX): bug-324535-il.dll$(PLATFORM_AOT_SUFFIX)
1787 bug-324535.exe bug-324535-il.dll: $(srcdir)/bug-324535.cs $(srcdir)/bug-324535-il.il
1788         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
1789         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
1790
1791 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
1792
1793 custom-modifiers.2.exe$(PLATFORM_AOT_SUFFIX): custom-modifiers-lib.dll$(PLATFORM_AOT_SUFFIX)
1794 custom-modifiers.2.exe custom-modifiers-lib.dll: $(srcdir)/custom-modifiers.2.cs $(srcdir)/custom-modifiers-lib.il
1795         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
1796         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
1797
1798 EXTRA_DIST += bug-382986-lib.cs
1799
1800 bug-382986.exe$(PLATFORM_AOT_SUFFIX): bug-382986-lib.dll$(PLATFORM_AOT_SUFFIX)
1801 bug-382986.exe bug-382986-lib.dll: $(srcdir)/bug-382986.cs $(srcdir)/bug-382986-lib.cs
1802         $(MCS) -target:library -out:bug-382986-lib.dll $(srcdir)/bug-382986-lib.cs
1803         $(MCS) -r:bug-382986-lib.dll -out:bug-382986.exe $(srcdir)/bug-382986.cs
1804
1805 EXTRA_DIST += bug-17537-helper.cs
1806
1807 bug-17537.exe$(PLATFORM_AOT_SUFFIX): bug-17537-helper.exe$(PLATFORM_AOT_SUFFIX)
1808 bug-17537-helper.exe: $(srcdir)/bug-17537-helper.cs
1809         $(MCS) -out:$@ $<
1810         chmod -x $@
1811 bug-17537.exe: bug-17537-helper.exe
1812
1813 EXTRA_DIST += coreclr-security.cs
1814
1815 test-coreclr-security : coreclr-security.exe
1816         @$(RUNTIME_MOONLIGHT) --security=core-clr-test coreclr-security.exe
1817
1818 EXTRA_DIST += generic-unboxing.2.il generic-boxing.2.il
1819
1820 generic-unboxing.2.dll: $(srcdir)/generic-unboxing.2.il
1821         $(ILASM) /dll /output:$@ $<
1822 generic-boxing.2.dll: $(srcdir)/generic-boxing.2.il generic-unboxing.2.dll
1823         $(ILASM) /dll /output:$@ $<
1824
1825 EXTRA_DIST += generic-unbox.2.cs
1826
1827 generic-unbox.2.exe$(PLATFORM_AOT_SUFFIX): generic-unboxing.2.dll$(PLATFORM_AOT_SUFFIX)
1828 generic-unbox.2.exe: $(srcdir)/generic-unbox.2.cs generic-unboxing.2.dll
1829         $(MCS) -r:generic-unboxing.2.dll -out:$@ $<
1830
1831 EXTRA_DIST += generic-box.2.cs
1832
1833 generic-box.2.exe$(PLATFORM_AOT_SUFFIX): generic-unboxing.2.dll$(PLATFORM_AOT_SUFFIX) generic-boxing.2.dll$(PLATFORM_AOT_SUFFIX)
1834 generic-box.2.exe : $(srcdir)/generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
1835         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $<
1836
1837 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
1838
1839 generic-delegate2-lib.2.dll: $(srcdir)/generic-delegate2-lib.2.il
1840         $(ILASM) /dll /output:$@ $<
1841
1842 generic-delegate2.2.exe$(PLATFORM_AOT_SUFFIX): generic-delegate2-lib.2.dll$(PLATFORM_AOT_SUFFIX)
1843 generic-delegate2.2.exe: $(srcdir)/generic-delegate2.2.cs generic-delegate2-lib.2.dll
1844         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $<
1845
1846 bug-3903.exe: bug-3903.cs
1847         $(MCS_NO_LIB)  $(srcdir)/bug-3903.cs -nostdlib -r:$(srcdir)/../../external/binary-reference-assemblies/v2.0/mscorlib.dll -r:$(srcdir)/../../external/binary-reference-assemblies/v2.0/System.Core.dll -out:$@
1848
1849 gshared:
1850         $(MAKE) test-generic-sharing
1851
1852 gshared-aot:
1853         @$(MAKE) AOT=1 gshared
1854
1855 test-generic-sharing-normal: $(TESTS_GSHARED) $(TESTSAOT_GSHARED)
1856         @for fn in $+ ; do      \
1857                 echo "Testing $$fn ...";        \
1858                 $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;      \
1859                 $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;      \
1860                 $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;      \
1861                 $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;       \
1862                 if [ x$(AOT) = x1 ]; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $$fn > /dev/null || exit 1; $(RUNTIME) $$fn > $$fn.stdout || exit 1; fi; \
1863         done
1864
1865 test-generic-sharing-managed: test-runner.exe $(TESTS_GSHARED) $(TESTSAOT_GSHARED) 
1866         $(Q) $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name "gshared" --disabled "$(DISABLED_TESTS)" --opt-sets "gshared gshared,shared gshared,-inline gshared,-inline,shared" $(TESTS_GSHARED)
1867
1868 test-generic-sharing:
1869         @if test x$(M) != x0; then $(MAKE) test-generic-sharing-managed; else $(MAKE) test-generic-sharing-normal; fi
1870
1871 EXTRA_DIST += async-exceptions.cs
1872 async-exceptions.exe : async-exceptions.cs
1873         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
1874 test-async-exceptions : async-exceptions.exe
1875         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
1876         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
1877
1878 EXTRA_DIST += modules.cs modules-m1.cs
1879 modules-m1.netmodule: modules-m1.cs
1880         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
1881 modules.exe: modules.cs modules-m1.netmodule $(TEST_DRIVER_DEPEND) 
1882         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
1883
1884 # Useful if mono is compiled with --enable-shared=no
1885 patch-libtool:
1886         cp "../../libtool" .
1887         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
1888         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
1889         touch libtest.c
1890
1891
1892 EXTRA_DIST += threadpool-in-processexit.cs threadpool-in-processexit.exe.stdout.expected
1893 test-process-exit:
1894         @$(MCS) $(srcdir)/threadpool-in-processexit.cs -out:threadpool-in-processexit.exe
1895         @echo "Testing threadpool-in-processexit.exe..."
1896         @$(RUNTIME) threadpool-in-processexit.exe > threadpool-in-processexit.exe.stdout
1897         @diff -w threadpool-in-processexit.exe.stdout $(srcdir)/threadpool-in-processexit.exe.stdout.expected
1898
1899 # tests that expect a 1 exit code
1900 TESTS_UNHANDLED_EXCEPTION_1_SRC =       \
1901         unhandled-exception-1.cs
1902
1903 # tests that expect a 255 exit code
1904 TESTS_UNHANDLED_EXCEPTION_255_SRC =     \
1905         unhandled-exception-2.cs        \
1906         unhandled-exception-3.cs        \
1907         unhandled-exception-4.cs        \
1908         unhandled-exception-5.cs        \
1909         unhandled-exception-6.cs        \
1910         unhandled-exception-7.cs        \
1911         unhandled-exception-8.cs
1912
1913 TESTS_UNHANDLED_EXCEPTION_1=$(filter-out $(DISABLED_TESTS),$(TESTS_UNHANDLED_EXCEPTION_1_SRC:.cs=.exe))
1914 TESTS_UNHANDLED_EXCEPTION_255=$(filter-out $(DISABLED_TESTS),$(TESTS_UNHANDLED_EXCEPTION_255_SRC:.cs=.exe))
1915
1916 if FULL_AOT_TESTS
1917 TESTSAOT_UNHANDLED_EXCEPTION_1=$(TESTS_UNHANDLED_EXCEPTION_1:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1918 TESTSAOT_UNHANDLED_EXCEPTION_255=$(TESTS_UNHANDLED_EXCEPTION_255:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1919 endif
1920
1921 if HYBRID_AOT_TESTS
1922 TESTSAOT_UNHANDLED_EXCEPTION_1=$(TESTS_UNHANDLED_EXCEPTION_1:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1923 TESTSAOT_UNHANDLED_EXCEPTION_255=$(TESTS_UNHANDLED_EXCEPTION_255:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1924 endif
1925
1926 test-unhandled-exception-2: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_255)
1927         ok=; \
1928         $(MAKE) test-unhandled-exception-2-1-with-managed-handler || ok=false; \
1929         $(MAKE) test-unhandled-exception-2-1-without-managed-handler || ok=false; \
1930         $(MAKE) test-unhandled-exception-2-255-with-managed-handler || ok=false; \
1931         $(MAKE) test-unhandled-exception-2-255-without-managed-handler || ok=false; \
1932         $$ok
1933
1934 test-unhandled-exception-2-1-with-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_1) test-runner.exe
1935         $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 1 $(TESTS_UNHANDLED_EXCEPTION_1)
1936 test-unhandled-exception-2-1-without-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_1) test-runner.exe
1937         TEST_UNHANDLED_EXCEPTION_HANDLER=1 $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 1 $(TESTS_UNHANDLED_EXCEPTION_1)
1938 test-unhandled-exception-2-255-with-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_255) test-runner.exe
1939         $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 255 $(TESTS_UNHANDLED_EXCEPTION_255)
1940 test-unhandled-exception-2-255-without-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_255) test-runner.exe
1941         TEST_UNHANDLED_EXCEPTION_HANDLER=1 $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 255 $(TESTS_UNHANDLED_EXCEPTION_255)
1942
1943 EXTRA_DIST += appdomain-loader.cs appdomain-tester.cs
1944
1945 if FULL_AOT_TESTS
1946 test-appdomain-unload:
1947 else
1948 appdomain-loader.exe: appdomain-tester.exe
1949
1950 test-appdomain-unload: appdomain-loader.exe appdomain-tester.exe
1951         $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.1.stdout || exit 1;
1952         $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.2.stdout || exit 1;
1953         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.3.stdout || exit 1;
1954         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.4.stdout || exit 1;
1955 endif
1956
1957 EXTRA_DIST += console-output.cs console-output.exe.stderr.expected console-output.exe.stdout.expected
1958 test-console-output: console-output.exe
1959         @$(RUNTIME) console-output.exe 1>console-output.exe.stdout
1960         @$(RUNTIME) console-output.exe 2>console-output.exe.stderr
1961         @diff -w console-output.exe.stdout $(srcdir)/console-output.exe.stdout.expected \
1962                 && diff -w console-output.exe.stderr $(srcdir)/console-output.exe.stderr.expected
1963
1964 test-pedump: test-runner.exe
1965         $(with_mono_path) $(mono_build_root)/tools/pedump/pedump --verify error test-runner.exe
1966
1967 .PHONY: test-gac-loading test-eglib-remap
1968
1969 runtest-gac-loading: test-runner.exe
1970         $(MAKE) -C testing_gac runtest
1971
1972 compile-gac-loading:
1973         $(MAKE) -C testing_gac compile-tests
1974
1975 TESTS_STRESS_PROCESS_SRC=       \
1976                 process-stress-1.cs     \
1977                 process-stress-2.cs     \
1978                 process-stress-3.cs     \
1979                 process-leak.cs
1980
1981 TESTS_STRESS_PROCESS=$(filter-out $(DISABLED_TESTS),$(TESTS_STRESS_PROCESS_SRC:.cs=.exe))
1982
1983 if FULL_AOT_TESTS
1984 TESTSAOT_STRESS_PROCESS=$(TESTS_STRESS_PROCESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1985 endif
1986
1987 if HYBRID_AOT_TESTS
1988 TESTSAOT_STRESS_PROCESS=$(TESTS_STRESS_PROCESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1989 endif
1990
1991 test-process-stress: $(TESTS_STRESS_PROCESS) $(TESTSAOT_STRESS_PROCESS) test-runner.exe
1992         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 600 $(TESTS_STRESS_PROCESS)
1993
1994 coreclr-gcstress:
1995         $(MAKE) -C $(mono_build_root)/acceptance-tests coreclr-gcstress
1996
1997 # Tests for the Mono lldb plugin
1998 EXTRA_DIST += test_lldb.py test-lldb.cs
1999 test-lldb: test-lldb.exe
2000         python test_lldb.py $(JITTEST_PROG)
2001
2002 noinst_LTLIBRARIES = libtest.la
2003
2004 AM_CPPFLAGS = $(GLIB_CFLAGS)
2005
2006 if HOST_WIN32
2007 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
2008 # This shows up when compiling mono_test_marshal_delegate ()
2009 libtest_la_CFLAGS=-fno-optimize-sibling-calls
2010 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
2011 # can't find them. So we use --kill-at to remove the @ suffix as well.
2012 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
2013 else
2014 libtest_la_LDFLAGS = -rpath `pwd`
2015 endif
2016 libtest_la_SOURCES = libtest.c
2017 libtest_la_LIBADD = $(GLIB_LIBS) $(LIBICONV)
2018
2019 INTERNALSVISIBLETO_TEST_SRC = \
2020         internalsvisibleto-runtimetest.cs \
2021         internalsvisibleto-compilertest.cs
2022
2023 INTERNALSVISIBLETO_TEST_LIB_SRC = \
2024         internalsvisibleto-library.cs
2025
2026 INTERNALSVISIBLETO_TEST_LIBS = \
2027         internalsvisibleto-correctcase.dll \
2028         internalsvisibleto-wrongcase.dll \
2029         internalsvisibleto-correctcase-2.dll \
2030         internalsvisibleto-wrongcase-2.dll \
2031         internalsvisibleto-correctcase-sign2048.dll \
2032         internalsvisibleto-wrongcase-sign2048.dll \
2033         internalsvisibleto-correctcase-2-sign2048.dll \
2034         internalsvisibleto-wrongcase-2-sign2048.dll
2035
2036
2037 INTERNALSVISIBLETO_TEST = \
2038         $(INTERNALSVISIBLETO_TEST_SRC:.cs=.exe) \
2039         $(INTERNALSVISIBLETO_TEST_SRC:.cs=-sign2048.exe)
2040
2041 if FULL_AOT_TESTS
2042 INTERNALSVISIBLETO_TESTAOT = \
2043         $(INTERNALSVISIBLETO_TEST:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2044 INTERNALSVISIBLETO_TESTAOT_LIBS = \
2045         $(INTERNALSVISIBLETO_TEST_LIBS:.dll=.dll$(PLATFORM_AOT_SUFFIX))
2046 endif
2047
2048 if HYBRID_AOT_TESTS
2049 INTERNALSVISIBLETO_TESTAOT = \
2050         $(INTERNALSVISIBLETO_TEST:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2051 INTERNALSVISIBLETO_TESTAOT_LIBS = \
2052         $(INTERNALSVISIBLETO_TEST_LIBS:.dll=.dll$(PLATFORM_AOT_SUFFIX))
2053 endif
2054
2055 EXTRA_DIST += $(INTERNALSVISIBLETO_TEST_SRC) $(INTERNALSVISIBLETO_TEST_LIB_SRC)
2056
2057 test-internalsvisibleto: test-runner.exe $(INTERNALSVISIBLETO_TEST) $(INTERNALSVISIBLETO_TESTAOT) $(INTERNALSVISIBLETO_TESTAOT_LIBS)
2058         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ $(INTERNALSVISIBLETO_TEST)
2059
2060 internalsvisibleto-correctcase.dll internalsvisibleto-wrongcase.dll internalsvisibleto-runtimetest.exe: internalsvisibleto-runtimetest.cs internalsvisibleto-library.cs
2061         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase.dll -target:library -d:CORRECT_CASE -d:PERMISSIVE internalsvisibleto-library.cs       
2062         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase.dll -target:library -d:WRONG_CASE -d:PERMISSIVE internalsvisibleto-library.cs
2063         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-runtimetest.exe -warn:0 -r:internalsvisibleto-correctcase.dll -r:internalsvisibleto-wrongcase.dll internalsvisibleto-runtimetest.cs
2064         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase.dll -target:library -d:CORRECT_CASE internalsvisibleto-library.cs     
2065         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase.dll -target:library -d:WRONG_CASE internalsvisibleto-library.cs
2066
2067 internalsvisibleto-correctcase-2.dll internalsvisibleto-wrongcase-2.dll  internalsvisibleto-compilertest.exe: internalsvisibleto-compilertest.cs internalsvisibleto-library.cs
2068         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-2.dll -target:library -d:CORRECT_CASE internalsvisibleto-library.cs   
2069         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-2.dll -target:library -d:WRONG_CASE internalsvisibleto-library.cs
2070         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-compilertest.exe -warn:0 -r:internalsvisibleto-correctcase-2.dll -r:internalsvisibleto-wrongcase-2.dll internalsvisibleto-compilertest.cs
2071
2072 internalsvisibleto-correctcase-sign2048.dll internalsvisibleto-wrongcase-sign2048.dll internalsvisibleto-runtimetest-sign2048.exe: internalsvisibleto-runtimetest.cs internalsvisibleto-library.cs internalsvisibleto-2048.snk
2073         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-sign2048.dll -target:library -d:CORRECT_CASE -d:PERMISSIVE -d:SIGN2048 internalsvisibleto-library.cs
2074         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-sign2048.dll -target:library -d:WRONG_CASE -d:PERMISSIVE -d:SIGN2048 internalsvisibleto-library.cs
2075         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-runtimetest-sign2048.exe -warn:0 -r:internalsvisibleto-correctcase-sign2048.dll -r:internalsvisibleto-wrongcase-sign2048.dll -d:SIGN2048 internalsvisibleto-runtimetest.cs
2076         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-sign2048.dll -target:library -d:CORRECT_CASE -d:SIGN2048 internalsvisibleto-library.cs
2077         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-sign2048.dll -target:library -d:WRONG_CASE -d:SIGN2048 internalsvisibleto-library.cs
2078
2079 internalsvisibleto-correctcase-2-sign2048.dll internalsvisibleto-wrongcase-2-sign2048.dll internalsvisibleto-compilertest-sign2048.exe: internalsvisibleto-compilertest.cs internalsvisibleto-library.cs internalsvisibleto-2048.snk
2080         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-2-sign2048.dll -target:library -d:CORRECT_CASE -d:SIGN2048 internalsvisibleto-library.cs      
2081         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-2-sign2048.dll -target:library -d:WRONG_CASE -d:SIGN2048 internalsvisibleto-library.cs
2082         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-compilertest-sign2048.exe -warn:0 -r:internalsvisibleto-correctcase-2-sign2048.dll -r:internalsvisibleto-wrongcase-2-sign2048.dll -d:SIGN2048 internalsvisibleto-compilertest.cs
2083
2084
2085 CLEANFILES = $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH) $(TESTS_STRESS) $(TESTSAOT_CS) $(TESTSAOT_IL) $(TESTSAOT_BENCH) $(TESTSAOT_STRESS) *.dll *.stdout *.aotlog *.exe stest.dat