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