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