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