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