2009-08-12 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / tests / Makefile.am
1 SUBDIRS = cas assemblyresolve
2
3 # avoid including eglib twice since GLIB_LIBS == GMODULE_LIBS for eglib builds
4 if EGLIB_BUILD
5 glib_libs = $(GLIB_LIBS)
6 else
7 glib_libs = $(GLIB_LIBS) $(GMODULE_LIBS)
8 endif
9
10 check-local: test
11
12 aotcheck: testaot gshared-aot
13
14 TEST_PROG = ../interpreter/mint
15 JITTEST_PROG = ../mini/mono
16
17 TEST_PROG_RUN = MONO_SHARED_DIR=$(mono_build_root)/runtime MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(TEST_PROG)
18 JITTEST_PROG_RUN = MONO_SHARED_DIR=$(mono_build_root)/runtime MONO_CFG_DIR=$(mono_build_root)/runtime/etc $(LIBTOOL) --mode=execute $(JITTEST_PROG)
19
20 RUNTIME_ARGS=--config tests-config --optimize=all --debug
21
22 with_mono_path = MONO_PATH=$(mcs_topdir)/class/lib/net_2_0
23 with_mono_path21 = MONO_PATH=$(mcs_topdir)/class/lib/net_2_1_raw
24
25 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper
26 RUNTIME21 = $(with_mono_path21) $(top_builddir)/runtime/mono-wrapper
27
28 MKBUNDLE = \
29         PKG_CONFIG_PATH=$(top_builddir):$(PKG_CONFIG_PATH) \
30         $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/mkbundle.exe
31
32 MCS = $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/gmcs.exe -unsafe -nowarn:0162 -nowarn:0168 -nowarn:0219 -debug
33 SMCS = $(RUNTIME21) --runtime=moonlight --security=temporary-smcs-hack $(mcs_topdir)/class/lib/net_2_1_raw/smcs.exe -unsafe -nowarn:0162 -nowarn:0168 -nowarn:0219
34 ILASM = $(RUNTIME) $(mcs_topdir)/class/lib/net_2_0/ilasm.exe
35
36 BENCHSRC=fib.cs random.cs nested-loops.cs ackermann.cs tight-loop.cs sieve.cs
37
38 STRESS_TESTS_SRC=       \
39         abort-stress-1.cs       \
40         abort-stress-2.cs       \
41         abort-stress-3.cs       \
42         domain-stress.cs        \
43         gchandle-stress.cs      \
44         monitor-stress.cs       \
45         thread-stress.cs        \
46         gc-stress.cs            \
47         exit-stress.cs
48
49 BASE_TEST_CS_SRC=               \
50         array-init.cs           \
51         arraylist.cs            \
52         assemblyresolve_event.cs        \
53         assemblyresolve_event3.cs       \
54         checked.cs              \
55         char-isnumber.cs        \
56         create-instance.cs      \
57         field-layout.cs         \
58         pack-layout.cs          \
59         pack-bug.cs             \
60         hash-table.cs           \
61         test-ops.cs             \
62         obj.cs                  \
63         test-dup-mp.cs          \
64         string.cs               \
65         stringbuilder.cs        \
66         switch.cs               \
67         outparm.cs              \
68         delegate.cs             \
69         bitconverter.cs         \
70         exception.cs            \
71         exception2.cs           \
72         exception3.cs           \
73         exception4.cs           \
74         exception5.cs           \
75         exception6.cs           \
76         exception7.cs           \
77         exception8.cs           \
78         exception10.cs          \
79         exception11.cs          \
80         exception12.cs          \
81         exception13.cs          \
82         exception14.cs          \
83         exception15.cs          \
84         exception16.cs          \
85         exception17.cs          \
86         typeload-unaligned.cs   \
87         struct.cs               \
88         valuetype-gettype.cs    \
89         typeof-ptr.cs           \
90         static-constructor.cs   \
91         pinvoke.cs              \
92         pinvoke2.cs             \
93         pinvoke3.cs             \
94         pinvoke11.cs            \
95         pinvoke13.cs            \
96         pinvoke17.cs            \
97         invoke.cs               \
98         invoke2.cs              \
99         runtime-invoke.cs               \
100         invoke-string-ctors.cs          \
101         reinit.cs               \
102         box.cs                  \
103         array.cs                \
104         enum.cs                 \
105         enum2.cs                \
106         property.cs             \
107         enumcast.cs             \
108         assignable-tests.cs     \
109         array-cast.cs           \
110         array-subtype-attr.cs   \
111         cattr-compile.cs        \
112         cattr-field.cs          \
113         cattr-object.cs         \
114         custom-attr.cs          \
115         double-cast.cs          \
116         newobj-valuetype.cs     \
117         arraylist-clone.cs      \
118         setenv.cs               \
119         vtype.cs                \
120         isvaluetype.cs          \
121         iface6.cs               \
122         iface7.cs               \
123         ipaddress.cs            \
124         array-vt.cs             \
125         interface1.cs           \
126         reflection-enum.cs      \
127         reflection-prop.cs      \
128         reflection4.cs          \
129         reflection5.cs          \
130         reflection-const-field.cs \
131         many-locals.cs          \
132         string-compare.cs       \
133         test-prime.cs           \
134         params.cs               \
135         reflection.cs           \
136         interface.cs            \
137         iface.cs                \
138         iface2.cs               \
139         iface3.cs               \
140         iface4.cs               \
141         iface-large.cs          \
142         virtual-method.cs       \
143         intptrcast.cs           \
144         indexer.cs              \
145         stream.cs               \
146         console.cs              \
147         shift.cs                \
148         jit-int.cs              \
149         jit-uint.cs             \
150         jit-long.cs             \
151         long.cs                 \
152         jit-ulong.cs            \
153         jit-float.cs            \
154         pop.cs                  \
155         time.cs                 \
156         appdomain.cs        \
157         appdomain1.cs           \
158         appdomain2.cs           \
159         appdomain-client.cs     \
160         appdomain-unload.cs \
161         appdomain-async-invoke.cs       \
162         loader.cs       \
163         pointer.cs              \
164         hashcode.cs             \
165         delegate1.cs            \
166         delegate2.cs            \
167         delegate3.cs            \
168         delegate5.cs            \
169         delegate6.cs            \
170         delegate7.cs            \
171         delegate8.cs            \
172         delegate9.cs            \
173         remoting1.cs            \
174         remoting2.cs            \
175         remoting3.cs            \
176         remoting4.cs            \
177         remoting5.cs            \
178         largeexp.cs             \
179         largeexp2.cs            \
180         marshalbyref1.cs        \
181         static-ctor.cs          \
182         inctest.cs              \
183         bound.cs                \
184         array-invoke.cs         \
185         test-arr.cs             \
186         decimal.cs              \
187         decimal-array.cs        \
188         marshal.cs              \
189         marshal1.cs             \
190         marshal2.cs             \
191         marshal3.cs             \
192         marshal5.cs             \
193         marshal6.cs             \
194         marshal7.cs             \
195         marshal8.cs             \
196         marshal9.cs             \
197         marshalbool.cs          \
198         marshal-valuetypes.cs   \
199         test-byval-in-struct.cs \
200         thread.cs               \
201         thread5.cs              \
202         thread6.cs              \
203         thread-static.cs        \
204         thread-static-init.cs   \
205         context-static.cs       \
206         float-pop.cs            \
207         interfacecast.cs        \
208         array3.cs               \
209         classinit.cs            \
210         classinit2.cs           \
211         synchronized.cs         \
212         async_read.cs           \
213         threadpool.cs           \
214         threadpool1.cs          \
215         base-definition.cs      \
216         bug-27420.cs            \
217         bug-47295.cs            \
218         bug-46781.cs            \
219         bug-48015.cs            \
220         bug-42136.cs            \
221         bug-59286.cs            \
222         bug-70561.cs            \
223         bug-78311.cs            \
224         bug-78653.cs            \
225         bug-78656.cs            \
226         bug-77127.cs            \
227         bug-323114.cs           \
228         bug-331958.cs           \
229         interlocked.cs          \
230         cross-domain.cs         \
231         appdomain-exit.cs       \
232         delegate-async-exit.cs  \
233         delegate-delegate-exit.cs       \
234         delegate-exit.cs        \
235         finalizer-abort.cs      \
236         finalizer-exception.cs  \
237         finalizer-exit.cs       \
238         main-exit.cs    \
239         main-returns-abort-resetabort.cs        \
240         main-returns-background-abort-resetabort.cs     \
241         main-returns-background-resetabort.cs   \
242         main-returns-background.cs      \
243         main-returns-background-change.cs       \
244         main-returns.cs         \
245         subthread-exit.cs       \
246         desweak.cs              \
247         cominterop.cs           \
248         exists.cs               \
249         handleref.cs    \
250         transparentproxy.cs \
251         imt_big_iface_test.cs \
252         dbnull-missing.cs       \
253         test-type-ctor.cs       \
254         soft-float-tests.cs     \
255         thread-exit.cs          \
256         finalize-parent.cs      \
257         assemblyresolve_event2.2.cs     \
258         interlocked-2.2.cs      \
259         pinvoke-2.2.cs          \
260         bug-78431.2.cs          \
261         bug-79684.2.cs          \
262         catch-generics.2.cs     \
263         event-get.2.cs          \
264         safehandle.2.cs         \
265         stackframes-async.2.cs          \
266         module-cctor-loader.2.cs        \
267         generics-invoke-byref.2.cs      \
268         generic-signature-compare.2.cs  \
269         generics-sharing.2.cs   \
270         shared-generic-methods.2.cs     \
271         shared-generic-synchronized.2.cs        \
272         generic-inlining.2.cs   \
273         generic-initobj.2.cs    \
274         generic-delegate.2.cs   \
275         generic-sizeof.2.cs     \
276         generic-virtual.2.cs    \
277         generic-interface-methods.2.cs  \
278         generic-array-type.2.cs \
279         generic-method-patching.2.cs    \
280         generic-static-methods.2.cs     \
281         generic-null-call.2.cs  \
282         generic-special.2.cs    \
283         generic-exceptions.2.cs \
284         generic-virtual2.2.cs   \
285         generic-valuetype-interface.2.cs        \
286         generic-getgenericarguments.2.cs        \
287         generic-type-builder.2.cs       \
288         generic-synchronized.2.cs       \
289         generic-delegate-ctor.2.cs      \
290         generic-array-iface-set.2.cs    \
291         generic-typedef.2.cs    \
292         generic-marshalbyref.2.cs       \
293         generic-xdomain.2.cs    \
294         bug-431413.2.cs \
295         bug-459285.2.cs \
296         generic-virtual-invoke.2.cs     \
297         bug-461198.2.cs \
298         generic-sealed-virtual.2.cs     \
299         generic-system-arrays.2.cs      \
300         generic-stack-traces.2.cs       \
301         generic-stack-traces2.2.cs      \
302         bug-472600.2.cs \
303         recursive-generics.2.cs \
304         bug-473482.2.cs \
305         bug-473999.2.cs \
306         bug-479763.2.cs \
307         bug-80392.2.cs          \
308         dynamic-method-access.2.cs      \
309         dynamic-method-finalize.2.cs    \
310         bug-82194.2.cs  \
311         anonarray.2.cs  \
312         ienumerator-interfaces.2.cs     \
313         array-enumerator-ifaces.2.cs    \
314         generic_type_definition_encoding.2.cs \
315         generic_type_definition.2.cs    \
316         bug-333798.2.cs         \
317         bug-333798-tb.2.cs              \
318         bug-335131.2.cs         \
319         bug-322722_patch_bx.2.cs                \
320         bug-348522.2.cs         \
321         bug-340662_bug.cs       \
322         bug-322722_dyn_method_throw.2.cs        \
323         bug-389886-2.cs \
324         bug-325283.2.cs \
325         thunks.cs \
326         winx64structs.cs \
327         bug-349190.2.cs \
328         nullable_boxing.2.cs    \
329         valuetype-equals.cs     \
330         custom-modifiers.2.cs   \
331         bug-382986.cs   \
332         test-inline-call-stack.cs       \
333         bug-324535.cs   \
334         modules.cs      \
335         bug-81673.cs    \
336         bug-81691.cs    \
337         bug-80307.cs    \
338         bug-415577.cs   \
339         filter-stack.cs \
340         vararg2.cs      \
341         bug-389886-sre-generic-interface-instances.cs   \
342         bug-461867.cs   \
343         bug-461941.cs   \
344         bug-461261.cs   \
345         bug-400716.cs   \
346         bug-462592.cs   \
347         bug-459094.cs   \
348         generic-unloading.2.cs  \
349         generic-unloading-sub.2.cs      \
350         bug-467456.cs   \
351         appdomain-unload-callback.cs    \
352         bug-508538.cs   \
353         bug-472692.2.cs         \
354         gchandles.cs    \
355         interlocked-3.cs        \
356         interlocked-4.2.cs      \
357         finalizer-wait.cs       \
358         critical-finalizers.cs  \
359         appdomain-thread-abort.cs \
360         w32message.cs
361
362 if AMD64
363 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
364 else
365 if X86
366 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
367 else
368 TEST_CS_SRC = $(BASE_TEST_CS_SRC)
369 endif
370 endif
371
372 if IA64
373 TEST_CS_SRC+=async-exc-compilation.cs
374 # bug #319249
375 PLATFORM_DISABLED_TESTS=exception17.exe
376 PLATFORM_DISABLED_TESTS+=winx64structs.exe
377 endif
378
379 if X86
380
381 if PLATFORM_WIN32
382 PLATFORM_DISABLED_TESTS=async-exc-compilation.exe
383 endif
384
385 endif
386
387 if POWERPC
388 # bug #71274
389 PLATFORM_DISABLED_TESTS=finalizer-abort.exe finalizer-exception.exe finalizer-exit.exe
390 endif
391
392 # The two finalizer tests only work under sgen
393 DISABLED_TESTS=                 \
394         delegate-async-exception.exe    \
395         bug-348522.2.exe        \
396         finalizer-wait.exe      \
397         critical-finalizers.exe \
398         $(PLATFORM_DISABLED_TESTS)
399
400 # These only compile with MS CSC
401 TEST_CSC_SRC=                   \
402         vararg.cs
403
404 TEST_IL_SRC=                    \
405         field-access.il         \
406         method-access.il        \
407         ldftn-access.il         \
408         cpblkTest.il            \
409         vbinterface.il          \
410         calliTest.il            \
411         ckfiniteTest.il         \
412         fault-handler.il                \
413         locallocTest.il         \
414         initblkTest.il          \
415         qt-instance.il          \
416         vararg.il               \
417         bug-29859.il            \
418         bug-78549.il            \
419         static-fields-nonconst.il       \
420         reload-at-bb-end.il     \
421         test-enum-indstoreil.il \
422         filter-bug.il           \
423         even-odd.il             \
424         bug-82022.il    \
425         vt-sync-method.il       \
426         enum_types.il   \
427         invalid-token.il        \
428         call_missing_method.il  \
429         call_missing_class.il   \
430         ldfld_missing_field.il  \
431         ldfld_missing_class.il  \
432         find-method.2.il        \
433         bug-79215.2.il  \
434         bug-79956.2.il  \
435         bug-327438.2.il \
436         bug-387274.2.il \
437         bug-426309.2.il \
438         ldtoken_with_byref_typespec.2.il \
439         resolve_method_bug.2.il \
440         resolve_field_bug.2.il \
441         resolve_type_bug.2.il   \
442         generics-sharing-other-exc.2.il \
443         generic-ldobj.2.il      \
444         generic-mkrefany.2.il   \
445         generic-refanyval.2.il  \
446         generic-ldtoken.2.il    \
447         generic-ldtoken-method.2.il     \
448         generic-ldtoken-field.2.il      \
449         generic-tailcall.2.il   \
450         generic-tailcall2.2.il  \
451         generic-array-exc.2.il  \
452         generic-valuetype-newobj2.2.il  \
453         generic-valuetype-newobj.2.il   \
454         generic-constrained.2.il        \
455         bug-81466.il    \
456         bug457574.il    \
457         bug445361.il    \
458         bug-463303.il   \
459         bug469742.2.il  \
460         bug-528055.il   \
461         bug-481403.il
462
463 #       bug-318677.il
464
465 # pre-requisite test sources: files that are not test themselves
466 # but that need to be compiled
467 PREREQ_IL_SRC=event-il.il module-cctor.il
468 PREREQ_CS_SRC=
469 PREREQ_IL_DLL_SRC=event-il.il module-cctor.il
470 PREREQ_CS_DLL_SRC=
471
472 PREREQSI_IL=$(PREREQ_IL_SRC:.il=.exe)
473 PREREQSI_CS=$(PREREQ_CS_SRC:.cs=.exe)
474 TESTSI_CS=$(TEST_CS_SRC:.cs=.exe)
475 TESTSI_IL=$(TEST_IL_SRC:.il=.exe)
476 TESTBS=$(BENCHSRC:.cs=.exe)
477 STRESS_TESTS=$(STRESS_TESTS_SRC:.cs=.exe)
478
479 EXTRA_DIST=test-driver $(TEST_CS_SRC) $(TEST_IL_SRC) \
480         $(BENCHSRC) $(STRESS_TESTS_SRC) stress-runner.pl $(PREREQ_IL_SRC) $(PREREQ_CS_SRC)
481
482 %.exe: %.il
483         $(ILASM) -out:$@ $<
484
485 %.exe: %.cs TestDriver.dll
486         $(MCS) -r:TestDriver.dll -out:$@ $<
487
488 # mkbundle works on ppc, but the pkg-config POC doesn't when run with make test
489 if POWERPC
490 test_platform:  testbundle
491 else
492 # Can't use mkbundle on win32 since there is no static build there
493 # Can't run test-unhandled-exception on Windows because of all the debug popups...
494 if PLATFORM_WIN32
495 test_platform:
496 else
497 test_platform:  testbundle test-iomap-regression
498 endif
499 endif
500
501 #
502 # Tests that the internals in mono/io-layer/messages.c are ok by triggering the 
503 # code that checks that the table is properly sorted
504 #
505 test_messages: w32message.exe
506         > test_messages.zero
507         $(JITTEST_PROG_RUN) w32message.exe >& w32message.allout && cmp test_messages.zero w32message.allout
508
509 if INSTALL_2_1
510 test_2_1 : test-coreclr-security
511 else
512 test_2_1 :
513 endif
514
515 # test_messages fails on the buildbots
516 #test: assemblyresolve/test/asm.dll testjit test-type-load test-generic-sharing test_platform test_2_1 test_messages
517 test: assemblyresolve/test/asm.dll testjit test-type-load test-generic-sharing test_platform test_2_1
518
519 assemblyresolve/test/asm.dll:
520         $(MAKE) -C assemblyresolve prereq
521
522 TestDriver.dll:
523         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs
524
525 test_cs: $(TEST_PROG) $(TESTSI_CS) libtest.la
526         @failed=0; \
527         passed=0; \
528         for i in $(TESTSI_CS); do       \
529                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
530                 then \
531                         passed=`expr $${passed} + 1`; \
532                 else \
533                         if [ $$? = 2 ]; then break; fi; \
534                         failed=`expr $${failed} + 1`; \
535                 fi \
536         done; \
537         echo; echo ".cs: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
538
539 test_il: $(TEST_PROG) $(TESTSI_IL) libtest.la
540         @failed=0; \
541         passed=0; \
542         for i in $(TESTSI_IL); do       \
543                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" $(RUNTIME_ARGS); \
544                 then \
545                         passed=`expr $${passed} + 1`; \
546                 else \
547                         if [ $$? = 2 ]; then break; fi; \
548                         failed=`expr $${failed} + 1`; \
549                 fi \
550         done; \
551         echo; echo ".il: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
552
553 testb: $(TEST_PROG) $(TESTBS)
554         for i in $(TESTBS); do  \
555                 $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS);     \
556         done
557
558 runtest: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
559         @failed=0; \
560         passed=0; \
561         failed_tests="";\
562         for i in $(TESTSI_CS) $(TESTBS) $(TESTSI_IL); do        \
563                 rm -f $${i}.so; \
564                 if [ x$(AOT) = x1 ]; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > /dev/null || exit 1; fi; \
565                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
566                 then \
567                         passed=`expr $${passed} + 1`; \
568                 else \
569                         if [ $$? = 2 ]; then break; fi; \
570                         failed=`expr $${failed} + 1`; \
571                         failed_tests="$${failed_tests} $$i"; \
572                 fi \
573         done; \
574         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
575         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
576           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
577
578 runtest-managed: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
579         @$(RUNTIME) ./test-runner.exe -j a --disabled '$(DISABLED_TESTS)' $(TESTSI_CS) $(TESTBS) $(TESTSI_IL)
580
581 testjit:
582         @$(MAKE) runtest
583
584 testaot:
585         @$(MAKE) AOT=1 runtest
586
587 testtrace:
588         @$(MAKE) RUNTIME_ARGS="$${RUNTIME_ARGS} --trace" runtest
589
590 testinterp:
591         @$(MAKE) JITTEST_PROG_RUN="$(TEST_PROG_RUN)" runtest
592
593 testjitspeed: $(JITTEST_PROG) $(TESTBS)
594         for i in $(TESTBS); do  \
595                 echo $$i;       \
596                 time $(JITTEST_PROG) $$i;       \
597         done
598
599 test-iomap-regression: exists.cs
600         @$(MCS) $(srcdir)/exists.cs -out:exists.exe
601         @echo "Testing exists.exe..."
602         @MONO_IOMAP=all $(RUNTIME) exists.exe
603
604 stresstest: $(STRESS_TESTS)
605         @failed=0; \
606         passed=0; \
607         failed_tests="";\
608         for i in $(STRESS_TESTS); do    \
609                 if $(srcdir)/stress-runner.pl $$i ../mini/mono $(RUNTIME_ARGS); \
610                 then \
611                         passed=`expr $${passed} + 1`; \
612                 else \
613                         if [ $$? = 2 ]; then break; fi; \
614                         failed=`expr $${failed} + 1`; \
615                         failed_tests="$${failed_tests} $$i"; \
616                 fi \
617         done; \
618         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
619         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
620           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
621
622 testbundle: console.exe
623         @echo "Testing mkbundle..."
624         @$(MKBUNDLE) --static console.exe > mkbundle.stdout
625         @$(with_mono_path) MONO_CFG_DIR=$(mono_cfg_dir) MONO_SHARED_DIR=$(mono_build_root)/runtime ./a.out >> mkbundle.stdout
626         @- rm -rf a.out
627
628 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
629 test-type-load: TestDriver.dll
630         @$(ILASM) /dll /output:load-missing.dll $(srcdir)/load-missing.il > /dev/null
631         @$(MCS) -t:library -out:t.dll -d:FOUND $(srcdir)/t-missing.cs
632         @$(MCS) -r:TestDriver.dll -r:load-missing.dll -r:t.dll -out:load-exceptions.exe $(srcdir)/load-exceptions.cs
633         @$(MCS) -t:library -out:t.dll $(srcdir)/t-missing.cs
634         @echo "Testing load-exception.exe..."
635         @$(RUNTIME) load-exceptions.exe > load-exceptions.exe.stdout 2> load-exceptions.exe.stderr
636
637 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
638 test-inline-call-stack-library.dll: TestDriver.dll $(srcdir)/test-inline-call-stack-library.cs
639         $(MCS) -t:library -out:test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack-library.cs
640 test-inline-call-stack.exe: TestDriver.dll test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack.cs
641         $(MCS) -r:TestDriver.dll -r:test-inline-call-stack-library.dll -out:test-inline-call-stack.exe $(srcdir)/test-inline-call-stack.cs
642
643 EXTRA_DIST += unhandled-exception-base-configuration.config
644 EXTRA_DIST += unhandled-exception-legacy-configuration.config
645 EXTRA_DIST += unhandled-exception-test-case.2.cs
646 EXTRA_DIST += unhandled-exception-test-runner.2.cs
647 unhandled-exception-test-case.1.cs: unhandled-exception-test-case.2.cs
648         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case.1.cs
649 unhandled-exception-test-case-legacy.1.cs: unhandled-exception-test-case.1.cs
650         cp unhandled-exception-test-case.1.cs unhandled-exception-test-case-legacy.1.cs
651 unhandled-exception-test-case-legacy.2.cs: unhandled-exception-test-case.2.cs
652         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case-legacy.2.cs
653 unhandled-exception-config_files: unhandled-exception-base-configuration.config unhandled-exception-legacy-configuration.config
654         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.1.exe.config
655         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.2.exe.config
656         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.1.exe.config
657         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.2.exe.config
658 unhandled-exception-test-case.1.exe: unhandled-exception-test-case.1.cs
659         $(MCS) /debug unhandled-exception-test-case.1.cs
660 unhandled-exception-test-case-legacy.1.exe: unhandled-exception-test-case-legacy.1.cs
661         $(MCS) /debug unhandled-exception-test-case-legacy.1.cs
662 unhandled-exception-test-case.2.exe: unhandled-exception-test-case.2.cs
663         $(MCS) /debug unhandled-exception-test-case.2.cs
664 unhandled-exception-test-case-legacy.2.exe: unhandled-exception-test-case-legacy.2.cs
665         $(MCS) /debug unhandled-exception-test-case-legacy.2.cs
666 unhandled-exception-test-runner.2.exe: unhandled-exception-test-runner.2.cs
667         $(MCS) /debug unhandled-exception-test-runner.2.cs
668
669 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
670         $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
671
672 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
673 bug-80307.exe: $(srcdir)/bug-80307.cs
674         $(MCS) -r:System.Web -out:$@ $(srcdir)/bug-80307.cs
675         cd $(top_builddir)/runtime && $(MAKE) test-support-files
676
677 EXTRA_DIST += bug-81673-interface.cs
678 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
679         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
680         $(MCS) -out:bug-81673.exe -r:bug-81673-interface.dll $(srcdir)/bug-81673.cs
681         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
682
683 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
684 bug-81691.exe bug-81691-b.dll: $(srcdir)/bug-81691.cs $(srcdir)/bug-81691-a.cs $(srcdir)/bug-81691-b.cs
685         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs
686         $(MCS) -target:library -out:bug-81691-b.dll -r:bug-81691-a.dll $(srcdir)/bug-81691-b.cs
687         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
688         rm -f bug-81691-a.dll
689
690 EXTRA_DIST += bug-81466-lib.il
691 bug-81466-lib.dll: bug-81466-lib.il
692         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
693 bug-81466.exe: bug-81466.il bug-81466-lib.dll
694         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
695
696 EXTRA_DIST += bug-324535-il.il
697 bug-324535-il.dll : bug-324535-il.il
698         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
699 bug-324535.exe : bug-324535.cs bug-324535-il.dll
700         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
701
702 EXTRA_DIST += make_imt_test.sh
703 imt_big_iface_test.cs: $(srcdir)/make_imt_test.sh
704         $(srcdir)/make_imt_test.sh > imt_big_iface_test.cs
705
706 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
707 custom-modifiers-lib.dll: custom-modifiers-lib.il
708         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
709 custom-modifiers.2.exe: custom-modifiers.2.cs custom-modifiers-lib.dll
710         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
711
712 EXTRA_DIST += bug-382986-lib.cs
713 bug-382986-lib.dll: bug-382986-lib.cs
714         $(MCS) -target:library -out:$@ $(srcdir)/bug-382986-lib.cs
715 bug-382986.exe: bug-382986.cs bug-382986-lib.dll
716         $(MCS) -out:$@ -r:bug-382986-lib.dll $(srcdir)/bug-382986.cs
717
718 EXTRA_DIST += coreclr-security.cs
719
720 if INSTALL_2_1
721 coreclr-security.exe : coreclr-security.cs
722         $(SMCS) -out:coreclr-security.exe $(srcdir)/coreclr-security.cs
723
724 test-coreclr-security : coreclr-security.exe
725         @echo "Testing coreclr-security.exe..."
726         @$(RUNTIME21) --security=core-clr-test coreclr-security.exe
727 endif
728
729 EXTRA_DIST += generic-unboxing.2.il
730 generic-unboxing.2.dll : generic-unboxing.2.il
731         $(ILASM) /dll /output:generic-unboxing.2.dll $(srcdir)/generic-unboxing.2.il
732
733 EXTRA_DIST += generic-boxing.2.il
734 generic-boxing.2.dll : generic-boxing.2.il generic-unboxing.2.dll
735         $(ILASM) /dll /output:generic-boxing.2.dll $(srcdir)/generic-boxing.2.il
736
737 EXTRA_DIST += generic-unbox.2.cs
738 generic-unbox.2.exe : generic-unbox.2.cs generic-unboxing.2.dll
739         $(MCS) -r:generic-unboxing.2.dll -out:$@ $(srcdir)/generic-unbox.2.cs
740
741 EXTRA_DIST += generic-box.2.cs
742 generic-box.2.exe : generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
743         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $(srcdir)/generic-box.2.cs
744
745 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
746 generic-delegate2-lib.2.dll : generic-delegate2-lib.2.il
747         $(ILASM) /dll /output:$@ $(srcdir)/generic-delegate2-lib.2.il
748 generic-delegate2.2.exe : generic-delegate2.2.cs generic-delegate2-lib.2.dll
749         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $(srcdir)/generic-delegate2.2.cs
750
751 gshared: test-generic-sharing
752
753 gshared-aot:
754         @$(MAKE) AOT=1 gshared
755
756 test-generic-sharing : generics-sharing.2.exe shared-generic-methods.2.exe      \
757                 shared-generic-synchronized.2.exe generic-initobj.2.exe         \
758                 generics-sharing-other-exc.2.exe generic-box.2.exe              \
759                 generic-unbox.2.exe generic-delegate.2.exe generic-sizeof.2.exe \
760                 generic-ldobj.2.exe generic-mkrefany.2.exe                      \
761                 generic-refanyval.2.exe generic-ldtoken.2.exe                   \
762                 generic-ldtoken-method.2.exe  generic-ldtoken-field.2.exe       \
763                 generic-virtual.2.exe generic-tailcall.2.exe                    \
764                 generic-interface-methods.2.exe generic-array-type.2.exe        \
765                 generic-method-patching.2.exe generic-static-methods.2.exe      \
766                 generic-null-call.2.exe generic-tailcall2.2.exe                 \
767                 generic-array-exc.2.exe generic-special.2.exe                   \
768                 generic-exceptions.2.exe generic-delegate2.2.exe                \
769                 generic-virtual2.2.exe generic-valuetype-interface.2.exe        \
770                 generic-valuetype-newobj.2.exe generic-valuetype-newobj2.2.exe  \
771                 generic-getgenericarguments.2.exe generic-type-builder.2.exe    \
772                 generic-synchronized.2.exe generic-delegate-ctor.2.exe          \
773                 generic-constrained.2.exe bug-431413.2.exe                      \
774                 generic-virtual-invoke.2.exe generic-typedef.2.exe              \
775                 generic-marshalbyref.2.exe bug-459285.2.exe bug-461198.2.exe    \
776                 generic-sealed-virtual.2.exe generic-system-arrays.2.exe        \
777                 generic-stack-traces.2.exe generic-stack-traces2.2.exe          \
778                 bug-472600.2.exe bug-473482.2.exe bug-473999.2.exe              \
779                 bug-479763.2.exe generic-xdomain.2.exe
780         @for fn in $+ ; do      \
781                 echo "Testing $$fn ...";        \
782                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;     \
783                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;     \
784                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;     \
785                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;      \
786                 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; \
787         done
788
789 EXTRA_DIST += async-exceptions.cs
790 async-exceptions.exe : async-exceptions.cs
791         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
792 test-async-exceptions : async-exceptions.exe
793         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
794         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
795
796 EXTRA_DIST += modules.cs modules-m1.cs
797 modules-m1.netmodule: modules-m1.cs
798         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
799 modules.exe: modules.cs modules-m1.netmodule
800         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
801
802 # Useful if mono is compiled with --enable-shared=no
803 patch-libtool:
804         cp "../../libtool" .
805         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
806         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
807         touch libtest.c
808
809 noinst_LTLIBRARIES = libtest.la
810
811 INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS)
812
813 if PLATFORM_WIN32
814 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
815 # This shows up when compiling mono_test_marshal_delegate ()
816 libtest_la_CFLAGS=-fno-optimize-sibling-calls
817 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
818 # can't find them. So we use --kill-at to remove the @ suffix as well.
819 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
820 else
821 libtest_la_LDFLAGS = -rpath `pwd`
822 endif
823 libtest_la_SOURCES = libtest.c
824 libtest_la_LIBADD = $(glib_libs)
825
826 CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.exe stest.dat