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