Fix bug 18941: Marshal.OffsetOf and Marshal.SizeOf return incorrect results (#7142)
[mono-project.git] / mono / tests / Makefile.am
bloba1b604779252129dbcbcbc5624eb39ccf31d97e0
1 SUBDIRS = gc-descriptors . testing_gac
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
23 check-full:
24         ok=; \
25         $(MAKE) test-sgen || ok=false; \
26         $(MAKE) check-local || ok=false; \
27         $$ok
29 check-parallel:
30         ok=; \
31         $(MAKE) compile-tests; \
32         $(MAKE) check-full || ok=false; \
33         $$ok
35 check-coreclr:
36         $(MAKE) -C $(mono_build_root)/acceptance-tests check-coreclr
38 check-stress:
39         $(MAKE) test-stress-sgen
41 # for backwards compatibility on Wrench
42 test-wrench: check-parallel
44 aotcheck: testaot gshared-aot
46 JITTEST_PROG = $(if $(VALGRIND), valgrind $(VALGRIND_ARGS),) $(if $(SGEN),$(top_builddir)/mono/mini/mono-sgen,$(top_builddir)/mono/mini/mono)
48 JITTEST_PROG_RUN = MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(JITTEST_PROG)
51 RUNTIME_ARGS=--config tests-config --optimize=all --debug
52 TEST_RUNTIME_ARGS ?= $(RUNTIME_ARGS)
53 TEST_AOT_BUILD_FLAGS ?= $(AOT_BUILD_FLAGS)
54 TEST_AOT_RUN_FLAGS ?= $(AOT_RUN_FLAGS)
56 CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
58 with_mono_path = MONO_PATH=$(CLASS)
60 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper
61 TOOLS_RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/build $(top_builddir)/runtime/mono-wrapper --aot-path=$(mcs_topdir)/class/lib/build
63 MKBUNDLE = \
64         PKG_CONFIG_PATH=$(top_builddir):$(PKG_CONFIG_PATH) \
65         $(RUNTIME) $(CLASS)/mkbundle.exe
67 if FULL_AOT_TESTS
68 PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY,FULL_AOT_DESKTOP 
69 endif
71 if HYBRID_AOT_TESTS
72 PROFILE_MCS_FLAGS = -d:MOBILE,MOBILE_LEGACY 
73 endif
75 MCS_NO_UNSAFE = $(TOOLS_RUNTIME) $(CSC) -debug:portable \
76         -noconfig -nologo \
77         -nowarn:0162 -nowarn:0168 -nowarn:0219 -nowarn:0414 -nowarn:0618 \
78         -nowarn:0169 -nowarn:1690 -nowarn:0649 -nowarn:0612 -nowarn:3021 \
79         -nowarn:0197 $(PROFILE_MCS_FLAGS)
80 MCS_NO_LIB = $(MCS_NO_UNSAFE) -unsafe
82 MCS = $(MCS_NO_LIB)
84 ILASM = $(TOOLS_RUNTIME) $(mcs_topdir)/class/lib/build/ilasm.exe
86 TEST_RUNNER = ./test-runner.exe --runtime $(top_builddir)/runtime/mono-wrapper --mono-path "$(CLASS)"
88 if FULL_AOT_TESTS
89 TEST_RUNNER += --runtime-args "$(TEST_AOT_RUN_FLAGS)"
90 endif
92 if HYBRID_AOT_TESTS
93 TEST_RUNNER += --runtime-args "$(TEST_AOT_RUN_FLAGS)"
94 endif
96 if HOST_WIN32
97 TEST_RUNNER += --config tests-config --runtime $(if $(MONO_EXECUTABLE),$(shell cygpath -w -a $(MONO_EXECUTABLE) | sed 's/\\/\\\\/g'),mono)
98 else
99 TEST_RUNNER += --config tests-config --runtime $(if $(MONO_EXECUTABLE),$(MONO_EXECUTABLE),mono)
100 endif
102 TEST_RUNNER += $(if $(V), --verbose,)
104 TESTS_BENCH_SRC=fib.cs random.cs nested-loops.cs ackermann.cs tight-loop.cs sieve.cs
106 TESTS_STRESS_SRC=       \
107         abort-stress-1.cs       \
108         abort-stress-2.cs       \
109         abort-stress-3.cs       \
110         domain-stress.cs        \
111         gchandle-stress.cs      \
112         monitor-stress.cs       \
113         thread-stress.cs        \
114         gc-stress.cs            \
115         gc-copy-stress.cs       \
116         gc-graystack-stress.cs          \
117         exit-stress.cs          \
118         process-stress.cs       \
119         assembly-load-stress.cs
121 # Disabled until ?mcs is fixed
122 #       bug-331958.cs
123 TESTS_CS_SRC=           \
124         generic-unloading-sub.2.cs      \
125         create-instance.cs      \
126         bug-2907.cs             \
127         array-init.cs           \
128         arraylist.cs            \
129         assembly-load-remap.cs  \
130         assemblyresolve_event.cs        \
131         assemblyresolve_event3.cs       \
132         assemblyresolve_event4.cs       \
133         assemblyresolve_event5.cs       \
134         assemblyresolve_event6.cs       \
135         checked.cs              \
136         char-isnumber.cs        \
137         field-layout.cs         \
138         pack-layout.cs          \
139         pack-bug.cs             \
140         hash-table.cs           \
141         test-ops.cs             \
142         obj.cs                  \
143         test-dup-mp.cs          \
144         string.cs               \
145         stringbuilder.cs        \
146         switch.cs               \
147         outparm.cs              \
148         delegate.cs             \
149         bitconverter.cs         \
150         exception.cs            \
151         exception2.cs           \
152         exception3.cs           \
153         exception4.cs           \
154         exception5.cs           \
155         exception6.cs           \
156         exception7.cs           \
157         exception8.cs           \
158         exception10.cs          \
159         exception11.cs          \
160         exception12.cs          \
161         exception13.cs          \
162         exception14.cs          \
163         exception15.cs          \
164         exception16.cs          \
165         exception17.cs          \
166         exception18.cs          \
167         typeload-unaligned.cs   \
168         struct.cs               \
169         valuetype-gettype.cs    \
170         typeof-ptr.cs           \
171         static-constructor.cs   \
172         pinvoke.cs              \
173         pinvoke-utf8.cs         \
174         pinvoke3.cs             \
175         pinvoke11.cs            \
176         pinvoke13.cs            \
177         pinvoke17.cs            \
178         invoke.cs               \
179         invoke2.cs              \
180         runtime-invoke.cs               \
181         invoke-string-ctors.cs          \
182         reinit.cs               \
183         box.cs                  \
184         array.cs                \
185         enum.cs                 \
186         enum2.cs                \
187         enum-intrins.cs         \
188         property.cs             \
189         enumcast.cs             \
190         assignable-tests.cs     \
191         array-cast.cs           \
192         array-subtype-attr.cs   \
193         cattr-compile.cs        \
194         cattr-field.cs          \
195         cattr-object.cs         \
196         custom-attr.cs          \
197         double-cast.cs          \
198         newobj-valuetype.cs     \
199         arraylist-clone.cs      \
200         setenv.cs               \
201         vtype.cs                \
202         isvaluetype.cs          \
203         iface6.cs               \
204         iface7.cs               \
205         ipaddress.cs            \
206         array-vt.cs             \
207         interface1.cs           \
208         reflection-enum.cs      \
209         reflection-prop.cs      \
210         reflection4.cs          \
211         reflection5.cs          \
212         reflection-const-field.cs \
213         many-locals.cs          \
214         string-compare.cs       \
215         test-prime.cs           \
216         test-tls.cs             \
217         params.cs               \
218         reflection.cs           \
219         interface.cs            \
220         iface.cs                \
221         iface2.cs               \
222         iface3.cs               \
223         iface4.cs               \
224         iface-large.cs          \
225         iface-contravariant1.cs \
226         virtual-method.cs       \
227         intptrcast.cs           \
228         indexer.cs              \
229         stream.cs               \
230         console.cs              \
231         shift.cs                \
232         jit-int.cs              \
233         jit-uint.cs             \
234         jit-long.cs             \
235         long.cs                 \
236         jit-ulong.cs            \
237         jit-float.cs            \
238         pop.cs                  \
239         time.cs                 \
240         pointer.cs              \
241         hashcode.cs             \
242         delegate1.cs            \
243         delegate2.cs            \
244         delegate3.cs            \
245         delegate5.cs            \
246         delegate6.cs            \
247         delegate7.cs            \
248         delegate8.cs            \
249         delegate10.cs           \
250         delegate11.cs           \
251         delegate12.cs           \
252         delegate13.cs           \
253         delegate14.cs           \
254         delegate15.cs           \
255         largeexp.cs             \
256         largeexp2.cs            \
257         marshalbyref1.cs        \
258         static-ctor.cs          \
259         inctest.cs              \
260         bound.cs                \
261         array-invoke.cs         \
262         test-arr.cs             \
263         decimal.cs              \
264         decimal-array.cs        \
265         marshal.cs              \
266         marshal1.cs             \
267         marshal2.cs             \
268         marshal3.cs             \
269         marshal5.cs             \
270         marshal6.cs             \
271         marshal7.cs             \
272         marshal8.cs             \
273         marshal9.cs             \
274         marshalbool.cs          \
275         test-byval-in-struct.cs \
276         thread.cs               \
277         thread5.cs              \
278         thread-static.cs        \
279         thread-static-init.cs   \
280         context-static.cs       \
281         float-pop.cs            \
282         interfacecast.cs        \
283         array3.cs               \
284         classinit.cs            \
285         classinit2.cs           \
286         classinit3.cs           \
287         synchronized.cs         \
288         async_read.cs           \
289         threadpool.cs           \
290         threadpool1.cs          \
291         threadpool-exceptions1.cs \
292         threadpool-exceptions2.cs \
293         threadpool-exceptions3.cs \
294         threadpool-exceptions4.cs \
295         threadpool-exceptions5.cs \
296         threadpool-exceptions6.cs \
297         base-definition.cs      \
298         bug-27420.cs            \
299         bug-46781.cs            \
300         bug-42136.cs            \
301         bug-59286.cs            \
302         bug-70561.cs            \
303         bug-78311.cs            \
304         bug-78653.cs            \
305         bug-78656.cs            \
306         bug-77127.cs            \
307         bug-323114.cs           \
308         bug-Xamarin-5278.cs     \
309         interlocked.cs          \
310         delegate-async-exit.cs  \
311         delegate-delegate-exit.cs       \
312         delegate-exit.cs        \
313         delegate-disposed-hashcode.cs   \
314         finalizer-abort.cs      \
315         finalizer-exception.cs  \
316         finalizer-exit.cs       \
317         finalizer-thread.cs     \
318         main-exit.cs    \
319         main-returns-abort-resetabort.cs        \
320         main-returns-background-abort-resetabort.cs     \
321         main-returns-background-resetabort.cs   \
322         main-returns-background.cs      \
323         main-returns-background-change.cs       \
324         main-returns.cs         \
325         subthread-exit.cs       \
326         desweak.cs              \
327         exists.cs               \
328         handleref.cs    \
329         dbnull-missing.cs       \
330         test-type-ctor.cs       \
331         soft-float-tests.cs     \
332         thread-exit.cs          \
333         finalize-parent.cs      \
334         interlocked-2.2.cs      \
335         pinvoke-2.2.cs          \
336         bug-78431.2.cs          \
337         bug-79684.2.cs          \
338         catch-generics.2.cs     \
339         event-get.2.cs          \
340         safehandle.2.cs         \
341         module-cctor-loader.2.cs        \
342         generics-invoke-byref.2.cs      \
343         generic-signature-compare.2.cs  \
344         generics-sharing.2.cs   \
345         shared-generic-methods.2.cs     \
346         shared-generic-synchronized.2.cs        \
347         generic-inlining.2.cs   \
348         generic-initobj.2.cs    \
349         generic-delegate.2.cs   \
350         generic-sizeof.2.cs     \
351         generic-virtual.2.cs    \
352         generic-interface-methods.2.cs  \
353         generic-array-type.2.cs \
354         generic-method-patching.2.cs    \
355         generic-static-methods.2.cs     \
356         generic-null-call.2.cs  \
357         generic-special.2.cs    \
358         generic-special2.2.cs   \
359         generic-exceptions.2.cs \
360         generic-virtual2.2.cs   \
361         generic-valuetype-interface.2.cs        \
362         generic-getgenericarguments.2.cs        \
363         generic-synchronized.2.cs       \
364         generic-delegate-ctor.2.cs      \
365         generic-array-iface-set.2.cs    \
366         generic-typedef.2.cs    \
367         bug-431413.2.cs \
368         bug-459285.2.cs \
369         generic-virtual-invoke.2.cs     \
370         bug-461198.2.cs \
371         generic-sealed-virtual.2.cs     \
372         generic-system-arrays.2.cs      \
373         generic-stack-traces.2.cs       \
374         generic-stack-traces2.2.cs      \
375         bug-472600.2.cs \
376         recursive-generics.2.cs \
377         bug-473482.2.cs \
378         bug-473999.2.cs \
379         bug-479763.2.cs \
380         bug-616463.cs   \
381         bug-80392.2.cs          \
382         bug-82194.2.cs  \
383         anonarray.2.cs  \
384         ienumerator-interfaces.2.cs     \
385         array-enumerator-ifaces.2.cs    \
386         generic_type_definition_encoding.2.cs \
387         bug-333798.2.cs         \
388         bug-348522.2.cs         \
389         bug-340662_bug.cs       \
390         bug-325283.2.cs \
391         thunks.cs \
392         winx64structs.cs \
393         nullable_boxing.2.cs    \
394         valuetype-equals.cs     \
395         custom-modifiers.2.cs   \
396         bug-382986.cs   \
397         test-inline-call-stack.cs       \
398         bug-324535.cs   \
399         modules.cs      \
400         bug-81673.cs    \
401         bug-81691.cs    \
402         bug-415577.cs   \
403         filter-stack.cs \
404         vararg.cs       \
405         vararg2.cs      \
406         bug-461867.cs   \
407         bug-461941.cs   \
408         bug-461261.cs   \
409         bug-400716.cs   \
410         bug-459094.cs   \
411         bug-467456.cs   \
412         bug-508538.cs   \
413         bug-472692.2.cs         \
414         gchandles.cs    \
415         interlocked-3.cs        \
416         interlocked-4.2.cs      \
417         w32message.cs   \
418         gc-altstack.cs  \
419         large-gc-bitmap.cs      \
420         bug-561239.cs   \
421         bug-562150.cs   \
422         bug-599469.cs   \
423         monitor-resurrection.cs \
424         monitor-wait-abort.cs   \
425         monitor-abort.cs        \
426         bug-666008.cs   \
427         bug-685908.cs   \
428         sgen-long-vtype.cs      \
429         delegate-invoke.cs      \
430         bug-696593.cs   \
431         bug-705140.cs   \
432         bug-1147.cs     \
433         mono-path.cs    \
434         bug-bxc-795.cs  \
435         bug-3903.cs     \
436         async-with-cb-throws.cs \
437         bug-6148.cs     \
438         bug-10127.cs    \
439         bug-18026.cs    \
440         allow-synchronous-major.cs      \
441         block_guard_restore_aligment_on_exit.cs \
442         thread_static_gc_layout.cs \
443         sleep.cs \
444         bug-27147.cs    \
445         bug-30085.cs    \
446         bug-17537.cs    \
447         pinvoke_ppcc.cs \
448         pinvoke_ppcs.cs \
449         pinvoke_ppci.cs \
450         pinvoke_ppcf.cs \
451         pinvoke_ppcd.cs \
452         bug-29585.cs    \
453         priority.cs     \
454         abort-cctor.cs  \
455         abort-try-holes.cs \
456         thread-native-exit.cs \
457         reference-loader.cs \
458         thread-suspend-suspended.cs \
459         thread-suspend-selfsuspended.cs \
460         remoting4.cs    \
461         remoting1.cs    \
462         remoting2.cs    \
463         remoting3.cs    \
464         remoting5.cs    \
465         appdomain.cs    \
466         appdomain-client.cs     \
467         appdomain-unload.cs     \
468         appdomain-async-invoke.cs       \
469         appdomain-thread-abort.cs       \
470         appdomain1.cs   \
471         appdomain2.cs   \
472         appdomain-exit.cs       \
473         appdomain-serialize-exception.cs \
474         assemblyresolve_event2.2.cs     \
475         appdomain-unload-callback.cs    \
476         appdomain-unload-doesnot-raise-pending-events.cs        \
477         appdomain-unload-asmload.cs     \
478         appdomain-unload-exception.cs   \
479         unload-appdomain-on-shutdown.cs \
480         appdomain-marshalbyref-assemblyload.cs \
481         bug-47295.cs    \
482         loader.cs       \
483         pinvoke2.cs     \
484         generic-type-builder.2.cs       \
485         dynamic-generic-size.cs \
486         cominterop.cs   \
487         dynamic-method-access.2.cs      \
488         dynamic-method-finalize.2.cs    \
489         dynamic-method-stack-traces.cs  \
490         generic_type_definition.2.cs    \
491         bug-333798-tb.2.cs      \
492         bug-335131.2.cs \
493         bug-322722_patch_bx.2.cs        \
494         bug-322722_dyn_method_throw.2.cs        \
495         bug-389886-2.cs \
496         bug-349190.2.cs \
497         bug-389886-sre-generic-interface-instances.cs   \
498         bug-462592.cs   \
499         bug-575941.cs   \
500         bug-389886-3.cs \
501         constant-division.cs    \
502         dynamic-method-resurrection.cs  \
503         bug-80307.cs    \
504         assembly_append_ordering.cs     \
505         bug-544446.cs   \
506         bug-36848.cs    \
507         generic-marshalbyref.2.cs       \
508         stackframes-async.2.cs  \
509         transparentproxy.cs     \
510         bug-48015.cs    \
511         delegate9.cs    \
512         marshal-valuetypes.cs   \
513         xdomain-threads.cs      \
514         monitor.cs      \
515         generic-xdomain.2.cs    \
516         threadpool-exceptions7.cs       \
517         cross-domain.cs \
518         generic-unloading.2.cs  \
519         namedmutex-destroy-race.cs      \
520         thread6.cs      \
521         appdomain-threadpool-unload.cs  \
522         process-unref-race.cs   \
523         bug-46661.cs    \
524         w32message.cs \
525         runtime-invoke.gen.cs \
526         imt_big_iface_test.cs \
527         bug-58782-plain-throw.cs \
528         bug-58782-capture-and-throw.cs \
529         recursive-struct-arrays.cs \
530         struct-explicit-layout.cs \
531         bug-59281.cs    \
532         init_array_with_lazy_type.cs \
533         weak-fields.cs \
534         threads-leak.cs \
535         threads-init.cs \
536         bug-60848.cs \
537         bug-59400.cs \
538         sizeof-empty-structs.cs
540 if AMD64
541 TESTS_CS_SRC += async-exc-compilation.cs finally_guard.cs finally_block_ending_in_dead_bb.cs
542 if !HOST_WIN32
543 # requires working altstack
544 TESTS_CS_SRC += bug-60862.cs
545 endif
546 endif
548 if X86
549 TESTS_CS_SRC += async-exc-compilation.cs finally_guard.cs finally_block_ending_in_dead_bb.cs
550 if !HOST_WIN32
551 # requires working altstack
552 TESTS_CS_SRC += bug-60862.cs
553 endif
554 endif
556 TESTS_IL_SRC=                   \
557         field-access.il         \
558         method-access.il        \
559         ldftn-access.il         \
560         cpblkTest.il            \
561         vbinterface.il          \
562         calliTest.il            \
563         calliGenericTest.il             \
564         ckfiniteTest.il         \
565         fault-handler.il                \
566         locallocTest.il         \
567         initblkTest.il          \
568         qt-instance.il          \
569         vararg3.il              \
570         bug-29859.il            \
571         bug-78549.il            \
572         static-fields-nonconst.il       \
573         reload-at-bb-end.il     \
574         test-enum-indstoreil.il \
575         filter-bug.il           \
576         even-odd.il             \
577         bug-82022.il    \
578         vt-sync-method.il       \
579         enum_types.il   \
580         invalid-token.il        \
581         call_missing_method.il  \
582         call_missing_class.il   \
583         ldfld_missing_field.il  \
584         ldfld_missing_class.il  \
585         find-method.2.il        \
586         bug-79215.2.il  \
587         bug-79956.2.il  \
588         bug-327438.2.il \
589         bug-387274.2.il \
590         bug-426309.2.il \
591         ldtoken_with_byref_typespec.2.il \
592         resolve_method_bug.2.il \
593         resolve_field_bug.2.il \
594         resolve_type_bug.2.il   \
595         generics-sharing-other-exc.2.il \
596         generic-ldobj.2.il      \
597         generic-mkrefany.2.il   \
598         generic-refanyval.2.il  \
599         generic-ldtoken.2.il    \
600         generic-ldtoken-method.2.il     \
601         generic-ldtoken-field.2.il      \
602         generic-tailcall.2.il   \
603         generic-tailcall2.2.il  \
604         generic-array-exc.2.il  \
605         generic-valuetype-newobj2.2.il  \
606         generic-valuetype-newobj.2.il   \
607         generic-constrained.2.il        \
608         generic-type-load-exception.2.il        \
609         bug-81466.il    \
610         bug457574.il    \
611         bug445361.il    \
612         bug-463303.il   \
613         bug469742.2.il  \
614         bug-528055.il   \
615         array_load_exception.il \
616         bug-481403.il   \
617         interface-with-static-method.il \
618         bug-633291.il   \
619         delegate-with-null-target.il    \
620         bug-318677.il   \
621         gsharing-valuetype-layout.il    \
622         invalid_generic_instantiation.il \
623         bug-45841-fpstack-exceptions.il \
624         instance_tailrec.il     \
625         dim-constrainedcall.il  \
626         dim-diamondshape.il     \
627         dim-genericmethods.il   \
628         dim-methodimpl.il       \
629         dim-sharedgenerics.il   \
630         dim-simple.il   \
631         dim-valuetypes.il
633 TESTS_GSHARED_SRC = \
634         generics-sharing.2.cs   \
635         shared-generic-methods.2.cs     \
636         shared-generic-synchronized.2.cs        \
637         generic-initobj.2.cs            \
638         generics-sharing-other-exc.2.cs \
639         generic-box.2.cs                \
640         generic-unbox.2.cs      \
641         generic-delegate.2.cs   \
642         generic-sizeof.2.cs     \
643         generic-ldobj.2.cs      \
644         generic-mkrefany.2.cs                   \
645         generic-refanyval.2.cs  \
646         generic-ldtoken.2.cs                    \
647         generic-ldtoken-method.2.cs     \
648         generic-ldtoken-field.2.cs      \
649         generic-virtual.2.cs    \
650         generic-tailcall.2.cs                   \
651         generic-interface-methods.2.cs  \
652         generic-array-type.2.cs \
653         generic-method-patching.2.cs    \
654         generic-static-methods.2.cs     \
655         generic-null-call.2.cs  \
656         generic-tailcall2.2.cs                  \
657         generic-array-exc.2.cs  \
658         generic-special.2.cs                    \
659         generic-special2.2.cs   \
660         generic-exceptions.2.cs \
661         generic-delegate2.2.cs          \
662         generic-virtual2.2.cs   \
663         generic-valuetype-interface.2.cs        \
664         generic-valuetype-newobj.2.cs   \
665         generic-valuetype-newobj2.2.cs  \
666         generic-getgenericarguments.2.cs        \
667         generic-synchronized.2.cs       \
668         generic-delegate-ctor.2.cs              \
669         generic-constrained.2.cs        \
670         bug-431413.2.cs                 \
671         generic-virtual-invoke.2.cs     \
672         generic-typedef.2.cs            \
673         generic-marshalbyref.2.cs       \
674         bug-459285.2.cs \
675         bug-461198.2.cs \
676         generic-sealed-virtual.2.cs     \
677         generic-system-arrays.2.cs      \
678         generic-stack-traces.2.cs       \
679         generic-stack-traces2.2.cs              \
680         bug-472600.2.cs \
681         bug-473482.2.cs \
682         bug-473999.2.cs         \
683         bug-479763.2.cs                         \
684         generic-type-load-exception.2.cs        \
685         bug-616463.cs   \
686         bug-1147.cs     \
687         generic-type-builder.2.cs
689 PLATFORM_DISABLED_TESTS=
691 if HOST_WIN32
692 PLATFORM_DISABLED_TESTS += bug-58782-plain-throw.exe bug-58782-capture-and-throw.exe
693 endif
695 if AMD64
696 # #651684
697 PLATFORM_DISABLED_TESTS += finally_guard.exe
699 if HOST_WIN32
700 PLATFORM_DISABLED_TESTS += w32message.exe
701 endif
703 endif
705 if X86
707 if HOST_WIN32
708 PLATFORM_DISABLED_TESTS += async-exc-compilation.exe finally_guard.exe finally_block_ending_in_dead_bb.exe \
709         bug-18026.exe monitor.exe threadpool-exceptions5.exe process-unref-race.exe w32message.exe \
710         unhandled-exception-1.exe unhandled-exception-2.exe unhandled-exception-3.exe unhandled-exception-4.exe \
711         unhandled-exception-5.exe unhandled-exception-6.exe unhandled-exception-7.exe unhandled-exception-8.exe \
712         finalizer-abort.exe
713 endif
715 endif
717 if POWERPC
718 # bug #71274
719 PLATFORM_DISABLED_TESTS += finalizer-abort.exe finalizer-exception.exe finalizer-exit.exe
720 endif
722 if POWERPC64
723 # FIXME: These tests hang/fail for unknown reasons
724 PLATFORM_DISABLED_TESTS += monitor.exe threadpool-exceptions5.exe appdomain-unload.exe \
725         pinvoke2.exe pinvoke3.exe pinvoke11.exe threadpool-exceptions7.exe winx64structs.exe bug-10127.exe pinvoke_ppcc.exe \
726         pinvoke_ppcs.exe pinvoke_ppci.exe pinvoke_ppcf.exe pinvoke_ppcd.exe abort-cctor.exe load-exceptions.exe \
727         sgen-domain-unload-2.exe sgen-weakref-stress.exe sgen-cementing-stress.exe sgen-new-threads-dont-join-stw.exe \
728         sgen-new-threads-dont-join-stw-2.exe sgen-new-threads-collect.exe sgen-bridge.exe
729 endif
731 if ARM
732 PLATFORM_DISABLED_TESTS += filter-stack.exe weak-fields.exe
733 INTERP_PLATFORM_DISABLED_TESTS= \
734         assemblyresolve_event6.exe \
735         delegate-async-exit.exe \
736         delegate-delegate-exit.exe \
737         delegate-exit.exe \
738         delegate1.exe \
739         delegate3.exe \
740         thunks.exe \
741         finalizer-exception.exe \
742         delegate5.exe \
743         delegate8.exe \
744         bug-323114.exe \
745         threadpool-exceptions3.exe \
746         threadpool-exceptions6.exe \
747         bug-80392.2.exe \
748         remoting3.exe \
749         remoting2.exe \
750         appdomain-unload-callback.exe \
751         monitor-abort.exe
752 endif
754 if ARM64
755 PLATFORM_DISABLED_TESTS += weak-fields.exe
756 INTERP_PLATFORM_DISABLED_TESTS= \
757         assemblyresolve_event6.exe \
758         finalizer-exception.exe
759 endif
761 if MIPS
762 # monitor.exe is racy
763 PLATFORM_DISABLED_TESTS += filter-stack.exe monitor.exe
764 endif
766 if S390X
767 PLATFORM_DISABLED_TESTS += dynamic-method-resurrection.exe
768 #PLATFORM_DISABLED_TESTS=dynamic-method-resurrection.exe exception17.exe
770 PLATFORM_DISABLED_TESTS += \
771         sgen-toggleref.exe \
772         sgen-bridge.exe \
773         sgen-bridge-major-fragmentation.exe \
774         sgen-bridge-xref.exe
775 endif
777 PROFILE_DISABLED_TESTS=
779 if FULL_AOT_TESTS
780 # Tests which rely on TypeLoadExceptions
781 # In full-aot mode, these cause the relevant methods to be not AOTed.
782 PROFILE_DISABLED_TESTS += \
783         typeload-unaligned.exe \
784         field-access.exe \
785         invalid_generic_instantiation.exe \
786         bug-481403.exe \
787         array_ldelema.exe \
788         array_load_exception.exe \
789         bug445361.exe \
790         generic-type-load-exception.2.exe \
791         invalid-token.exe \
792         call_missing_method.exe \
793         call_missing_class.exe \
794         ldfld_missing_field.exe \
795         ldfld_missing_class.exe \
796         vt-sync-method.exe \
797         resolve_method_bug.2.exe \
798         resolve_field_bug.2.exe \
799         resolve_type_bug.2.exe \
800         bug-81691.exe \
801         bug-327438.2.exe
803 # Tests which rely on remoting
804 PROFILE_DISABLED_TESTS += \
805         context-static.exe \
806         bug-415577.exe \
807         generic-marshalbyref.2.exe \
808         unhandled-exception-7.exe
810 # Tests which use unsupported pinvoke+full aot
811 # functionality
812 PROFILE_DISABLED_TESTS += \
813         marshal.exe \
814         marshal2.exe \
815         marshal6.exe \
816         marshal7.exe \
817         marshal8.exe \
818         pinvoke-2.2.exe \
819         pinvoke3.exe \
820         thunks.exe \
821         bug-58782-plain-throw.exe \
822         bug-58782-capture-and-throw.exe
824 # Tests which load assemblies which are not
825 # in the testing_aot_full profile
826 PROFILE_DISABLED_TESTS += \
827         assembly-load-remap.exe
829 # Test which needs remoting support
830 PROFILE_DISABLED_TESTS += \
831         remoting4.exe   \
832         remoting1.exe   \
833         remoting2.exe   \
834         remoting3.exe   \
835         remoting5.exe
837 # Tests which needs AppDomain support
838 PROFILE_DISABLED_TESTS += \
839         appdomain.exe   \
840         appdomain-client.exe    \
841         appdomain-unload.exe    \
842         appdomain-async-invoke.exe      \
843         appdomain-thread-abort.exe      \
844         appdomain1.exe  \
845         appdomain2.exe  \
846         appdomain-exit.exe      \
847         appdomain-unload-asmload.exe \
848         appdomain-unload-callback.exe   \
849         appdomain-unload-doesnot-raise-pending-events.exe       \
850         unload-appdomain-on-shutdown.exe        \
851         appdomain-marshalbyref-assemblyload.exe \
852         assemblyresolve_event2.2.exe    \
853         assemblyresolve_event6.exe      \
854         bug-544446.exe  \
855         bug-36848.exe   \
856         generic-marshalbyref.2.exe      \
857         stackframes-async.2.exe \
858         transparentproxy.exe    \
859         bug-48015.exe   \
860         delegate9.exe   \
861         marshal-valuetypes.exe  \
862         xdomain-threads.exe     \
863         monitor.exe     \
864         generic-xdomain.2.exe   \
865         threadpool-exceptions7.exe      \
866         cross-domain.exe        \
867         generic-unloading.2.exe \
868         appdomain-threadpool-unload.exe
870 # Tests which needs System.Reflection.Emit support
871 PROFILE_DISABLED_TESTS += \
872         bug-47295.exe   \
873         loader.exe      \
874         pinvoke2.exe    \
875         generic-type-builder.2.exe      \
876         dynamic-generic-size.exe        \
877         cominterop.exe  \
878         dynamic-method-access.2.exe     \
879         dynamic-method-finalize.2.exe   \
880         dynamic-method-stack-traces.exe \
881         generic_type_definition.2.exe   \
882         bug-333798-tb.2.exe     \
883         bug-335131.2.exe        \
884         bug-322722_patch_bx.2.exe       \
885         bug-322722_dyn_method_throw.2.exe       \
886         bug-389886-2.exe        \
887         bug-349190.2.exe        \
888         bug-389886-sre-generic-interface-instances.exe  \
889         bug-462592.exe  \
890         bug-575941.exe  \
891         bug-389886-3.exe        \
892         constant-division.exe   \
893         dynamic-method-resurrection.exe \
894         assembly_append_ordering.exe \
895         assemblyresolve_event5.exe
897 # Test which needs System.Web support
898 PROFILE_DISABLED_TESTS += \
899         bug-80307.exe
901 # Tests which needs named Mutex support
902 PROFILE_DISABLED_TESTS += \
903         namedmutex-destroy-race.exe
905 # ThreadAbortException doesn't have necessary field for this test
906 PROFILE_DISABLED_TESTS += \
907         thread6.exe
909 # can't AOT the TestingReferenceAssembly.dll which is a dependency
910 # of reference-loader.exe because it contains the [ReferenceAssemblyAttribute]
911 # and the runtime errors out with "File does not contain a valid CIL image."
912 PROFILE_DISABLED_TESTS += \
913         reference-loader.exe
915 # constraints-load.il: 
916 # Failed to load method 0x6000007 from '..../mono/tests/constraints-load.exe' due to 
917 # Could not resolve type with token 01000002 assembly:mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 type:System.BrokenIComparable`1 member:<none>.
918 PROFILE_DISABLED_TESTS += \
919         constraints-load.exe \
920         bug-515884.exe
922 PROFILE_DISABLED_TESTS += \
923         generic-type-builder.2.exe
925 PROFILE_DISABLED_TESTS += \
926         sgen-domain-unload.exe  \
927         sgen-domain-unload-2.exe
929 PROFILE_DISABLED_TESTS += \
930         appdomain-loader.exe \
931         assemblyresolve_event3.exe \
932         appdomain-serialize-exception.exe
934 # https://bugzilla.xamarin.com/show_bug.cgi?id=60973
935 PROFILE_DISABLED_TESTS += \
936         weak-fields.exe
937 endif
939 if HYBRID_AOT_TESTS
940 PROFILE_DISABLED_TESTS += \
941         bug-80307.exe \
942         namedmutex-destroy-race.exe
943 endif
945 AOT_DISABLED_TESTS= \
946         constraints-load.exe
948 CI_DISABLED_TESTS = \
949         main-returns-background-resetabort.exe \
950         main-returns-background-abort-resetabort.exe    \
951         assemblyresolve_event3.exe \
952         delegate2.exe   \
953         finally_guard.exe \
954         generic-xdomain.2.exe
956 # failing tests which we temporarily disable for PRs
957 # so they don't interfere with other people's work
958 CI_PR_DISABLED_TESTS = \
959         appdomain-threadpool-unload.exe \
960         monitor-abort.exe \
961         monitor-wait-abort.exe \
962         process-stress-3.exe \
963         sleep.exe
965 if ENABLE_COOP
966 CI_PR_DISABLED_TESTS += \
967         abort-cctor.exe \
968         bug-58782-plain-throw.exe \
969         bug-58782-capture-and-throw.exe
970 endif
972 # appdomain-threadpool-unload.exe creates 100 appdomains, takes too long with llvm
973 LLVM_DISABLED_TESTS = \
974         finally_block_ending_in_dead_bb.exe \
975         appdomain-threadpool-unload.exe
977 # https://github.com/mono/mono/issues/6490
978 LLVM_DISABLED_TESTS += \
979         weak-fields.exe
981 LLVM = $(filter --llvm, $(MONO_ENV_OPTIONS))
983 # The two finalizer tests only work under sgen
984 # gc-altstack.exe fails under boehm because it has no support for altstack
985 # bug-459094.exe creates an extremely deep directory tree
986 # delegate-invoke.exe depends on 929c6bc9b6d76a273f251e6f5dfacac36e9c38bd which was
987 # reverted.
988 # bug-Xamarin-5278.exe got broken by 5d26590e79da139a284459299aee95c25f4cd835
989 # appdomain-thread-abort.exe: https://bugzilla.xamarin.com/show_bug.cgi?id=47054
990 # abort-try-holes.exe is flaky due to unwinding failure to the finally block when aborting
991 # appdomain-marshalbyref-assemblyload.exe: https://bugzilla.xamarin.com/show_bug.cgi?id=49308
992 # threads-init.exe: runs out of system threads
993 # dim-constrainedcall.exe: fails on dontnet as well (https://github.com/dotnet/coreclr/issues/15353)
994 KNOWN_FAILING_TESTS = \
995         delegate-async-exception.exe    \
996         bug-348522.2.exe        \
997         bug-459094.exe \
998         delegate-invoke.exe \
999         bug-Xamarin-5278.exe \
1000         appdomain-marshalbyref-assemblyload.exe \
1001         abort-try-holes.exe \
1002         threads-init.exe \
1003         dim-constrainedcall.exe
1005 DISABLED_TESTS = \
1006         $(KNOWN_FAILING_TESTS) \
1007         $(PLATFORM_DISABLED_TESTS) \
1008         $(EXTRA_DISABLED_TESTS) \
1009         $(COOP_DISABLED_TESTS) \
1010         $(PROFILE_DISABLED_TESTS) \
1011         $(if $(AOT),$(AOT_DISABLED_TESTS)) \
1012         $(if $(CI),$(CI_DISABLED_TESTS)) \
1013         $(if $(CI_PR),$(CI_PR_DISABLED_TESTS)) \
1014         $(if $(LLVM),$(LLVM_DISABLED_TESTS))
1016 # bug-48015.exe: be careful when re-enabling, it happens that it returns with
1017 #                exit code 0, but doesn't actually execute the test.
1018 # block_guard_restore_aligment_on_exit.exe: flaky (10% of the time it hangs and thus times out)
1019 # weak-fields.exe: https://bugzilla.xamarin.com/show_bug.cgi?id=60973
1020 # bug-60862.exe: missing support to map IP->method; only works on platforms with altstack support.
1021 INTERP_DISABLED_TESTS = \
1022         $(KNOWN_FAILING_TESTS) \
1023         $(INTERP_PLATFORM_DISABLED_TESTS) \
1024         $(COOP_DISABLED_TESTS) \
1025         $(if $(CI),$(CI_DISABLED_TESTS)) \
1026         $(if $(CI_PR),$(CI_PR_DISABLED_TESTS)) \
1027         appdomain-unload.exe \
1028         async-with-cb-throws.exe \
1029         block_guard_restore_aligment_on_exit.exe \
1030         bug-335131.2.exe \
1031         bug-415577.exe \
1032         bug-45841-fpstack-exceptions.exe \
1033         bug-48015.exe \
1034         bug445361.exe \
1035         bug-60862.exe \
1036         calliGenericTest.exe \
1037         cominterop.exe \
1038         context-static.exe \
1039         delegate-with-null-target.exe \
1040         delegate9.exe \
1041         dynamic-method-stack-traces.exe \
1042         even-odd.exe \
1043         exception18.exe \
1044         field-access.exe \
1045         handleref.exe \
1046         nullable_boxing.2.exe \
1047         pinvoke.exe \
1048         pinvoke2.exe \
1049         pinvoke3.exe \
1050         safehandle.2.exe \
1051         stackframes-async.2.exe \
1052         static-constructor.exe \
1053         threadpool-exceptions2.exe \
1054         threadpool-exceptions4.exe \
1055         threadpool-exceptions5.exe \
1056         typeload-unaligned.exe \
1057         vararg.exe \
1058         vararg2.exe \
1059         vararg3.exe     \
1060         dim-diamondshape.exe
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))
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
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
1084 EXTRA_DIST=test-driver test-runner.cs $(TESTS_CS_SRC) $(TESTS_IL_SRC) \
1085         $(TESTS_BENCH_SRC) $(TESTS_STRESS_SRC) stress-runner.pl
1087 %.exe: %.il
1088         $(ILASM) -out:$@ $<
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
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
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:$@ $<
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:$@ $<
1113 %.dll: %.cs
1114         $(MCS) -r:$(CLASS)/System.dll -target:library -out:$@ $<
1115 %.dll: %.il
1116         $(ILASM) /dll /output:$@ $<
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
1121 TestingReferenceAssembly.dll: TestingReferenceAssembly.cs
1122         $(MCS) -target:library -out:$@ $<
1124 TestingReferenceReferenceAssembly.dll: TestingReferenceReferenceAssembly.cs TestingReferenceAssembly.dll
1125         $(MCS) -r:TestingReferenceAssembly.dll -target:library -out:$@ $<
1127 %.exe$(PLATFORM_AOT_SUFFIX): %.exe 
1128         $(RUNTIME) $(TEST_AOT_BUILD_FLAGS) $<
1130 %.dll$(PLATFORM_AOT_SUFFIX): %.dll 
1131         $(RUNTIME) $(TEST_AOT_BUILD_FLAGS) $<
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
1148 # Target to precompile the test executables
1149 tests: compile-tests
1152 # Test that no symbols are missed in eglib-remap.h
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
1169 test-env-options:
1170         MONO_ENV_OPTIONS="--version" $(RUNTIME) array-init.exe | grep -q Architecture:
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
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 {} \;
1181 TestDriver.dll:
1182         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs $(srcdir)/../mini/TestHelpers.cs
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 $(TEST_AOT_BUILD_FLAGS) --debug $${i} > $${i}.aotlog 2>&1 || exit 1; \
1194                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" "$${dump_action}" $(TEST_RUNTIME_ARGS) $(TEST_AOT_RUN_FLAGS) ; \
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
1217 runtest-managed: test-runner.exe compile-tests
1218         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) -j a --testsuite-name "runtime" --timeout 300 --disabled "$(DISABLED_TESTS)" --runtime-args "$(TEST_RUNTIME_FLAGS)" $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH)
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)
1223 test-jit:
1224         @if test x$(M) != x0; then $(MAKE) runtest-managed; else $(MAKE) runtest; fi
1226 testaot:
1227         @$(MAKE) AOT=1 runtest
1229 testtrace:
1230         @$(MAKE) TEST_RUNTIME_ARGS="$${TEST_RUNTIME_ARGS} --trace" runtest
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)
1235 testjitspeed: $(JITTEST_PROG) compile-tests
1236         for i in $(TESTS_BENCH); do     \
1237                 echo $$i;       \
1238                 time $(JITTEST_PROG) $$i;       \
1239         done
1241 test-iomap-regression: exists.exe
1242         @echo "Testing exists.exe..."
1243         @MONO_IOMAP=all $(RUNTIME) exists.exe
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 $(TEST_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
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
1269 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
1271 load-missing.dll: load-missing.il
1272         $(Q) $(ILASM) /dll /output:$@ $<
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
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
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
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:$@ $<
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
1298 EXTRA_DIST += custom-attr-errors.cs custom-attr-errors-lib.cs
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
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
1308 EXTRA_DIST += reflection-load-with-context-lib.cs reflection-load-with-context-second-lib.cs reflection-load-with-context.cs
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
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
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
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
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
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
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
1361 TESTS_SGEN_REGULAR=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_REGULAR_SRC:.cs=.exe))
1363 if FULL_AOT_TESTS
1364 TESTSAOT_SGEN_REGULAR=$(TESTS_SGEN_REGULAR:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1365 endif
1367 if HYBRID_AOT_TESTS
1368 TESTSAOT_SGEN_REGULAR=$(TESTS_SGEN_REGULAR:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1369 endif
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
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
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)
1409 TESTS_SGEN_TOGGLEREF_SRC=       \
1410         sgen-toggleref.cs
1412 TESTS_SGEN_TOGGLEREF=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_TOGGLEREF_SRC:.cs=.exe))
1414 if FULL_AOT_TESTS
1415 TESTSAOT_SGEN_TOGGLEREF=$(TESTS_SGEN_TOGGLEREF:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1416 endif
1418 if HYBRID_AOT_TESTS
1419 TESTSAOT_SGEN_TOGGLEREF=$(TESTS_SGEN_TOGGLEREF:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1420 endif
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
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
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)
1460 TESTS_SGEN_BRIDGE_SRC=  \
1461         sgen-bridge.cs  \
1462         sgen-bridge-major-fragmentation.cs
1464 TESTS_SGEN_BRIDGE=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE_SRC:.cs=.exe))
1466 if FULL_AOT_TESTS
1467 TESTSAOT_SGEN_BRIDGE=$(TESTS_SGEN_BRIDGE:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1468 endif
1470 if HYBRID_AOT_TESTS
1471 TESTSAOT_SGEN_BRIDGE=$(TESTS_SGEN_BRIDGE:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1472 endif
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
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
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)
1509 TESTS_SGEN_BRIDGE2_SRC= \
1510         sgen-bridge-xref.cs
1512 TESTS_SGEN_BRIDGE2=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE2_SRC:.cs=.exe))
1514 if FULL_AOT_TESTS
1515 TESTSAOT_SGEN_BRIDGE2=$(TESTS_SGEN_BRIDGE2:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1516 endif
1518 if HYBRID_AOT_TESTS
1519 TESTSAOT_SGEN_BRIDGE2=$(TESTS_SGEN_BRIDGE2:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1520 endif
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
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
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)
1557 TESTS_SGEN_BRIDGE3_SRC= \
1558         sgen-bridge-gchandle.cs
1560 TESTS_SGEN_BRIDGE3=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_BRIDGE3_SRC:.cs=.exe))
1562 if FULL_AOT_TESTS
1563 TESTSAOT_SGEN_BRIDGE3=$(TESTS_SGEN_BRIDGE3:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1564 endif
1566 if HYBRID_AOT_TESTS
1567 TESTSAOT_SGEN_BRIDGE3=$(TESTS_SGEN_BRIDGE3:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1568 endif
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
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
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)
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
1612 TESTS_SGEN_OOM=$(filter-out $(DISABLED_TESTS),$(TESTS_SGEN_OOM_SRC:.cs=.exe))
1614 if FULL_AOT_TESTS
1615 TESTSAOT_SGEN_OOM=$(TESTS_SGEN_OOM:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1616 endif
1618 if HYBRID_AOT_TESTS
1619 TESTSAOT_SGEN_OOM=$(TESTS_SGEN_OOM:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1620 endif
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)
1625 AOT_CONFIGURATIONS=     \
1626         "|regular"      \
1627         "--gc=boehm|boehm"
1629 #LLVM crashes, got to fix it first.
1630 #       "--llvm|llvm"   \
1631 #       "--llvm --gc=boehm|llvm+boehm"
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
1664 # Generated tests for runtime invoke
1665 EXTRA_DIST += gen-runtime-invoke.cs
1667 runtime-invoke.gen.cs: gen-runtime-invoke.exe
1668         $(Q) $(RUNTIME) gen-runtime-invoke.exe > runtime-invoke.gen.cs
1670 EXTRA_DIST += make-imt-test.cs
1672 imt_big_iface_test.cs: make-imt-test.exe
1673         $(Q) $(RUNTIME) make-imt-test.exe > imt_big_iface_test.cs
1675 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
1677 test-inline-call-stack-library.dll: $(srcdir)/test-inline-call-stack-library.cs
1678         $(MCS) -t:library -out:$@ $<
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:$@ $<
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
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
1703 test-unhandled-exception: unhandled-exception-test-runner.2.exe
1704         $(Q) $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
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
1711 event-get.2.exe$(PLATFORM_AOT_SUFFIX): event-il.exe$(PLATFORM_AOT_SUFFIX)
1712 event-get.2.exe: event-il.exe
1714 module-cctor-loader.2.exe$(PLATFORM_AOT_SUFFIX): module-cctor.exe$(PLATFORM_AOT_SUFFIX)
1715 module-cctor-loader.2.exe: module-cctor.exe
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
1720 assemblyresolve_asm.dll$(PLATFORM_AOT_SUFFIX): assemblyresolve_asm.dll assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX)
1721         MONO_PATH="assemblyresolve_deps:$(CLASS)" $(top_builddir)/runtime/mono-wrapper $(TEST_AOT_BUILD_FLAGS) assemblyresolve_asm.dll
1722 assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX): assemblyresolve_deps/Test.dll assemblyresolve_deps/TestBase.dll$(PLATFORM_AOT_SUFFIX)
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
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
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
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
1747 assemblyresolve_event6.exe$(PLATFORM_AOT_SUFFIX): assemblyresolve_asm.dll$(PLATFORM_AOT_SUFFIX) assemblyresolve_deps/Test.dll$(PLATFORM_AOT_SUFFIX) assemblyresolve_deps/TestBase.dll$(PLATFORM_AOT_SUFFIX)
1748 assemblyresolve_event6.exe: assemblyresolve_asm.dll assemblyresolve_deps/Test.dll assemblyresolve_deps/TestBase.dll
1750 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
1751 bug-80307.exe: $(srcdir)/bug-80307.cs
1752         $(MCS) -r:$(CLASS)/System.Web.dll -out:$@ $(srcdir)/bug-80307.cs
1753         cd $(top_builddir)/runtime && $(MAKE) test-support-files
1755 EXTRA_DIST += bug-81673-interface.cs
1757 bug-81673.exe$(PLATFORM_AOT_SUFFIX): bug-81673-interface.dll$(PLATFORM_AOT_SUFFIX)
1758 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
1759         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1760         $(MCS) -r:bug-81673-interface.dll -out:bug-81673.exe $(srcdir)/bug-81673.cs
1761         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1763 EXTRA_DIST += bug-36848-a.cs
1765 bug-36848.exe$(PLATFORM_AOT_SUFFIX): bug-36848-a.dll$(PLATFORM_AOT_SUFFIX)
1766 bug-36848.exe bug-36848-a.dll: $(srcdir)/bug-36848.cs $(srcdir)/bug-36848-a.cs
1767         $(MCS) -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs
1768         $(MCS) -r:bug-36848-a.dll -out:bug-36848.exe $(srcdir)/bug-36848.cs
1769         $(MCS) -define:WITH_STOP -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs
1771 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
1773 bug-81691.exe$(PLATFORM_AOT_SUFFIX): bug-81691-b.dll$(PLATFORM_AOT_SUFFIX)
1774 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
1775         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs 
1776         $(MCS) -r:bug-81691-a.dll -target:library -out:bug-81691-b.dll $(srcdir)/bug-81691-b.cs
1777         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
1778         rm -f bug-81691-a.dll
1780 EXTRA_DIST += bug-81466-lib.il
1782 bug-81466.exe$(PLATFORM_AOT_SUFFIX): bug-81466-lib.dll$(PLATFORM_AOT_SUFFIX)
1783 bug-81466.exe bug-81466-lib.dll: $(srcdir)/bug-81466.il $(srcdir)/bug-81466-lib.il
1784         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
1785         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
1787 EXTRA_DIST += bug-324535-il.il
1789 bug-324535.exe$(PLATFORM_AOT_SUFFIX): bug-324535-il.dll$(PLATFORM_AOT_SUFFIX)
1790 bug-324535.exe bug-324535-il.dll: $(srcdir)/bug-324535.cs $(srcdir)/bug-324535-il.il
1791         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
1792         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
1794 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
1796 custom-modifiers.2.exe$(PLATFORM_AOT_SUFFIX): custom-modifiers-lib.dll$(PLATFORM_AOT_SUFFIX)
1797 custom-modifiers.2.exe custom-modifiers-lib.dll: $(srcdir)/custom-modifiers.2.cs $(srcdir)/custom-modifiers-lib.il
1798         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
1799         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
1801 EXTRA_DIST += bug-382986-lib.cs
1803 bug-382986.exe$(PLATFORM_AOT_SUFFIX): bug-382986-lib.dll$(PLATFORM_AOT_SUFFIX)
1804 bug-382986.exe bug-382986-lib.dll: $(srcdir)/bug-382986.cs $(srcdir)/bug-382986-lib.cs
1805         $(MCS) -target:library -out:bug-382986-lib.dll $(srcdir)/bug-382986-lib.cs
1806         $(MCS) -r:bug-382986-lib.dll -out:bug-382986.exe $(srcdir)/bug-382986.cs
1808 EXTRA_DIST += bug-17537-helper.cs
1810 bug-17537.exe$(PLATFORM_AOT_SUFFIX): bug-17537-helper.exe$(PLATFORM_AOT_SUFFIX)
1811 bug-17537-helper.exe: $(srcdir)/bug-17537-helper.cs
1812         $(MCS) -out:$@ $<
1813         chmod -x $@
1814 bug-17537.exe: bug-17537-helper.exe
1816 EXTRA_DIST += coreclr-security.cs
1818 test-coreclr-security : coreclr-security.exe
1819         @$(RUNTIME_MOONLIGHT) --security=core-clr-test coreclr-security.exe
1821 EXTRA_DIST += generic-unboxing.2.il generic-boxing.2.il
1823 generic-unboxing.2.dll: $(srcdir)/generic-unboxing.2.il
1824         $(ILASM) /dll /output:$@ $<
1825 generic-boxing.2.dll: $(srcdir)/generic-boxing.2.il generic-unboxing.2.dll
1826         $(ILASM) /dll /output:$@ $<
1828 EXTRA_DIST += generic-unbox.2.cs
1830 generic-unbox.2.exe$(PLATFORM_AOT_SUFFIX): generic-unboxing.2.dll$(PLATFORM_AOT_SUFFIX)
1831 generic-unbox.2.exe: $(srcdir)/generic-unbox.2.cs generic-unboxing.2.dll
1832         $(MCS) -r:generic-unboxing.2.dll -out:$@ $<
1834 EXTRA_DIST += generic-box.2.cs
1836 generic-box.2.exe$(PLATFORM_AOT_SUFFIX): generic-unboxing.2.dll$(PLATFORM_AOT_SUFFIX) generic-boxing.2.dll$(PLATFORM_AOT_SUFFIX)
1837 generic-box.2.exe : $(srcdir)/generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
1838         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $<
1840 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
1842 generic-delegate2-lib.2.dll: $(srcdir)/generic-delegate2-lib.2.il
1843         $(ILASM) /dll /output:$@ $<
1845 generic-delegate2.2.exe$(PLATFORM_AOT_SUFFIX): generic-delegate2-lib.2.dll$(PLATFORM_AOT_SUFFIX)
1846 generic-delegate2.2.exe: $(srcdir)/generic-delegate2.2.cs generic-delegate2-lib.2.dll
1847         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $<
1849 bug-3903.exe: bug-3903.cs
1850         $(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:$@
1852 EXTRA_DIST += appdomain-marshalbyref-assemblyload-MidAssembly.cs appdomain-marshalbyref-assemblyload-LeafAssembly.cs
1854 LeafAssembly.dll: appdomain-marshalbyref-assemblyload-LeafAssembly.cs
1855         mkdir -p appdomain-marshalbyref-assemblyload1
1856         $(MCS) -target:library -out:$@ $<
1858 appdomain-marshalbyref-assemblyload2/LeafAssembly.dll: appdomain-marshalbyref-assemblyload-LeafAssembly.cs
1859         mkdir -p appdomain-marshalbyref-assemblyload2
1860         $(MCS) -target:library -out:$@ $< -define:UNDEFINE_OTHER_METHOD
1862 MidAssembly.dll: appdomain-marshalbyref-assemblyload-MidAssembly.cs LeafAssembly.dll
1863         mkdir -p appdomain-marshalbyref-assemblyload1
1864         $(MCS) -target:library -out:$@ $< -r:LeafAssembly.dll
1866 appdomain-marshalbyref-assemblyload.exe: appdomain-marshalbyref-assemblyload.cs MidAssembly.dll LeafAssembly.dll appdomain-marshalbyref-assemblyload2/LeafAssembly.dll
1867         $(MCS) -out:$@ $< -r:MidAssembly.dll -r:LeafAssembly.dll
1869 gshared:
1870         $(MAKE) test-generic-sharing
1872 gshared-aot:
1873         @$(MAKE) AOT=1 gshared
1875 test-generic-sharing-normal: $(TESTS_GSHARED) $(TESTSAOT_GSHARED)
1876         @for fn in $+ ; do      \
1877                 echo "Testing $$fn ...";        \
1878                 $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;      \
1879                 $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;      \
1880                 $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;      \
1881                 $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;       \
1882                 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; \
1883         done
1885 test-generic-sharing-managed: test-runner.exe $(TESTS_GSHARED) $(TESTSAOT_GSHARED) 
1886         $(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)
1888 test-generic-sharing:
1889         @if test x$(M) != x0; then $(MAKE) test-generic-sharing-managed; else $(MAKE) test-generic-sharing-normal; fi
1891 EXTRA_DIST += async-exceptions.cs
1892 async-exceptions.exe : async-exceptions.cs
1893         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
1894 test-async-exceptions : async-exceptions.exe
1895         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
1896         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
1898 EXTRA_DIST += modules.cs modules-m1.cs
1899 modules-m1.netmodule: modules-m1.cs
1900         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
1901 modules.exe: modules.cs modules-m1.netmodule $(TEST_DRIVER_DEPEND) 
1902         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
1904 # Useful if mono is compiled with --enable-shared=no
1905 patch-libtool:
1906         cp "../../libtool" .
1907         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
1908         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
1909         touch libtest.c
1912 EXTRA_DIST += threadpool-in-processexit.cs threadpool-in-processexit.exe.stdout.expected
1913 test-process-exit:
1914         @$(MCS) $(srcdir)/threadpool-in-processexit.cs -out:threadpool-in-processexit.exe
1915         @echo "Testing threadpool-in-processexit.exe..."
1916         @$(RUNTIME) threadpool-in-processexit.exe > threadpool-in-processexit.exe.stdout
1917         @diff -w threadpool-in-processexit.exe.stdout $(srcdir)/threadpool-in-processexit.exe.stdout.expected
1919 # tests that expect a 1 exit code
1920 TESTS_UNHANDLED_EXCEPTION_1_SRC =       \
1921         unhandled-exception-1.cs        \
1922         unhandled-exception-9.cs
1924 # tests that expect a 255 exit code
1925 TESTS_UNHANDLED_EXCEPTION_255_SRC =     \
1926         unhandled-exception-2.cs        \
1927         unhandled-exception-3.cs        \
1928         unhandled-exception-4.cs        \
1929         unhandled-exception-5.cs        \
1930         unhandled-exception-6.cs        \
1931         unhandled-exception-7.cs        \
1932         unhandled-exception-8.cs
1934 TESTS_UNHANDLED_EXCEPTION_1=$(filter-out $(DISABLED_TESTS),$(TESTS_UNHANDLED_EXCEPTION_1_SRC:.cs=.exe))
1935 TESTS_UNHANDLED_EXCEPTION_255=$(filter-out $(DISABLED_TESTS),$(TESTS_UNHANDLED_EXCEPTION_255_SRC:.cs=.exe))
1937 if FULL_AOT_TESTS
1938 TESTSAOT_UNHANDLED_EXCEPTION_1=$(TESTS_UNHANDLED_EXCEPTION_1:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1939 TESTSAOT_UNHANDLED_EXCEPTION_255=$(TESTS_UNHANDLED_EXCEPTION_255:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1940 endif
1942 if HYBRID_AOT_TESTS
1943 TESTSAOT_UNHANDLED_EXCEPTION_1=$(TESTS_UNHANDLED_EXCEPTION_1:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1944 TESTSAOT_UNHANDLED_EXCEPTION_255=$(TESTS_UNHANDLED_EXCEPTION_255:.exe=.exe$(PLATFORM_AOT_SUFFIX))
1945 endif
1947 test-unhandled-exception-2: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_255)
1948         ok=; \
1949         $(MAKE) test-unhandled-exception-2-1-with-managed-handler || ok=false; \
1950         $(MAKE) test-unhandled-exception-2-1-without-managed-handler || ok=false; \
1951         $(MAKE) test-unhandled-exception-2-255-with-managed-handler || ok=false; \
1952         $(MAKE) test-unhandled-exception-2-255-without-managed-handler || ok=false; \
1953         $$ok
1955 test-unhandled-exception-2-1-with-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_1) test-runner.exe
1956         $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 1 $(TESTS_UNHANDLED_EXCEPTION_1)
1957 test-unhandled-exception-2-1-without-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_1) $(TESTSAOT_UNHANDLED_EXCEPTION_1) test-runner.exe
1958         TEST_UNHANDLED_EXCEPTION_HANDLER=1 $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 1 $(TESTS_UNHANDLED_EXCEPTION_1)
1959 test-unhandled-exception-2-255-with-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_255) test-runner.exe
1960         $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 255 $(TESTS_UNHANDLED_EXCEPTION_255)
1961 test-unhandled-exception-2-255-without-managed-handler: $(TESTS_UNHANDLED_EXCEPTION_255) $(TESTSAOT_UNHANDLED_EXCEPTION_255) test-runner.exe
1962         TEST_UNHANDLED_EXCEPTION_HANDLER=1 $(TOOLS_RUNTIME) $(TEST_RUNNER) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 255 $(TESTS_UNHANDLED_EXCEPTION_255)
1964 EXTRA_DIST += appdomain-loader.cs appdomain-tester.cs
1966 if FULL_AOT_TESTS
1967 test-appdomain-unload:
1968 else
1969 appdomain-loader.exe: appdomain-tester.exe
1971 test-appdomain-unload: appdomain-loader.exe appdomain-tester.exe
1972         $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.1.stdout || exit 1;
1973         $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.2.stdout || exit 1;
1974         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.3.stdout || exit 1;
1975         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.4.stdout || exit 1;
1976 endif
1978 EXTRA_DIST += console-output.cs console-output.exe.stderr.expected console-output.exe.stdout.expected
1979 test-console-output: console-output.exe
1980         @$(RUNTIME) console-output.exe 1>console-output.exe.stdout
1981         @$(RUNTIME) console-output.exe 2>console-output.exe.stderr
1982         @diff -w console-output.exe.stdout $(srcdir)/console-output.exe.stdout.expected \
1983                 && diff -w console-output.exe.stderr $(srcdir)/console-output.exe.stderr.expected
1985 test-pedump: test-runner.exe
1986         $(with_mono_path) $(mono_build_root)/tools/pedump/pedump --verify error test-runner.exe
1988 .PHONY: test-gac-loading test-eglib-remap
1990 runtest-gac-loading: test-runner.exe
1991         $(MAKE) -C testing_gac runtest
1993 compile-gac-loading:
1994         $(MAKE) -C testing_gac compile-tests
1996 TESTS_STRESS_PROCESS_SRC=       \
1997                 process-stress-1.cs     \
1998                 process-stress-2.cs     \
1999                 process-stress-3.cs     \
2000                 process-leak.cs
2002 TESTS_STRESS_PROCESS=$(filter-out $(DISABLED_TESTS),$(TESTS_STRESS_PROCESS_SRC:.cs=.exe))
2004 if FULL_AOT_TESTS
2005 TESTSAOT_STRESS_PROCESS=$(TESTS_STRESS_PROCESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2006 endif
2008 if HYBRID_AOT_TESTS
2009 TESTSAOT_STRESS_PROCESS=$(TESTS_STRESS_PROCESS:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2010 endif
2012 test-process-stress: $(TESTS_STRESS_PROCESS) $(TESTSAOT_STRESS_PROCESS) test-runner.exe
2013         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(TESTS_STRESS_PROCESS)
2015 coreclr-gcstress:
2016         $(MAKE) -C $(mono_build_root)/acceptance-tests coreclr-gcstress
2018 # Tests for the Mono lldb plugin
2019 EXTRA_DIST += test_lldb.py test-lldb.cs
2020 test-lldb: test-lldb.exe
2021         python test_lldb.py $(JITTEST_PROG)
2023 noinst_LTLIBRARIES = libtest.la
2025 AM_CPPFLAGS = $(GLIB_CFLAGS)
2027 if HOST_WIN32
2028 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
2029 # This shows up when compiling mono_test_marshal_delegate ()
2030 libtest_la_CFLAGS=-fno-optimize-sibling-calls
2031 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
2032 # can't find them. So we use --kill-at to remove the @ suffix as well.
2033 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
2034 else
2035 libtest_la_LDFLAGS = -rpath `pwd`
2036 endif
2037 libtest_la_SOURCES = libtest.c
2038 libtest_la_LIBADD = $(GLIB_LIBS) $(LIBICONV)
2040 INTERNALSVISIBLETO_TEST_SRC = \
2041         internalsvisibleto-runtimetest.cs \
2042         internalsvisibleto-compilertest.cs
2044 INTERNALSVISIBLETO_TEST_LIB_SRC = \
2045         internalsvisibleto-library.cs
2047 INTERNALSVISIBLETO_TEST_LIBS = \
2048         internalsvisibleto-correctcase.dll \
2049         internalsvisibleto-wrongcase.dll \
2050         internalsvisibleto-correctcase-2.dll \
2051         internalsvisibleto-wrongcase-2.dll \
2052         internalsvisibleto-correctcase-sign2048.dll \
2053         internalsvisibleto-wrongcase-sign2048.dll \
2054         internalsvisibleto-correctcase-2-sign2048.dll \
2055         internalsvisibleto-wrongcase-2-sign2048.dll
2058 INTERNALSVISIBLETO_TEST = \
2059         $(INTERNALSVISIBLETO_TEST_SRC:.cs=.exe) \
2060         $(INTERNALSVISIBLETO_TEST_SRC:.cs=-sign2048.exe)
2062 if FULL_AOT_TESTS
2063 INTERNALSVISIBLETO_TESTAOT = \
2064         $(INTERNALSVISIBLETO_TEST:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2065 INTERNALSVISIBLETO_TESTAOT_LIBS = \
2066         $(INTERNALSVISIBLETO_TEST_LIBS:.dll=.dll$(PLATFORM_AOT_SUFFIX))
2067 endif
2069 if HYBRID_AOT_TESTS
2070 INTERNALSVISIBLETO_TESTAOT = \
2071         $(INTERNALSVISIBLETO_TEST:.exe=.exe$(PLATFORM_AOT_SUFFIX))
2072 INTERNALSVISIBLETO_TESTAOT_LIBS = \
2073         $(INTERNALSVISIBLETO_TEST_LIBS:.dll=.dll$(PLATFORM_AOT_SUFFIX))
2074 endif
2076 EXTRA_DIST += $(INTERNALSVISIBLETO_TEST_SRC) $(INTERNALSVISIBLETO_TEST_LIB_SRC)
2078 test-internalsvisibleto: test-runner.exe $(INTERNALSVISIBLETO_TEST) $(INTERNALSVISIBLETO_TESTAOT) $(INTERNALSVISIBLETO_TESTAOT_LIBS)
2079         $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ $(INTERNALSVISIBLETO_TEST)
2081 internalsvisibleto-correctcase.dll internalsvisibleto-wrongcase.dll internalsvisibleto-runtimetest.exe: internalsvisibleto-runtimetest.cs internalsvisibleto-library.cs
2082         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase.dll -target:library -d:CORRECT_CASE -d:PERMISSIVE internalsvisibleto-library.cs       
2083         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase.dll -target:library -d:WRONG_CASE -d:PERMISSIVE internalsvisibleto-library.cs
2084         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-runtimetest.exe -warn:0 -r:internalsvisibleto-correctcase.dll -r:internalsvisibleto-wrongcase.dll internalsvisibleto-runtimetest.cs
2085         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase.dll -target:library -d:CORRECT_CASE internalsvisibleto-library.cs     
2086         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase.dll -target:library -d:WRONG_CASE internalsvisibleto-library.cs
2088 internalsvisibleto-correctcase-2.dll internalsvisibleto-wrongcase-2.dll  internalsvisibleto-compilertest.exe: internalsvisibleto-compilertest.cs internalsvisibleto-library.cs
2089         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-2.dll -target:library -d:CORRECT_CASE internalsvisibleto-library.cs   
2090         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-2.dll -target:library -d:WRONG_CASE internalsvisibleto-library.cs
2091         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-compilertest.exe -warn:0 -r:internalsvisibleto-correctcase-2.dll -r:internalsvisibleto-wrongcase-2.dll internalsvisibleto-compilertest.cs
2093 internalsvisibleto-correctcase-sign2048.dll internalsvisibleto-wrongcase-sign2048.dll internalsvisibleto-runtimetest-sign2048.exe: internalsvisibleto-runtimetest.cs internalsvisibleto-library.cs internalsvisibleto-2048.snk
2094         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-sign2048.dll -target:library -d:CORRECT_CASE -d:PERMISSIVE -d:SIGN2048 internalsvisibleto-library.cs
2095         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-sign2048.dll -target:library -d:WRONG_CASE -d:PERMISSIVE -d:SIGN2048 internalsvisibleto-library.cs
2096         $(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
2097         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-sign2048.dll -target:library -d:CORRECT_CASE -d:SIGN2048 internalsvisibleto-library.cs
2098         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-sign2048.dll -target:library -d:WRONG_CASE -d:SIGN2048 internalsvisibleto-library.cs
2100 internalsvisibleto-correctcase-2-sign2048.dll internalsvisibleto-wrongcase-2-sign2048.dll internalsvisibleto-compilertest-sign2048.exe: internalsvisibleto-compilertest.cs internalsvisibleto-library.cs internalsvisibleto-2048.snk
2101         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-correctcase-2-sign2048.dll -target:library -d:CORRECT_CASE -d:SIGN2048 internalsvisibleto-library.cs      
2102         $(Q) $(MCS_NO_UNSAFE) -out:internalsvisibleto-wrongcase-2-sign2048.dll -target:library -d:WRONG_CASE -d:SIGN2048 internalsvisibleto-library.cs
2103         $(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
2105 EXTRA_DIST += weakattribute.cs
2107 # Contains copies of types which don't exist in the desktop profile so tests can use them
2108 Mono.Runtime.Testing.dll: weakattribute.cs
2109         $(MCS) -target:library -out:$@ $<
2111 weak-fields.exe: weak-fields.cs Mono.Runtime.Testing.dll
2112         $(MCS) -r:Mono.Runtime.Testing.dll -r:$(CLASS)/System.dll -r:$(CLASS)/System.Xml.dll -r:$(CLASS)/System.Core.dll -r:TestDriver.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $<
2114 CLEANFILES = $(TESTS_CS) $(TESTS_IL) $(TESTS_BENCH) $(TESTS_STRESS) $(TESTSAOT_CS) $(TESTSAOT_IL) $(TESTSAOT_BENCH) $(TESTSAOT_STRESS) *.dll *.stdout *.aotlog *.exe stest.dat LeafAssembly.dll MidAssembly.dll appdomain-marshalbyref-assemblyload2/*.dll