[interp] allow more gregs, enable pinvoke17.exe
[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-10127.exe \
938         bug-18026.exe \
939         bug-27147.exe \
940         bug-2907.exe \
941         bug-323114.exe \
942         bug-327438.2.exe \
943         bug-335131.2.exe \
944         bug-349190.2.exe \
945         bug-415577.exe \
946         bug-461867.exe \
947         bug-461941.exe \
948         bug-46661.exe \
949         bug-47295.exe \
950         bug-48015.exe \
951         bug-508538.exe \
952         bug-544446.exe \
953         bug-685908.exe \
954         bug-70561.exe \
955         bug-80307.exe \
956         bug-80392.2.exe \
957         bug-81673.exe \
958         bug-81691.exe \
959         bug-82022.exe \
960         bug445361.exe \
961         bug469742.2.exe \
962         call_missing_class.exe \
963         call_missing_method.exe \
964         calliGenericTest.exe \
965         cattr-field.exe \
966         classinit3.exe \
967         cominterop.exe \
968         constant-division.exe \
969         context-static.exe \
970         cross-domain.exe \
971         delegate-async-exit.exe \
972         delegate-delegate-exit.exe \
973         delegate-exit.exe \
974         delegate-with-null-target.exe \
975         delegate1.exe \
976         delegate3.exe \
977         delegate5.exe \
978         delegate7.exe \
979         delegate8.exe \
980         delegate9.exe \
981         dynamic-method-access.2.exe \
982         dynamic-method-finalize.2.exe \
983         dynamic-method-resurrection.exe \
984         dynamic-method-stack-traces.exe \
985         even-odd.exe \
986         exception18.exe \
987         field-access.exe \
988         finally_block_ending_in_dead_bb.exe \
989         gc-altstack.exe \
990         gchandles.exe \
991         generic-marshalbyref.2.exe \
992         generic-mkrefany.2.exe \
993         generic-refanyval.2.exe \
994         generic-stack-traces2.2.exe \
995         generic-type-load-exception.2.exe \
996         generic-unloading.2.exe \
997         generics-invoke-byref.2.exe \
998         generics-sharing.2.exe \
999         handleref.exe \
1000         invalid-token.exe \
1001         invalid_generic_instantiation.exe \
1002         invoke-string-ctors.exe \
1003         ldfld_missing_class.exe \
1004         ldfld_missing_field.exe \
1005         ldftn-access.exe \
1006         marshal-valuetypes.exe \
1007         marshal.exe \
1008         marshal2.exe \
1009         marshal8.exe \
1010         marshal9.exe \
1011         marshalbool.exe \
1012         main-returns-background-change.exe \
1013         method-access.exe \
1014         modules.exe \
1015         monitor-abort.exe \
1016         monitor-wait-abort.exe \
1017         monitor.exe \
1018         namedmutex-destroy-race.exe \
1019         nullable_boxing.2.exe \
1020         pinvoke-2.2.exe \
1021         pinvoke-utf8.exe \
1022         pinvoke.exe \
1023         pinvoke11.exe \
1024         pinvoke2.exe \
1025         pinvoke3.exe \
1026         pinvoke_ppcc.exe \
1027         pinvoke_ppcd.exe \
1028         pinvoke_ppcf.exe \
1029         pinvoke_ppci.exe \
1030         pinvoke_ppcs.exe \
1031         priority.exe \
1032         process-unref-race.exe \
1033         reference-loader.exe \
1034         reload-at-bb-end.exe \
1035         remoting1.exe \
1036         remoting2.exe \
1037         remoting3.exe \
1038         remoting4.exe \
1039         remoting5.exe \
1040         runtime-invoke.gen.exe \
1041         safehandle.2.exe \
1042         shared-generic-synchronized.2.exe \
1043         stackframes-async.2.exe \
1044         static-constructor.exe \
1045         test-inline-call-stack.exe \
1046         test-tls.exe \
1047         test-type-ctor.exe \
1048         thread-exit.exe \
1049         thread6.exe \
1050         threadpool-exceptions1.exe \
1051         threadpool-exceptions2.exe \
1052         threadpool-exceptions3.exe \
1053         threadpool-exceptions4.exe \
1054         threadpool-exceptions5.exe \
1055         threadpool-exceptions6.exe \
1056         threadpool-exceptions7.exe \
1057         threadpool.exe \
1058         threadpool1.exe \
1059         thunks.exe \
1060         transparentproxy.exe \
1061         typeload-unaligned.exe \
1062         unload-appdomain-on-shutdown.exe \
1063         vararg.exe \
1064         vararg.exe \
1065         vararg2.exe \
1066         vt-sync-method.exe \
1067         winx64structs.exe \
1068         xdomain-threads.exe
1069
1070 # pre-requisite test sources: files that are not test themselves
1071 # but that need to be compiled
1072 PREREQ_IL_SRC=event-il.il module-cctor.il
1073 PREREQ_CS_SRC=
1074 PREREQ_IL_DLL_SRC=
1075 PREREQ_CS_DLL_SRC=
1076
1077 PREREQSI_IL=$(PREREQ_IL_SRC:.il=.exe) \
1078         $(PREREQ_IL_DLL_SRC:.il=.dll)
1079 PREREQSI_CS=$(PREREQ_CS_SRC:.cs=.exe) \
1080         $(PREREQ_CS_DLL_SRC:.cs=.dll)
1081 TESTSI_CS=$(filter-out $(DISABLED_TESTS),$(TEST_CS_SRC:.cs=.exe))
1082 TESTSI_IL=$(filter-out $(DISABLED_TESTS),$(TEST_IL_SRC:.il=.exe))
1083 TESTBS=$(filter-out $(DISABLED_TESTS),$(BENCHSRC:.cs=.exe))
1084 STRESS_TESTS=$(filter-out $(DISABLED_TESTS),$(STRESS_TESTS_SRC:.cs=.exe))
1085
1086 PREREQSI_IL_AOT=$(PREREQ_IL_SRC:.il=.exe$(PLATFORM_AOT_SUFFIX)) \
1087                 $(PREREQ_IL_DLL_SRC:.il=.dll$(PLATFORM_AOT_SUFFIX))
1088 PREREQSI_CS_AOT=$(PREREQ_CS_SRC:.cs=.exe$(PLATFORM_AOT_SUFFIX)) \
1089                 $(PREREQ_CS_DLL_SRC:.cs=.dll$(PLATFORM_AOT_SUFFIX))
1090
1091 EXTRA_DIST=test-driver test-runner.cs $(TEST_CS_SRC_DIST) $(TEST_IL_SRC) \
1092         $(BENCHSRC) $(STRESS_TESTS_SRC) stress-runner.pl $(PREREQ_IL_SRC) $(PREREQ_CS_SRC)
1093
1094 %.exe: %.il
1095         $(ILASM) -out:$@ $<
1096
1097 if !FULL_AOT_TESTS
1098 TEST_DRIVER_HARD_KILL_FEATURE=-r:$(CLASS)/Mono.Posix.dll
1099 endif
1100
1101 if FULL_AOT_TESTS
1102 TEST_DRIVER_DEPEND=TestDriver.dll$(PLATFORM_AOT_SUFFIX)
1103 else
1104 if HYBRID_AOT_TESTS
1105 TEST_DRIVER_DEPEND=TestDriver.dll$(PLATFORM_AOT_SUFFIX)
1106 else
1107 TEST_DRIVER_DEPEND=TestDriver.dll
1108 endif
1109 endif
1110
1111 %.exe: %.cs $(TEST_DRIVER_DEPEND)
1112         $(MCS) -r:$(CLASS)/System.dll -r:$(CLASS)/System.Xml.dll -r:$(CLASS)/System.Core.dll -r:TestDriver.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $<
1113
1114 # N.B. test-runner.exe references the TOOLS_RUNTIME versions of the framework assemblies
1115 test-runner.exe: test-runner.cs $(TEST_DRIVER_DEPEND)
1116         $(MCS) -r:System.dll -r:System.Xml.dll -r:System.Core.dll -r:TestDriver.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $<
1117
1118 %.dll: %.cs
1119         $(MCS) -r:$(CLASS)/System.dll -target:library -out:$@ $<
1120
1121 reference-loader.exe: reference-loader.cs TestingReferenceAssembly.dll TestingReferenceReferenceAssembly.dll $(TEST_DRIVER_DEPEND)
1122         $(MCS) -r:$(CLASS)/System.dll -r:TestDriver.dll -r:TestingReferenceAssembly.dll -r:TestingReferenceReferenceAssembly.dll $(TEST_DRIVER_HARD_KILL_FEATURE) -out:$@ $(srcdir)/reference-loader.cs
1123
1124 TestingReferenceAssembly.dll: TestingReferenceAssembly.cs
1125         $(MCS) -target:library -out:$@ $<
1126
1127 TestingReferenceReferenceAssembly.dll: TestingReferenceReferenceAssembly.cs TestingReferenceAssembly.dll
1128         $(MCS) -r:TestingReferenceAssembly.dll -target:library -out:$@ $<
1129
1130 %.exe$(PLATFORM_AOT_SUFFIX): %.exe 
1131         $(RUNTIME) $(AOT_BUILD_FLAGS) $<
1132
1133 %.dll$(PLATFORM_AOT_SUFFIX): %.dll 
1134         $(RUNTIME) $(AOT_BUILD_FLAGS) $<
1135
1136 # mkbundle works on ppc, but the pkg-config POC doesn't when run with make test
1137 if POWERPC
1138 test_platform:
1139 else
1140 # Can't use mkbundle on win32 since there is no static build there
1141 # Can't run test-unhandled-exception on Windows because of all the debug popups...
1142 if HOST_WIN32
1143 test_platform:
1144 else
1145 # mkbundle uses the installed mono-2.pc so it won't work if there is no system mono
1146 #test_platform: testbundle test-iomap-regression
1147 test_platform:  test-iomap-regression
1148 endif
1149 endif
1150
1151 if X86
1152 if HOST_WIN32
1153 else
1154 test_platform: test-eglib-remap
1155 endif
1156 endif
1157
1158 AOT_EXTRA_LIBS =        \
1159 bug-382986-lib.dll$(PLATFORM_AOT_SUFFIX)        \
1160 bug-324535-il.dll$(PLATFORM_AOT_SUFFIX) \
1161 bug-36848-a.dll$(PLATFORM_AOT_SUFFIX)   \
1162 bug-81691-b.dll$(PLATFORM_AOT_SUFFIX)   \
1163 bug-327438.2.exe$(PLATFORM_AOT_SUFFIX)  \
1164 bug-81466-lib.dll$(PLATFORM_AOT_SUFFIX)
1165
1166 if FULL_AOT_TESTS
1167 prereqs: $(PREREQSI_IL_AOT) $(PREREQSI_CS_AOT) $(AOT_EXTRA_LIBS)
1168 else
1169 if HYBRID_AOT_TESTS
1170 prereqs: $(PREREQSI_IL_AOT) $(PREREQSI_CS_AOT) $(AOT_EXTRA_LIBS)
1171 else
1172 prereqs: $(PREREQSI_IL) $(PREREQSI_CS)
1173 endif
1174 endif
1175
1176 # Target to precompile the test executables
1177 tests: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la prereqs $(GSHARED_TESTS)
1178
1179 #
1180 # Test that no symbols are missed in eglib-remap.h
1181 #
1182 OK_G_SYMBOLS='g_list\|g_slist\|g_concat_dir_and_file\|g_Ctoc\'
1183 if NACL_CODEGEN
1184 test-eglib-remap:
1185 else
1186 test-eglib-remap:
1187         @echo "Testing eglib remap..."
1188         @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
1189 endif
1190
1191 test-env-options:
1192         MONO_ENV_OPTIONS="--version" $(RUNTIME) array-init.exe | grep -q Architecture:
1193
1194 test-sgen : sgen-tests
1195
1196 # Precompile the test assemblies in parallel
1197 compile-tests:
1198         $(MAKE) -j4 $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS) compile-gac-loading
1199 if FULL_AOT_TESTS
1200         $(MAKE) $(PREREQSI_IL_AOT) $(PREREQSI_CS_AOT) $(AOT_EXTRA_LIBS)
1201 endif
1202 if HYBRID_AOT_TESTS
1203         $(MAKE) $(PREREQSI_IL_AOT) $(PREREQSI_CS_AOT) $(AOT_EXTRA_LIBS)
1204 endif
1205
1206 # Remove empty .stdout and .stderr files for wrench
1207 rm-empty-logs:
1208         @echo "Removing empty logs..."
1209         find . '(' -name "*.stdout" -o -name "*.stderr" ')' -size 0 -exec rm {} \;
1210
1211 assemblyresolve/test/asm.dll:
1212         $(MAKE) -C assemblyresolve prereq
1213
1214 TestDriver.dll:
1215         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs $(srcdir)/../mini/TestHelpers.cs
1216
1217 runtest: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
1218         @failed=0; \
1219         passed=0; \
1220         failed_tests="";\
1221         if [ "x$$V" = "x1" ]; then dump_action="dump-output"; else dump_action="no-dump"; fi; \
1222         rm -f testlist testlist.sorted; \
1223         for i in $(TESTSI_CS) $(TESTBS) $(TESTSI_IL); do echo $${i} >> testlist; sort testlist > testlist.sorted; done; \
1224         for i in `cat testlist.sorted`; do \
1225                 rm -f $${i}.so; \
1226                 $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > $${i}.aotlog 2>&1 || exit 1; \
1227                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" "$${dump_action}" $(RUNTIME_ARGS); \
1228                 then \
1229                         passed=`expr $${passed} + 1`; \
1230                 else \
1231                         if [ $$? = 2 ]; then break; fi; \
1232                         failed=`expr $${failed} + 1`; \
1233                         failed_tests="$${failed_tests} $$i"; \
1234                 fi \
1235         done; \
1236         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1237         rm -f testlist testlist.sorted; \
1238         if [ $${failed} != 0 ]; then \
1239           echo -e "\nFailed tests:\n"; \
1240           for i in $${failed_tests}; do \
1241             echo $${i}; \
1242             if [ "x$$V" = "x1" ]; then \
1243               cat $${i}.stdout; \
1244               cat $${i}.stderr; \
1245             fi; \
1246           done; \
1247           exit 1; \
1248         fi
1249
1250 runtest-managed: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
1251         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) $(TEST_RUNNER_ARGS) -j a --testsuite-name "runtime" --timeout 300 --disabled "$(DISABLED_TESTS)" $(TESTSI_CS) $(TESTBS) $(TESTSI_IL)
1252
1253 runtest-managed-serial: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
1254         $(TOOLS_RUNTIME) --debug $(TEST_RUNNER) $(TEST_RUNNER_ARGS) -j 1 --testsuite-name "runtime" --disabled "$(DISABLED_TESTS)" $(TESTSI_CS) $(TESTBS) $(TESTSI_IL)
1255
1256 testjit:
1257         @if test x$(M) != x0; then $(MAKE) runtest-managed; else $(MAKE) runtest; fi
1258
1259 testaot:
1260         @$(MAKE) AOT=1 runtest
1261
1262 testtrace:
1263         @$(MAKE) RUNTIME_ARGS="$${RUNTIME_ARGS} --trace" runtest
1264
1265 testinterp: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
1266         $(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)
1267
1268 testjitspeed: $(JITTEST_PROG) $(TESTBS)
1269         for i in $(TESTBS); do  \
1270                 echo $$i;       \
1271                 time $(JITTEST_PROG) $$i;       \
1272         done
1273
1274 test-iomap-regression: exists.cs
1275         @$(MCS) $(srcdir)/exists.cs -out:exists.exe
1276         @echo "Testing exists.exe..."
1277         @MONO_IOMAP=all $(RUNTIME) exists.exe
1278
1279 stresstest: $(STRESS_TESTS)
1280         @failed=0; \
1281         passed=0; \
1282         failed_tests="";\
1283         for i in $(STRESS_TESTS); do    \
1284                 if $(srcdir)/stress-runner.pl $$i ../mini/mono $(RUNTIME_ARGS); \
1285                 then \
1286                         passed=`expr $${passed} + 1`; \
1287                 else \
1288                         if [ $$? = 2 ]; then break; fi; \
1289                         failed=`expr $${failed} + 1`; \
1290                         failed_tests="$${failed_tests} $$i"; \
1291                 fi \
1292         done; \
1293         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1294         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
1295           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
1296
1297 testbundle: console.exe
1298         @echo "Testing mkbundle..."
1299         @$(MKBUNDLE) --static console.exe > mkbundle.stdout
1300         @$(with_mono_path) MONO_CFG_DIR=$(mono_cfg_dir) ./a.out >> mkbundle.stdout
1301         @- rm -rf a.out
1302
1303 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
1304 test-type-load: $(TEST_DRIVER_DEPEND)
1305 if !POWERPC64
1306         @$(ILASM) /dll /output:load-missing.dll $(srcdir)/load-missing.il > /dev/null
1307         @$(MCS) -t:library -out:t.dll -d:FOUND $(srcdir)/t-missing.cs
1308         @$(MCS) -r:TestDriver.dll -r:load-missing.dll -r:t.dll -out:load-exceptions.exe $(srcdir)/load-exceptions.cs
1309         @$(MCS) -t:library -out:t.dll $(srcdir)/t-missing.cs
1310         @echo "Testing load-exception.exe..."
1311         @$(RUNTIME) load-exceptions.exe > load-exceptions.exe.stdout 2> load-exceptions.exe.stderr
1312 endif
1313
1314 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
1315 test-multi-netmodule:
1316         @$(MCS) -t:module test-multi-netmodule-1-netmodule.cs
1317         @$(MCS) -addmodule:test-multi-netmodule-1-netmodule.netmodule -t:library test-multi-netmodule-2-dll1.cs
1318         @$(MCS) -addmodule:test-multi-netmodule-1-netmodule.netmodule -t:library test-multi-netmodule-3-dll2.cs
1319         @$(MCS) -r:test-multi-netmodule-2-dll1.dll test-multi-netmodule-4-exe.cs
1320         $(RUNTIME) test-multi-netmodule-4-exe.exe > test-multi-netmodule-4-exe.exe.stdout 2> test-multi-netmodule-4-exe.exe.stderr
1321
1322 EXTRA_DIST += custom-attr-errors.cs custom-attr-errors-lib.cs
1323 test-cattr-type-load: $(TEST_DRIVER_DEPEND) custom-attr-errors.cs custom-attr-errors-lib.cs
1324         $(MCS) -D:WITH_MEMBERS /t:library $(srcdir)/custom-attr-errors-lib.cs
1325         $(MCS) -r:TestDriver.dll -r:custom-attr-errors-lib.dll  $(srcdir)/custom-attr-errors.cs
1326         $(MCS) /t:library $(srcdir)/custom-attr-errors-lib.cs
1327         @echo "Testing custom-attribute-load-exceptions.exe..."
1328         @$(RUNTIME) custom-attr-errors.exe > custom-attr-errors.exe.stdout 2> custom-attr-errors.exe.stderr
1329
1330 EXTRA_DIST += reflection-load-with-context-lib.cs reflection-load-with-context-second-lib.cs reflection-load-with-context.cs
1331 test-reflection-load-with-context: reflection-load-with-context-lib.cs reflection-load-with-context-second-lib.cs reflection-load-with-context.exe
1332         rm -rf reflection-load-dir
1333         mkdir reflection-load-dir
1334         $(MCS) /t:library $(srcdir)/reflection-load-with-context-second-lib.cs -out:reflection-load-dir/reflection-load-with-context-second-lib.dll
1335         $(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
1336         @echo "Testing reflection-load-with-context.cs.exe..."
1337         @$(RUNTIME) reflection-load-with-context.exe > reflection-load-with-context.exe.stdout 2> reflection-load-with-context.exe.stderr
1338
1339
1340 EXTRA_DIST += debug-casts.cs
1341 # This depends on TLS, so its not ran by default
1342 debug-casts:
1343         @$(MCS) -r:TestDriver.dll $(srcdir)/debug-casts.cs
1344         @$(RUNTIME) --debug=casts debug-casts.exe
1345
1346 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
1347
1348
1349 sgen-tests:
1350         $(MAKE) sgen-regular-tests
1351 if !S390X
1352         $(MAKE) sgen-toggleref-tests
1353         $(MAKE) sgen-bridge-tests
1354         $(MAKE) sgen-bridge2-tests
1355 endif
1356
1357 SGEN_REGULAR_TESTS_SRC =        \
1358         finalizer-wait.cs       \
1359         critical-finalizers.cs  \
1360         sgen-descriptors.cs     \
1361         sgen-gshared-vtype.cs   \
1362         sgen-weakref-stress.cs  \
1363         sgen-cementing-stress.cs        \
1364         sgen-case-23400.cs      \
1365         sgen-new-threads-dont-join-stw.cs       \
1366         sgen-new-threads-dont-join-stw-2.cs     \
1367         sgen-new-threads-collect.cs     \
1368         gc-graystack-stress.cs  \
1369         bug-17590.cs    \
1370         sgen-domain-unload.cs   \
1371         sgen-domain-unload-2.cs
1372
1373 SGEN_REGULAR_DISABLED_TESTS=
1374
1375 if FULL_AOT_TESTS
1376 SGEN_REGULAR_DISABLED_TESTS += \
1377         sgen-domain-unload.exe  \
1378         sgen-domain-unload-2.exe
1379 endif
1380
1381 SGEN_REGULAR_TESTS=$(filter-out $(SGEN_REGULAR_DISABLED_TESTS),$(SGEN_REGULAR_TESTS_SRC:.cs=.exe))
1382
1383 sgen-regular-tests: $(SGEN_REGULAR_TESTS)
1384         $(MAKE) sgen-regular-tests-ms
1385         $(MAKE) sgen-regular-tests-ms-conc
1386         $(MAKE) sgen-regular-tests-ms-conc-par
1387         $(MAKE) sgen-regular-tests-ms-conc-split
1388         $(MAKE) sgen-regular-tests-ms-split
1389         $(MAKE) sgen-regular-tests-ms-conc-split-95
1390         $(MAKE) sgen-regular-tests-ms-clear-at-gc
1391         $(MAKE) sgen-regular-tests-ms-conc-clear-at-gc
1392         $(MAKE) sgen-regular-tests-ms-conc-split-clear-at-gc
1393
1394 sgen-regular-tests-ms: $(SGEN_REGULAR_TESTS) test-runner.exe
1395         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1396 sgen-regular-tests-ms-conc: $(SGEN_REGULAR_TESTS) test-runner.exe
1397         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1398 sgen-regular-tests-ms-conc-par: $(SGEN_REGULAR_TESTS) test-runner.exe
1399         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep-conc-par" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1400 sgen-regular-tests-ms-conc-split: $(SGEN_REGULAR_TESTS) test-runner.exe
1401         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep-conc,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1402 sgen-regular-tests-ms-split: $(SGEN_REGULAR_TESTS) test-runner.exe
1403         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1404 sgen-regular-tests-ms-conc-split-95: $(SGEN_REGULAR_TESTS) test-runner.exe
1405         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="major=marksweep-conc,minor=split,alloc-ratio=95" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1406 sgen-regular-tests-ms-clear-at-gc: $(SGEN_REGULAR_TESTS) test-runner.exe
1407         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="major=marksweep" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1408 sgen-regular-tests-ms-conc-clear-at-gc: $(SGEN_REGULAR_TESTS) test-runner.exe
1409         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1410 sgen-regular-tests-ms-conc-split-clear-at-gc: $(SGEN_REGULAR_TESTS) test-runner.exe
1411         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="major=marksweep-conc,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_REGULAR_TESTS)
1412
1413 SGEN_TOGGLEREF_TESTS=   \
1414         sgen-toggleref.exe
1415
1416 sgen-toggleref-tests: $(SGEN_TOGGLEREF_TESTS)
1417         $(MAKE) sgen-toggleref-tests-plain
1418         $(MAKE) sgen-toggleref-tests-ms-conc
1419         $(MAKE) sgen-toggleref-tests-ms-conc-split
1420         $(MAKE) sgen-toggleref-tests-ms-split
1421         $(MAKE) sgen-toggleref-tests-ms-split-95
1422         $(MAKE) sgen-toggleref-tests-plain-clear-at-gc
1423         $(MAKE) sgen-toggleref-tests-ms-conc-clear-at-gc
1424         $(MAKE) sgen-toggleref-tests-ms-split-clear-at-gc
1425
1426 sgen-toggleref-tests-plain: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1427         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="toggleref-test" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1428 sgen-toggleref-tests-ms-conc: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1429         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="toggleref-test,major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1430 sgen-toggleref-tests-ms-conc-split: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1431         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="toggleref-test,major=marksweep-conc,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1432 sgen-toggleref-tests-ms-split: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1433         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="toggleref-test,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1434 sgen-toggleref-tests-ms-split-95: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1435         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="" MONO_GC_PARAMS="toggleref-test,minor=split,alloc-ratio=95" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1436 sgen-toggleref-tests-plain-clear-at-gc: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1437         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="toggleref-test" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1438 sgen-toggleref-tests-ms-conc-clear-at-gc: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1439         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="toggleref-test,major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1440 sgen-toggleref-tests-ms-split-clear-at-gc: $(SGEN_TOGGLEREF_TESTS) test-runner.exe
1441         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="clear-at-gc" MONO_GC_PARAMS="toggleref-test,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_TOGGLEREF_TESTS)
1442
1443 SGEN_BRIDGE_TESTS=      \
1444         sgen-bridge.exe \
1445         sgen-bridge-major-fragmentation.exe
1446
1447 sgen-bridge-tests: $(SGEN_BRIDGE_TESTS)
1448         $(MAKE) sgen-bridge-tests-plain
1449         $(MAKE) sgen-bridge-tests-ms-conc
1450         $(MAKE) sgen-bridge-tests-ms-split
1451         $(MAKE) sgen-bridge-tests-plain-new-bridge
1452         $(MAKE) sgen-bridge-tests-ms-conc-new-bridge
1453         $(MAKE) sgen-bridge-tests-ms-split-new-bridge
1454         $(MAKE) sgen-bridge-tests-plain-tarjan-bridge
1455         $(MAKE) sgen-bridge-tests-ms-split-tarjan-bridge
1456
1457 sgen-bridge-tests-plain: $(SGEN_BRIDGE_TESTS) test-runner.exe
1458         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1459 sgen-bridge-tests-ms-conc: $(SGEN_BRIDGE_TESTS) test-runner.exe
1460         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1461 sgen-bridge-tests-ms-split: $(SGEN_BRIDGE_TESTS) test-runner.exe
1462         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1463 sgen-bridge-tests-plain-new-bridge: $(SGEN_BRIDGE_TESTS) test-runner.exe
1464         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="bridge-implementation=new" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1465 sgen-bridge-tests-ms-conc-new-bridge: $(SGEN_BRIDGE_TESTS) test-runner.exe
1466         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="bridge-implementation=new,major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1467 sgen-bridge-tests-ms-split-new-bridge: $(SGEN_BRIDGE_TESTS) test-runner.exe
1468         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="bridge-implementation=new,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1469 sgen-bridge-tests-plain-tarjan-bridge: $(SGEN_BRIDGE_TESTS) test-runner.exe
1470         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1471 sgen-bridge-tests-ms-split-tarjan-bridge: $(SGEN_BRIDGE_TESTS) test-runner.exe
1472         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE_TESTS)
1473
1474 SGEN_BRIDGE2_TESTS=     \
1475         sgen-bridge-xref.exe
1476
1477 sgen-bridge2-tests: $(SGEN_BRIDGE2_TESTS)
1478         $(MAKE) sgen-bridge2-tests-plain
1479         $(MAKE) sgen-bridge2-tests-ms-conc
1480         $(MAKE) sgen-bridge2-tests-ms-split
1481         $(MAKE) sgen-bridge2-tests-plain-new-bridge
1482         $(MAKE) sgen-bridge2-tests-ms-conc-new-bridge
1483         $(MAKE) sgen-bridge2-tests-ms-split-new-bridge
1484         $(MAKE) sgen-bridge2-tests-plain-tarjan-bridge
1485         $(MAKE) sgen-bridge2-tests-ms-split-tarjan-bridge
1486
1487 sgen-bridge2-tests-plain: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1488         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1489 sgen-bridge2-tests-ms-conc: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1490         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1491 sgen-bridge2-tests-ms-split: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1492         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1493 sgen-bridge2-tests-plain-new-bridge: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1494         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="bridge-implementation=new" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1495 sgen-bridge2-tests-ms-conc-new-bridge: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1496         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="bridge-implementation=new,major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1497 sgen-bridge2-tests-ms-split-new-bridge: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1498         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="bridge-implementation=new,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1499 sgen-bridge2-tests-plain-tarjan-bridge: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1500         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1501 sgen-bridge2-tests-ms-split-tarjan-bridge: $(SGEN_BRIDGE2_TESTS) test-runner.exe
1502         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=2Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 900 $(SGEN_BRIDGE2_TESTS)
1503
1504 SGEN_BRIDGE3_TESTS=     \
1505         sgen-bridge-gchandle.exe
1506
1507 sgen-bridge3-tests: $(SGEN_BRIDGE3_TESTS)
1508         $(MAKE) sgen-bridge3-tests-plain
1509         $(MAKE) sgen-bridge3-tests-ms-conc
1510         $(MAKE) sgen-bridge3-tests-ms-split
1511         $(MAKE) sgen-bridge3-tests-plain-new-bridge
1512         $(MAKE) sgen-bridge3-tests-ms-conc-new-bridge
1513         $(MAKE) sgen-bridge3-tests-ms-split-new-bridge
1514         $(MAKE) sgen-bridge3-tests-plain-tarjan-bridge
1515         $(MAKE) sgen-bridge3-tests-ms-split-tarjan-bridge
1516
1517 sgen-bridge3-tests-plain: $(SGEN_bridge3_TESTS) test-runner.exe
1518         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1519 sgen-bridge3-tests-ms-conc: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1520         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1521 sgen-bridge3-tests-ms-split: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1522         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1523 sgen-bridge3-tests-plain-new-bridge: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1524         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="bridge-implementation=new" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1525 sgen-bridge3-tests-ms-conc-new-bridge: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1526         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="bridge-implementation=new,major=marksweep-conc" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1527 sgen-bridge3-tests-ms-split-new-bridge: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1528         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="bridge-implementation=new,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1529 sgen-bridge3-tests-plain-tarjan-bridge: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1530         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1531 sgen-bridge3-tests-ms-split-tarjan-bridge: $(SGEN_BRIDGE3_TESTS) test-runner.exe
1532         MONO_ENV_OPTIONS="--gc=sgen" MONO_GC_DEBUG="bridge=3Bridge" MONO_GC_PARAMS="bridge-implementation=tarjan,minor=split" $(TOOLS_RUNTIME) $(TEST_RUNNER) --testsuite-name $@ --timeout 900 $(SGEN_BRIDGE3_TESTS)
1533
1534
1535 AOT_CONFIGURATIONS=     \
1536         "|regular"      \
1537         "--gc=boehm|boehm"
1538
1539 #LLVM crashes, got to fix it first.
1540 #       "--llvm|llvm"   \
1541 #       "--llvm --gc=boehm|llvm+boehm"
1542
1543
1544 test-aot:
1545         @failed=0; \
1546         passed=0; \
1547         failed_tests="";\
1548         profile=$(DEFAULT_PROFILE);     \
1549         tmpfile=`mktemp -t mono_aot_outputXXXXXX` || exit 1;    \
1550         rm -f test-aot-$${name}.stdout test-aot-$${name}.stderr; \
1551         for assembly in $(mcs_topdir)/class/lib/$$profile/*.dll ; do    \
1552                 asm_name=`basename $$assembly`; \
1553                 echo "... $$asm_name";  \
1554                 for conf in $(AOT_CONFIGURATIONS); do   \
1555                         name=`echo $$conf | cut -d\| -f 2`;     \
1556                         params=`echo $$conf | cut -d\| -f 1`;   \
1557                         test_name="$${asm_name}|$${name}";      \
1558                         echo "  $$test_name";   \
1559                         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;        \
1560                         then \
1561                                 passed=`expr $${passed} + 1`; \
1562                         else \
1563                                 failed=`expr $${failed} + 1`; \
1564                                 failed_tests="$${failed_tests} $$test_name"; \
1565                         fi \
1566                 done;   \
1567         done;   \
1568         rm      $$tmpfile;      \
1569         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
1570         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
1571         for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
1572
1573
1574 # Generated tests for runtime invoke
1575 EXTRA_DIST += gen-runtime-invoke.cs
1576 runtime-invoke.gen.exe: $(TEST_DRIVER_DEPEND) gen-runtime-invoke.exe
1577         $(RUNTIME) gen-runtime-invoke.exe > runtime-invoke.gen.cs
1578         $(MCS) -out:runtime-invoke.gen.exe -r:TestDriver.dll runtime-invoke.gen.cs
1579
1580 EXTRA_DIST += make-imt-test.cs
1581 imt_big_iface_test.exe: $(TEST_DRIVER_DEPEND) make-imt-test.exe
1582         $(RUNTIME) make-imt-test.exe > imt_big_iface_test.cs
1583         $(MCS) -out:imt_big_iface_test.exe -r:TestDriver.dll imt_big_iface_test.cs
1584
1585 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
1586 test-inline-call-stack-library.dll: $(TEST_DRIVER_DEPEND) $(srcdir)/test-inline-call-stack-library.cs
1587         $(MCS) -t:library -out:test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack-library.cs
1588 if FULL_AOT_TESTS
1589         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1590 endif
1591 if HYBRID_AOT_TESTS
1592         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1593 endif
1594
1595 test-inline-call-stack.exe: $(TEST_DRIVER_DEPEND) test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack.cs
1596         $(MCS) -r:TestDriver.dll -r:test-inline-call-stack-library.dll -out:test-inline-call-stack.exe $(srcdir)/test-inline-call-stack.cs
1597
1598 EXTRA_DIST += unhandled-exception-base-configuration.config
1599 EXTRA_DIST += unhandled-exception-legacy-configuration.config
1600 EXTRA_DIST += appdomain-unload.exe.config
1601 EXTRA_DIST += unhandled-exception-test-case.2.cs
1602 EXTRA_DIST += unhandled-exception-test-runner.2.cs
1603 unhandled-exception-test-case.1.cs: unhandled-exception-test-case.2.cs
1604         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case.1.cs
1605 unhandled-exception-test-case-legacy.1.cs: unhandled-exception-test-case.1.cs
1606         cp unhandled-exception-test-case.1.cs unhandled-exception-test-case-legacy.1.cs
1607 unhandled-exception-test-case-legacy.2.cs: unhandled-exception-test-case.2.cs
1608         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case-legacy.2.cs
1609 unhandled-exception-config_files: unhandled-exception-base-configuration.config unhandled-exception-legacy-configuration.config
1610         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.1.exe.config
1611         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.2.exe.config
1612         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.1.exe.config
1613         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.2.exe.config
1614 unhandled-exception-test-case.1.exe: unhandled-exception-test-case.1.cs
1615         $(MCS) /debug unhandled-exception-test-case.1.cs
1616 unhandled-exception-test-case-legacy.1.exe: unhandled-exception-test-case-legacy.1.cs
1617         $(MCS) /debug unhandled-exception-test-case-legacy.1.cs
1618 unhandled-exception-test-case.2.exe: unhandled-exception-test-case.2.cs
1619         $(MCS) /debug unhandled-exception-test-case.2.cs
1620 unhandled-exception-test-case-legacy.2.exe: unhandled-exception-test-case-legacy.2.cs
1621         $(MCS) /debug unhandled-exception-test-case-legacy.2.cs
1622 unhandled-exception-test-runner.2.exe: unhandled-exception-test-runner.2.cs
1623         $(MCS) /debug unhandled-exception-test-runner.2.cs
1624
1625 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
1626         $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
1627
1628 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
1629 bug-80307.exe: $(srcdir)/bug-80307.cs
1630         $(MCS) -r:$(CLASS)/System.Web.dll -out:$@ $(srcdir)/bug-80307.cs
1631         cd $(top_builddir)/runtime && $(MAKE) test-support-files
1632
1633 EXTRA_DIST += bug-81673-interface.cs
1634 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
1635         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1636         $(MCS) -out:bug-81673.exe -r:bug-81673-interface.dll $(srcdir)/bug-81673.cs
1637         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
1638 if FULL_AOT_TESTS
1639         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1640 endif
1641 if HYBRID_AOT_TESTS
1642         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1643 endif
1644
1645 EXTRA_DIST += bug-36848-a.cs
1646 bug-36848.exe bug-36848-a.dll: $(srcdir)/bug-36848.cs $(srcdir)/bug-36848-a.cs
1647         $(MCS) -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs
1648         $(MCS) -r:bug-36848-a.dll -out:bug-36848.exe $(srcdir)/bug-36848.cs
1649         $(MCS) -target:library -out:bug-36848-a.dll $(srcdir)/bug-36848-a.cs /define:WITH_STOP
1650 if FULL_AOT_TESTS
1651         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1652 endif
1653 if HYBRID_AOT_TESTS
1654         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1655 endif
1656
1657 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
1658 bug-81691.exe bug-81691-b.dll: $(srcdir)/bug-81691.cs $(srcdir)/bug-81691-a.cs $(srcdir)/bug-81691-b.cs
1659         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs
1660         $(MCS) -target:library -out:bug-81691-b.dll -r:bug-81691-a.dll $(srcdir)/bug-81691-b.cs
1661         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
1662         rm -f bug-81691-a.dll
1663 bug-81691.exe: bug-81691-b.dll
1664
1665 EXTRA_DIST += bug-81466-lib.il
1666 bug-81466-lib.dll: bug-81466-lib.il
1667         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
1668 if FULL_AOT_TESTS
1669         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1670 endif
1671 if HYBRID_AOT_TESTS
1672         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1673 endif
1674 bug-81466.exe: bug-81466.il bug-81466-lib.dll
1675         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
1676
1677 EXTRA_DIST += bug-324535-il.il
1678 bug-324535-il.dll : bug-324535-il.il
1679         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
1680 if FULL_AOT_TESTS
1681         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1682 endif
1683 if HYBRID_AOT_TESTS
1684         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1685 endif
1686 bug-324535.exe : bug-324535.cs bug-324535-il.dll
1687         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
1688
1689 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
1690 custom-modifiers-lib.dll: custom-modifiers-lib.il
1691         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
1692 if FULL_AOT_TESTS
1693         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1694 endif
1695 if HYBRID_AOT_TESTS
1696         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1697 endif
1698 custom-modifiers.2.exe: custom-modifiers.2.cs custom-modifiers-lib.dll
1699         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
1700
1701 EXTRA_DIST += bug-382986-lib.cs
1702 bug-382986-lib.dll: bug-382986-lib.cs
1703         $(MCS) -target:library -out:$@ $(srcdir)/bug-382986-lib.cs
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-382986.exe: bug-382986.cs bug-382986-lib.dll
1712         $(MCS) -out:$@ -r:bug-382986-lib.dll $(srcdir)/bug-382986.cs
1713
1714 EXTRA_DIST += bug-17537-helper.cs
1715 bug-17537-helper.exe: bug-17537-helper.cs
1716         $(MCS) -out:$@ $(srcdir)/bug-17537-helper.cs
1717         chmod -x $@
1718 if FULL_AOT_TESTS
1719         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1720 endif
1721 if HYBRID_AOT_TESTS
1722         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1723 endif
1724
1725 bug-17537.exe: bug-17537.cs bug-17537-helper.exe
1726         $(MCS) -r:$(CLASS)/System.dll -out:$@ $(srcdir)/bug-17537.cs
1727
1728 EXTRA_DIST += coreclr-security.cs
1729
1730 coreclr-security.exe : coreclr-security.cs
1731         $(SMCS) -out:coreclr-security.exe $(srcdir)/coreclr-security.cs
1732
1733 test-coreclr-security : coreclr-security.exe
1734         @echo "Testing coreclr-security.exe..."
1735         @$(RUNTIME_MOONLIGHT) --security=core-clr-test coreclr-security.exe
1736
1737 EXTRA_DIST += generic-unboxing.2.il
1738 generic-unboxing.2.dll : generic-unboxing.2.il
1739         $(ILASM) /dll /output:generic-unboxing.2.dll $(srcdir)/generic-unboxing.2.il
1740 if FULL_AOT_TESTS
1741         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1742 endif
1743 if HYBRID_AOT_TESTS
1744         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1745 endif
1746
1747 EXTRA_DIST += generic-boxing.2.il
1748 generic-boxing.2.dll : generic-boxing.2.il generic-unboxing.2.dll
1749         $(ILASM) /dll /output:generic-boxing.2.dll $(srcdir)/generic-boxing.2.il
1750 if FULL_AOT_TESTS
1751         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1752 endif
1753 if HYBRID_AOT_TESTS
1754         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1755 endif
1756
1757 EXTRA_DIST += generic-unbox.2.cs
1758 generic-unbox.2.exe : generic-unbox.2.cs generic-unboxing.2.dll
1759         $(MCS) -r:generic-unboxing.2.dll -out:$@ $(srcdir)/generic-unbox.2.cs
1760
1761 EXTRA_DIST += generic-box.2.cs
1762 generic-box.2.exe : generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
1763         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $(srcdir)/generic-box.2.cs
1764
1765 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
1766 generic-delegate2-lib.2.dll : generic-delegate2-lib.2.il
1767         $(ILASM) /dll /output:$@ $(srcdir)/generic-delegate2-lib.2.il
1768 if FULL_AOT_TESTS
1769         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1770 endif
1771 if HYBRID_AOT_TESTS
1772         $(RUNTIME) $(AOT_BUILD_FLAGS) $@
1773 endif
1774 generic-delegate2.2.exe : generic-delegate2.2.cs generic-delegate2-lib.2.dll
1775         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $(srcdir)/generic-delegate2.2.cs
1776
1777 bug-3903.exe: bug-3903.cs
1778         $(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:$@
1779
1780 gshared: test-generic-sharing
1781
1782 gshared-aot:
1783         @$(MAKE) AOT=1 gshared
1784
1785 GSHARED_TESTS_SRC = \
1786         generics-sharing.2.cs   \
1787         shared-generic-methods.2.cs     \
1788         shared-generic-synchronized.2.cs        \
1789         generic-initobj.2.cs            \
1790         generics-sharing-other-exc.2.cs \
1791         generic-box.2.cs                \
1792         generic-unbox.2.cs      \
1793         generic-delegate.2.cs   \
1794         generic-sizeof.2.cs     \
1795         generic-ldobj.2.cs      \
1796         generic-mkrefany.2.cs                   \
1797         generic-refanyval.2.cs  \
1798         generic-ldtoken.2.cs                    \
1799         generic-ldtoken-method.2.cs     \
1800         generic-ldtoken-field.2.cs      \
1801         generic-virtual.2.cs    \
1802         generic-tailcall.2.cs                   \
1803         generic-interface-methods.2.cs  \
1804         generic-array-type.2.cs \
1805         generic-method-patching.2.cs    \
1806         generic-static-methods.2.cs     \
1807         generic-null-call.2.cs  \
1808         generic-tailcall2.2.cs                  \
1809         generic-array-exc.2.cs  \
1810         generic-special.2.cs                    \
1811         generic-exceptions.2.cs \
1812         generic-delegate2.2.cs          \
1813         generic-virtual2.2.cs   \
1814         generic-valuetype-interface.2.cs        \
1815         generic-valuetype-newobj.2.cs   \
1816         generic-valuetype-newobj2.2.cs  \
1817         generic-getgenericarguments.2.cs        \
1818         generic-synchronized.2.cs       \
1819         generic-delegate-ctor.2.cs              \
1820         generic-constrained.2.cs        \
1821         bug-431413.2.cs                 \
1822         generic-virtual-invoke.2.cs     \
1823         generic-typedef.2.cs            \
1824         generic-marshalbyref.2.cs       \
1825         bug-459285.2.cs \
1826         bug-461198.2.cs \
1827         generic-sealed-virtual.2.cs     \
1828         generic-system-arrays.2.cs      \
1829         generic-stack-traces.2.cs       \
1830         generic-stack-traces2.2.cs              \
1831         bug-472600.2.cs \
1832         bug-473482.2.cs \
1833         bug-473999.2.cs         \
1834         bug-479763.2.cs                         \
1835         generic-type-load-exception.2.cs        \
1836         bug-616463.cs   \
1837         bug-1147.cs     \
1838         generic-type-builder.2.cs
1839
1840 GSHARED_DISABLED_TESTS=
1841
1842 if FULL_AOT_TESTS
1843 GSHARED_DISABLED_TESTS += \
1844         generic-type-builder.2.exe
1845 endif
1846
1847 GSHARED_TESTS=$(filter-out $(GSHARED_DISABLED_TESTS),$(GSHARED_TESTS_SRC:.cs=.exe))
1848
1849 test-generic-sharing-normal: $(GSHARED_TESTS)
1850         @for fn in $+ ; do      \
1851                 echo "Testing $$fn ...";        \
1852                 $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;      \
1853                 $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;      \
1854                 $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;      \
1855                 $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;       \
1856                 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; \
1857         done
1858
1859 test-generic-sharing-managed: test-runner.exe $(GSHARED_TESTS)
1860         $(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)
1861
1862 if NACL_CODEGEN
1863 test-generic-sharing:
1864 else
1865 test-generic-sharing:
1866         @if test x$(M) != x0; then $(MAKE) test-generic-sharing-managed; else $(MAKE) test-generic-sharing-normal; fi
1867 endif
1868
1869 EXTRA_DIST += async-exceptions.cs
1870 async-exceptions.exe : async-exceptions.cs
1871         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
1872 test-async-exceptions : async-exceptions.exe
1873         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
1874         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
1875
1876 EXTRA_DIST += modules.cs modules-m1.cs
1877 modules-m1.netmodule: modules-m1.cs
1878         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
1879 modules.exe: modules.cs modules-m1.netmodule $(TEST_DRIVER_DEPEND) 
1880         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
1881
1882 # Useful if mono is compiled with --enable-shared=no
1883 patch-libtool:
1884         cp "../../libtool" .
1885         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
1886         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
1887         touch libtest.c
1888
1889
1890 if NACL_CODEGEN
1891 test-process-exit:
1892 else
1893 EXTRA_DIST += threadpool-in-processexit.cs threadpool-in-processexit.exe.stdout.expected
1894 test-process-exit:
1895         @$(MCS) $(srcdir)/threadpool-in-processexit.cs -out:threadpool-in-processexit.exe
1896         @echo "Testing threadpool-in-processexit.exe..."
1897         @$(RUNTIME) threadpool-in-processexit.exe > threadpool-in-processexit.exe.stdout
1898         @diff -w threadpool-in-processexit.exe.stdout $(srcdir)/threadpool-in-processexit.exe.stdout.expected
1899 endif
1900
1901 OOM_TESTS =     \
1902         gc-oom-handling.exe     \
1903         gc-oom-handling2.exe
1904
1905
1906 test-oom: $(OOM_TESTS)
1907         @for fn in $+ ; do      \
1908                 echo "Testing $$fn ...";        \
1909                 MONO_GC_PARAMS=max-heap-size=16m MONO_ENV_OPTIONS="--gc=sgen"                     $(RUNTIME) $$fn > $$fn.stdout || exit 1;      \
1910                 MONO_GC_PARAMS=max-heap-size=16m                                                  $(RUNTIME) $$fn > $$fn.stdout || exit 1;      \
1911         done
1912
1913 if HOST_WIN32
1914 test-unhandled-exception-2:
1915 else
1916
1917 # tests that expect a 1 exit code
1918 UNHANDLED_EXCEPTION_1_TESTS =   \
1919         unhandled-exception-1.exe
1920
1921 # tests that expect a 255 exit code
1922 UNHANDLED_EXCEPTION_255_TESTS = \
1923         unhandled-exception-2.exe       \
1924         unhandled-exception-3.exe       \
1925         unhandled-exception-4.exe       \
1926         unhandled-exception-5.exe       \
1927         unhandled-exception-6.exe       \
1928         unhandled-exception-7.exe       \
1929         unhandled-exception-8.exe
1930
1931 test-unhandled-exception-2: $(UNHANDLED_EXCEPTION_1_TESTS) $(UNHANDLED_EXCEPTION_255_TESTS)
1932         $(MAKE) test-unhandled-exception-2-1-with-managed-handler
1933         $(MAKE) test-unhandled-exception-2-1-without-managed-handler
1934         $(MAKE) test-unhandled-exception-2-255-with-managed-handler
1935         $(MAKE) test-unhandled-exception-2-255-without-managed-handler
1936
1937 test-unhandled-exception-2-1-with-managed-handler: $(UNHANDLED_EXCEPTION_1_TESTS) test-runner.exe
1938         $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 1 $(UNHANDLED_EXCEPTION_1_TESTS)
1939 test-unhandled-exception-2-1-without-managed-handler: $(UNHANDLED_EXCEPTION_1_TESTS) test-runner.exe
1940         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)
1941 test-unhandled-exception-2-255-with-managed-handler: $(UNHANDLED_EXCEPTION_255_TESTS) test-runner.exe
1942         $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) -j a --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --expected-exit-code 255 $(UNHANDLED_EXCEPTION_255_TESTS)
1943 test-unhandled-exception-2-255-without-managed-handler: $(UNHANDLED_EXCEPTION_255_TESTS) test-runner.exe
1944         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)
1945
1946 endif
1947
1948 EXTRA_DIST += appdomain-loader.cs appdomain-tester.cs
1949 test-appdomain-unload: appdomain-loader.exe appdomain-tester.exe
1950         $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.1.stdout || exit 1;
1951         $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.2.stdout || exit 1;
1952         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) -O=gshared appdomain-loader.exe > appdomain-loader.exe.3.stdout || exit 1;
1953         MONO_DEBUG_ASSEMBLY_UNLOAD=1 $(RUNTIME) appdomain-loader.exe > appdomain-loader.exe.4.stdout || exit 1;
1954
1955 EXTRA_DIST += console-output.cs console-output.exe.stderr.expected console-output.exe.stdout.expected
1956 test-console-output: console-output.exe
1957         @$(RUNTIME) console-output.exe 1>console-output.exe.stdout
1958         @$(RUNTIME) console-output.exe 2>console-output.exe.stderr
1959         @diff -w console-output.exe.stdout $(srcdir)/console-output.exe.stdout.expected \
1960                 && diff -w console-output.exe.stderr $(srcdir)/console-output.exe.stderr.expected
1961
1962 test-pedump: test-runner.exe
1963         $(with_mono_path) $(mono_build_root)/tools/pedump/pedump --verify error test-runner.exe
1964
1965 .PHONY: test-gac-loading
1966
1967 runtest-gac-loading: test-runner.exe
1968         $(MAKE) -C testing_gac runtest
1969
1970 compile-gac-loading:
1971         $(MAKE) -C testing_gac compile-tests
1972
1973 PROCESS_STRESS_TESTS=   \
1974                 process-stress-1.exe    \
1975                 process-stress-2.exe    \
1976                 process-stress-3.exe    \
1977                 process-leak.exe
1978
1979 test-process-stress: $(PROCESS_STRESS_TESTS) test-runner.exe
1980         $(TOOLS_RUNTIME) $(TEST_RUNNER) $(TEST_RUNNER_ARGS) --testsuite-name $@ --disabled "$(DISABLED_TESTS)" --timeout 600 $(PROCESS_STRESS_TESTS)
1981
1982 coreclr-gcstress:
1983         $(MAKE) -C $(mono_build_root)/acceptance-tests coreclr-gcstress
1984
1985 # Tests for the Mono lldb plugin
1986 EXTRA_DIST += test_lldb.py test-lldb.cs
1987 test-lldb: test-lldb.exe
1988         python test_lldb.py $(JITTEST_PROG)
1989
1990 noinst_LTLIBRARIES = libtest.la
1991
1992 AM_CPPFLAGS = $(GLIB_CFLAGS)
1993
1994 if HOST_WIN32
1995 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
1996 # This shows up when compiling mono_test_marshal_delegate ()
1997 libtest_la_CFLAGS=-fno-optimize-sibling-calls
1998 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
1999 # can't find them. So we use --kill-at to remove the @ suffix as well.
2000 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
2001 else
2002 libtest_la_LDFLAGS = -rpath `pwd`
2003 endif
2004 libtest_la_SOURCES = libtest.c
2005 libtest_la_LIBADD = $(GLIB_LIBS) $(LIBICONV)
2006
2007 CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.aotlog *.exe stest.dat