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