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