2009-01-07 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
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/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         virtual-sync.cs \
144         intptrcast.cs           \
145         indexer.cs              \
146         stream.cs               \
147         console.cs              \
148         shift.cs                \
149         jit-int.cs              \
150         jit-uint.cs             \
151         jit-long.cs             \
152         long.cs                 \
153         jit-ulong.cs            \
154         jit-float.cs            \
155         pop.cs                  \
156         time.cs                 \
157         appdomain.cs        \
158         appdomain1.cs           \
159         appdomain2.cs           \
160         appdomain-client.cs     \
161         appdomain-unload.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         marshal-valuetypes.cs   \
198         test-byval-in-struct.cs \
199         thread.cs               \
200         thread5.cs              \
201         thread6.cs              \
202         thread-static.cs        \
203         thread-static-init.cs   \
204         context-static.cs       \
205         float-pop.cs            \
206         interfacecast.cs        \
207         array3.cs               \
208         classinit.cs            \
209         classinit2.cs           \
210         synchronized.cs         \
211         async_read.cs           \
212         threadpool.cs           \
213         threadpool1.cs          \
214         base-definition.cs      \
215         bug-27420.cs            \
216         bug-47295.cs            \
217         bug-46781.cs            \
218         bug-48015.cs            \
219         bug-42136.cs            \
220         bug-59286.cs            \
221         bug-70561.cs            \
222         bug-78311.cs            \
223         bug-78653.cs            \
224         bug-78656.cs            \
225         bug-77127.cs            \
226         bug-323114.cs           \
227         bug-331958.cs           \
228         interlocked.cs          \
229         cross-domain.cs         \
230         appdomain-exit.cs       \
231         delegate-async-exit.cs  \
232         delegate-delegate-exit.cs       \
233         delegate-exit.cs        \
234         finalizer-abort.cs      \
235         finalizer-exception.cs  \
236         finalizer-exit.cs       \
237         main-exit.cs    \
238         main-returns-abort-resetabort.cs        \
239         main-returns-background-abort-resetabort.cs     \
240         main-returns-background-resetabort.cs   \
241         main-returns-background.cs      \
242         main-returns-background-change.cs       \
243         main-returns.cs         \
244         subthread-exit.cs       \
245         desweak.cs              \
246         cominterop.cs           \
247         exists.cs               \
248         handleref.cs    \
249         transparentproxy.cs \
250         imt_big_iface_test.cs \
251         dbnull-missing.cs       \
252         test-type-ctor.cs       \
253         soft-float-tests.cs     \
254         thread-exit.cs          \
255         finalize-parent.cs      \
256         assemblyresolve_event2.2.cs     \
257         interlocked-2.2.cs      \
258         pinvoke-2.2.cs          \
259         bug-78431.2.cs          \
260         bug-79684.2.cs          \
261         catch-generics.2.cs     \
262         event-get.2.cs          \
263         safehandle.2.cs         \
264         stackframes-async.2.cs          \
265         module-cctor-loader.2.cs        \
266         generics-invoke-byref.2.cs      \
267         generic-signature-compare.2.cs  \
268         generics-sharing.2.cs   \
269         shared-generic-methods.2.cs     \
270         shared-generic-synchronized.2.cs        \
271         generic-inlining.2.cs   \
272         generic-initobj.2.cs    \
273         generic-delegate.2.cs   \
274         generic-sizeof.2.cs     \
275         generic-virtual.2.cs    \
276         generic-interface-methods.2.cs  \
277         generic-array-type.2.cs \
278         generic-method-patching.2.cs    \
279         generic-static-methods.2.cs     \
280         generic-null-call.2.cs  \
281         generic-special.2.cs    \
282         generic-exceptions.2.cs \
283         generic-virtual2.2.cs   \
284         generic-valuetype-interface.2.cs        \
285         generic-getgenericarguments.2.cs        \
286         generic-type-builder.2.cs       \
287         generic-synchronized.2.cs       \
288         generic-delegate-ctor.2.cs      \
289         generic-array-iface-set.2.cs    \
290         generic-typedef.2.cs    \
291         generic-marshalbyref.2.cs       \
292         bug-431413.2.cs \
293         bug-459285.2.cs \
294         generic-virtual-invoke.2.cs     \
295         bug-461198.2.cs \
296         generic-sealed-virtual.2.cs     \
297         recursive-generics.2.cs \
298         bug-80392.2.cs          \
299         dynamic-method-access.2.cs      \
300         bug-82194.2.cs  \
301         anonarray.2.cs  \
302         ienumerator-interfaces.2.cs     \
303         array-enumerator-ifaces.2.cs    \
304         generic_type_definition_encoding.2.cs \
305         generic_type_definition.2.cs    \
306         bug-333798.2.cs         \
307         bug-333798-tb.2.cs              \
308         bug-335131.2.cs         \
309         bug-322722_patch_bx.2.cs                \
310         bug-348522.2.cs         \
311         bug-340662_bug.cs       \
312         bug-322722_dyn_method_throw.2.cs        \
313         bug-389886-2.cs \
314         bug-325283.2.cs \
315         thunks.cs \
316         winx64structs.cs \
317         bug-349190.2.cs \
318         nullable_boxing.2.cs    \
319         valuetype-equals.cs     \
320         custom-modifiers.2.cs   \
321         bug-382986.cs   \
322         test-inline-call-stack.cs       \
323         bug-324535.cs   \
324         modules.cs      \
325         bug-81673.cs    \
326         bug-81691.cs    \
327         bug-80307.cs    \
328         bug-415577.cs   \
329         filter-stack.cs \
330         vararg2.cs      \
331         bug-389886-sre-generic-interface-instances.cs   \
332         bug-461867.cs   \
333         bug-461941.cs   \
334         bug-461261.cs   \
335         bug-400716.cs   \
336         bug-462592.cs   \
337         bug-459094.cs
338
339 if AMD64
340 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
341 else
342 if X86
343 TEST_CS_SRC = $(BASE_TEST_CS_SRC) async-exc-compilation.cs
344 else
345 TEST_CS_SRC = $(BASE_TEST_CS_SRC)
346 endif
347 endif
348
349 if IA64
350 TEST_CS_SRC+=async-exc-compilation.cs
351 # bug #319249
352 PLATFORM_DISABLED_TESTS=exception17.exe
353 PLATFORM_DISABLED_TESTS+=winx64structs.exe
354 endif
355
356 if X86
357
358 if PLATFORM_WIN32
359 PLATFORM_DISABLED_TESTS=async-exc-compilation.exe
360 endif
361
362 endif
363
364 if POWERPC
365 # bug #71274
366 PLATFORM_DISABLED_TESTS=finalizer-abort.exe finalizer-exception.exe finalizer-exit.exe
367 endif
368
369 DISABLED_TESTS=                 \
370         delegate-async-exception.exe    \
371         bug-348522.2.exe        \
372         $(PLATFORM_DISABLED_TESTS)
373
374 # These only compile with MS CSC
375 TEST_CSC_SRC=                   \
376         vararg.cs
377
378 TEST_IL_SRC=                    \
379         field-access.il         \
380         method-access.il        \
381         ldftn-access.il         \
382         cpblkTest.il            \
383         vbinterface.il          \
384         calliTest.il            \
385         ckfiniteTest.il         \
386         fault-handler.il                \
387         locallocTest.il         \
388         initblkTest.il          \
389         qt-instance.il          \
390         vararg.il               \
391         bug-29859.il            \
392         bug-78549.il            \
393         static-fields-nonconst.il       \
394         reload-at-bb-end.il     \
395         test-enum-indstoreil.il \
396         filter-bug.il           \
397         even-odd.il             \
398         bug-82022.il    \
399         vt-sync-method.il       \
400         enum_types.il   \
401         invalid-token.il        \
402         call_missing_method.il  \
403         call_missing_class.il   \
404         ldfld_missing_field.il  \
405         ldfld_missing_class.il  \
406         find-method.2.il        \
407         bug-79215.2.il  \
408         bug-79956.2.il  \
409         bug-327438.2.il \
410         bug-387274.2.il \
411         bug-426309.2.il \
412         ldtoken_with_byref_typespec.2.il \
413         resolve_method_bug.2.il \
414         resolve_field_bug.2.il \
415         resolve_type_bug.2.il   \
416         generics-sharing-other-exc.2.il \
417         generic-ldobj.2.il      \
418         generic-mkrefany.2.il   \
419         generic-refanyval.2.il  \
420         generic-ldtoken.2.il    \
421         generic-ldtoken-method.2.il     \
422         generic-ldtoken-field.2.il      \
423         generic-tailcall.2.il   \
424         generic-tailcall2.2.il  \
425         generic-array-exc.2.il  \
426         generic-valuetype-newobj2.2.il  \
427         generic-valuetype-newobj.2.il   \
428         generic-constrained.2.il        \
429         bug-81466.il    \
430         bug457574.il    \
431         bug445361.il    \
432         bug-463303.il
433
434 #       bug-318677.il
435
436 # pre-requisite test sources: files that are not test themselves
437 # but that need to be compiled
438 PREREQ_IL_SRC=event-il.il module-cctor.il
439 PREREQ_CS_SRC=
440 PREREQ_IL_DLL_SRC=event-il.il module-cctor.il
441 PREREQ_CS_DLL_SRC=
442
443 PREREQSI_IL=$(PREREQ_IL_SRC:.il=.exe)
444 PREREQSI_CS=$(PREREQ_CS_SRC:.cs=.exe)
445 TESTSI_CS=$(TEST_CS_SRC:.cs=.exe)
446 TESTSI_IL=$(TEST_IL_SRC:.il=.exe)
447 TESTBS=$(BENCHSRC:.cs=.exe)
448 STRESS_TESTS=$(STRESS_TESTS_SRC:.cs=.exe)
449
450 EXTRA_DIST=test-driver $(TEST_CS_SRC) $(TEST_IL_SRC) \
451         $(BENCHSRC) $(STRESS_TESTS_SRC) stress-runner.pl $(PREREQ_IL_SRC) $(PREREQ_CS_SRC)
452
453 %.exe: %.il
454         $(ILASM) -out:$@ $<
455
456 %.exe: %.cs TestDriver.dll
457         $(MCS) -r:TestDriver.dll -out:$@ $<
458
459 # mkbundle works on ppc, but the pkg-config POC doesn't when run with make test
460 if POWERPC
461 test_platform:
462 else
463 # Can't use mkbundle on win32 since there is no static build there
464 # Can't run test-unhandled-exception on Windows because of all the debug popups...
465 if PLATFORM_WIN32
466 test_platform:
467 else
468 test_platform:  testbundle test-iomap-regression
469 endif
470 endif
471
472 if INSTALL_2_1
473 test_2_1 : test-coreclr-security
474 else
475 test_2_1 :
476 endif
477
478 test: assemblyresolve/test/asm.dll testjit test-type-load test-generic-sharing test_platform test_2_1
479
480 assemblyresolve/test/asm.dll:
481         $(MAKE) -C assemblyresolve prereq
482
483 TestDriver.dll:
484         $(MCS) -target:library -out:$@ $(srcdir)/../mini/TestDriver.cs
485
486 test_cs: $(TEST_PROG) $(TESTSI_CS) libtest.la
487         @failed=0; \
488         passed=0; \
489         for i in $(TESTSI_CS); do       \
490                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
491                 then \
492                         passed=`expr $${passed} + 1`; \
493                 else \
494                         if [ $$? = 2 ]; then break; fi; \
495                         failed=`expr $${failed} + 1`; \
496                 fi \
497         done; \
498         echo; echo ".cs: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
499
500 test_il: $(TEST_PROG) $(TESTSI_IL) libtest.la
501         @failed=0; \
502         passed=0; \
503         for i in $(TESTSI_IL); do       \
504                 if $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i "$(DISABLED_TESTS)" $(RUNTIME_ARGS); \
505                 then \
506                         passed=`expr $${passed} + 1`; \
507                 else \
508                         if [ $$? = 2 ]; then break; fi; \
509                         failed=`expr $${failed} + 1`; \
510                 fi \
511         done; \
512         echo; echo ".il: $${passed} test(s) passed. $${failed} test(s) did not pass."; echo
513
514 testb: $(TEST_PROG) $(TESTBS)
515         for i in $(TESTBS); do  \
516                 $(srcdir)/test-driver '$(with_mono_path) $(TEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS);     \
517         done
518
519 runtest: $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
520         @failed=0; \
521         passed=0; \
522         failed_tests="";\
523         for i in $(TESTSI_CS) $(TESTBS) $(TESTSI_IL); do        \
524                 rm -f $${i}.so; \
525                 if [ x$(AOT) = x1 ]; then $(with_mono_path) $(JITTEST_PROG_RUN) --aot --debug $${i} > /dev/null || exit 1; fi; \
526                 if $(srcdir)/test-driver '$(with_mono_path) $(JITTEST_PROG_RUN)' $$i '$(DISABLED_TESTS)' $(RUNTIME_ARGS); \
527                 then \
528                         passed=`expr $${passed} + 1`; \
529                 else \
530                         if [ $$? = 2 ]; then break; fi; \
531                         failed=`expr $${failed} + 1`; \
532                         failed_tests="$${failed_tests} $$i"; \
533                 fi \
534         done; \
535         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
536         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
537           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
538
539 runtest-managed: test-runner.exe $(TESTSI_CS) $(TESTSI_IL) $(TESTBS) libtest.la $(PREREQSI_IL) $(PREREQSI_CS)
540         @$(RUNTIME) ./test-runner.exe -j a --disabled '$(DISABLED_TESTS)' $(TESTSI_CS) $(TESTBS) $(TESTSI_IL)
541
542 testjit:
543         @$(MAKE) runtest
544
545 testaot:
546         @$(MAKE) AOT=1 runtest
547
548 testtrace:
549         @$(MAKE) RUNTIME_ARGS="$${RUNTIME_ARGS} --trace" runtest
550
551 testinterp:
552         @$(MAKE) JITTEST_PROG_RUN="$(TEST_PROG_RUN)" runtest
553
554 testjitspeed: $(JITTEST_PROG) $(TESTBS)
555         for i in $(TESTBS); do  \
556                 echo $$i;       \
557                 time $(JITTEST_PROG) $$i;       \
558         done
559
560 test-iomap-regression: exists.cs
561         @$(MCS) $(srcdir)/exists.cs -out:exists.exe
562         @echo "Testing exists.exe..."
563         @MONO_IOMAP=all $(RUNTIME) exists.exe
564
565 stresstest: $(STRESS_TESTS)
566         @failed=0; \
567         passed=0; \
568         failed_tests="";\
569         for i in $(STRESS_TESTS); do    \
570                 if $(srcdir)/stress-runner.pl $$i ../mini/mono $(RUNTIME_ARGS); \
571                 then \
572                         passed=`expr $${passed} + 1`; \
573                 else \
574                         if [ $$? = 2 ]; then break; fi; \
575                         failed=`expr $${failed} + 1`; \
576                         failed_tests="$${failed_tests} $$i"; \
577                 fi \
578         done; \
579         echo "$${passed} test(s) passed. $${failed} test(s) did not pass."; \
580         if [ $${failed} != 0 ]; then echo -e "\nFailed tests:\n"; \
581           for i in $${failed_tests}; do echo $${i}; done; exit 1; fi
582
583 testbundle: console.exe
584         @echo "Testing mkbundle..."
585         @$(MKBUNDLE) --static console.exe > mkbundle.stdout
586         @$(with_mono_path) MONO_CFG_DIR=$(mono_cfg_dir) MONO_SHARED_DIR=$(mono_build_root)/runtime ./a.out >> mkbundle.stdout
587         @- rm -rf a.out
588
589 EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
590 test-type-load: TestDriver.dll
591         @$(ILASM) /dll /output:load-missing.dll $(srcdir)/load-missing.il > /dev/null
592         @$(MCS) -t:library -out:t.dll -d:FOUND $(srcdir)/t-missing.cs
593         @$(MCS) -r:TestDriver.dll -r:load-missing.dll -r:t.dll -out:load-exceptions.exe $(srcdir)/load-exceptions.cs
594         @$(MCS) -t:library -out:t.dll $(srcdir)/t-missing.cs
595         @echo "Testing load-exception.exe..."
596         @$(RUNTIME) load-exceptions.exe > load-exceptions.exe.stdout 2> load-exceptions.exe.stderr
597
598 EXTRA_DIST += test-inline-call-stack-library.cs test-inline-call-stack.cs
599 test-inline-call-stack-library.dll: TestDriver.dll $(srcdir)/test-inline-call-stack-library.cs
600         $(MCS) -t:library -out:test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack-library.cs
601 test-inline-call-stack.exe: TestDriver.dll test-inline-call-stack-library.dll $(srcdir)/test-inline-call-stack.cs
602         $(MCS) -r:TestDriver.dll -r:test-inline-call-stack-library.dll -out:test-inline-call-stack.exe $(srcdir)/test-inline-call-stack.cs
603
604 EXTRA_DIST += unhandled-exception-base-configuration.config
605 EXTRA_DIST += unhandled-exception-legacy-configuration.config
606 EXTRA_DIST += unhandled-exception-test-case.2.cs
607 EXTRA_DIST += unhandled-exception-test-runner.2.cs
608 unhandled-exception-test-case.1.cs: unhandled-exception-test-case.2.cs
609         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case.1.cs
610 unhandled-exception-test-case-legacy.1.cs: unhandled-exception-test-case.1.cs
611         cp unhandled-exception-test-case.1.cs unhandled-exception-test-case-legacy.1.cs
612 unhandled-exception-test-case-legacy.2.cs: unhandled-exception-test-case.2.cs
613         cp unhandled-exception-test-case.2.cs unhandled-exception-test-case-legacy.2.cs
614 unhandled-exception-config_files: unhandled-exception-base-configuration.config unhandled-exception-legacy-configuration.config
615         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.1.exe.config
616         cp unhandled-exception-base-configuration.config unhandled-exception-test-case.2.exe.config
617         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.1.exe.config
618         cp unhandled-exception-legacy-configuration.config unhandled-exception-test-case-legacy.2.exe.config
619 unhandled-exception-test-case.1.exe: unhandled-exception-test-case.1.cs
620         $(MCS) /debug unhandled-exception-test-case.1.cs
621 unhandled-exception-test-case-legacy.1.exe: unhandled-exception-test-case-legacy.1.cs
622         $(MCS) /debug unhandled-exception-test-case-legacy.1.cs
623 unhandled-exception-test-case.2.exe: unhandled-exception-test-case.2.cs
624         $(MCS) /debug unhandled-exception-test-case.2.cs
625 unhandled-exception-test-case-legacy.2.exe: unhandled-exception-test-case-legacy.2.cs
626         $(MCS) /debug unhandled-exception-test-case-legacy.2.cs
627 unhandled-exception-test-runner.2.exe: unhandled-exception-test-runner.2.cs
628         $(MCS) /debug unhandled-exception-test-runner.2.cs
629
630 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
631         $(RUNTIME) unhandled-exception-test-runner.2.exe RUNTIME:../mini/mono,GTC:F
632
633 # We use 'test-support-files' to handle an ordering issue between the 'mono/' and 'runtime/' directories
634 bug-80307.exe: $(srcdir)/bug-80307.cs
635         $(MCS) -r:System.Web -out:$@ $(srcdir)/bug-80307.cs
636         cd $(top_builddir)/runtime && $(MAKE) test-support-files
637
638 EXTRA_DIST += bug-81673-interface.cs
639 bug-81673.exe bug-81673-interface.dll: $(srcdir)/bug-81673.cs $(srcdir)/bug-81673-interface.cs
640         $(MCS) -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
641         $(MCS) -out:bug-81673.exe -r:bug-81673-interface.dll $(srcdir)/bug-81673.cs
642         $(MCS) -define:WITH_STOP -target:library -out:bug-81673-interface.dll $(srcdir)/bug-81673-interface.cs
643
644 EXTRA_DIST += bug-81691-a.cs bug-81691-b.cs
645 bug-81691.exe bug-81691-b.dll: $(srcdir)/bug-81691.cs $(srcdir)/bug-81691-a.cs $(srcdir)/bug-81691-b.cs
646         $(MCS) -target:library -out:bug-81691-a.dll $(srcdir)/bug-81691-a.cs
647         $(MCS) -target:library -out:bug-81691-b.dll -r:bug-81691-a.dll $(srcdir)/bug-81691-b.cs
648         $(MCS) -r:bug-81691-b.dll -out:bug-81691.exe $(srcdir)/bug-81691.cs
649         rm -f bug-81691-a.dll
650
651 EXTRA_DIST += bug-81466-lib.il
652 bug-81466-lib.dll: bug-81466-lib.il
653         $(ILASM) /dll /output:bug-81466-lib.dll $(srcdir)/bug-81466-lib.il
654 bug-81466.exe: bug-81466.il bug-81466-lib.dll
655         $(ILASM) /exe /output:bug-81466.exe $(srcdir)/bug-81466.il
656
657 EXTRA_DIST += bug-324535-il.il
658 bug-324535-il.dll : bug-324535-il.il
659         $(ILASM) /dll /output:bug-324535-il.dll $(srcdir)/bug-324535-il.il
660 bug-324535.exe : bug-324535.cs bug-324535-il.dll
661         $(MCS) -r:bug-324535-il.dll -out:bug-324535.exe $(srcdir)/bug-324535.cs
662
663 EXTRA_DIST += make_imt_test.sh
664 imt_big_iface_test.cs: $(srcdir)/make_imt_test.sh
665         $(srcdir)/make_imt_test.sh > imt_big_iface_test.cs
666
667 EXTRA_DIST += custom-modifiers.2.cs custom-modifiers-lib.il
668 custom-modifiers-lib.dll: custom-modifiers-lib.il
669         $(ILASM) /dll /output:custom-modifiers-lib.dll $(srcdir)/custom-modifiers-lib.il
670 custom-modifiers.2.exe: custom-modifiers.2.cs custom-modifiers-lib.dll
671         $(MCS) -r:custom-modifiers-lib.dll -out:custom-modifiers.2.exe $(srcdir)/custom-modifiers.2.cs
672
673 EXTRA_DIST += bug-382986-lib.cs
674 bug-382986-lib.dll: bug-382986-lib.cs
675         $(MCS) -target:library -out:$@ $(srcdir)/bug-382986-lib.cs
676 bug-382986.exe: bug-382986.cs bug-382986-lib.dll
677         $(MCS) -out:$@ -r:bug-382986-lib.dll $(srcdir)/bug-382986.cs
678
679 EXTRA_DIST += coreclr-security.cs
680
681 if INSTALL_2_1
682 coreclr-security.exe : coreclr-security.cs
683         $(SMCS) -out:coreclr-security.exe $(srcdir)/coreclr-security.cs
684
685 test-coreclr-security : coreclr-security.exe
686         @echo "Testing coreclr-security.exe..."
687         @$(RUNTIME21) --security=core-clr-test coreclr-security.exe
688 endif
689
690 EXTRA_DIST += generic-unboxing.2.il
691 generic-unboxing.2.dll : generic-unboxing.2.il
692         $(ILASM) /dll /output:generic-unboxing.2.dll $(srcdir)/generic-unboxing.2.il
693
694 EXTRA_DIST += generic-boxing.2.il
695 generic-boxing.2.dll : generic-boxing.2.il generic-unboxing.2.dll
696         $(ILASM) /dll /output:generic-boxing.2.dll $(srcdir)/generic-boxing.2.il
697
698 EXTRA_DIST += generic-unbox.2.cs
699 generic-unbox.2.exe : generic-unbox.2.cs generic-unboxing.2.dll
700         $(MCS) -r:generic-unboxing.2.dll -out:$@ $(srcdir)/generic-unbox.2.cs
701
702 EXTRA_DIST += generic-box.2.cs
703 generic-box.2.exe : generic-box.2.cs generic-unboxing.2.dll generic-boxing.2.dll
704         $(MCS) -r:generic-unboxing.2.dll,generic-boxing.2.dll -out:$@ $(srcdir)/generic-box.2.cs
705
706 EXTRA_DIST += generic-delegate2.2.cs generic-delegate2-lib.2.il
707 generic-delegate2-lib.2.dll : generic-delegate2-lib.2.il
708         $(ILASM) /dll /output:$@ $(srcdir)/generic-delegate2-lib.2.il
709 generic-delegate2.2.exe : generic-delegate2.2.cs generic-delegate2-lib.2.dll
710         $(MCS) -r:generic-delegate2-lib.2.dll -out:$@ $(srcdir)/generic-delegate2.2.cs
711
712 gshared: test-generic-sharing
713
714 gshared-aot:
715         @$(MAKE) AOT=1 gshared
716
717 test-generic-sharing : generics-sharing.2.exe shared-generic-methods.2.exe      \
718                 shared-generic-synchronized.2.exe generic-initobj.2.exe         \
719                 generics-sharing-other-exc.2.exe generic-box.2.exe              \
720                 generic-unbox.2.exe generic-delegate.2.exe generic-sizeof.2.exe \
721                 generic-ldobj.2.exe generic-mkrefany.2.exe                      \
722                 generic-refanyval.2.exe generic-ldtoken.2.exe                   \
723                 generic-ldtoken-method.2.exe  generic-ldtoken-field.2.exe       \
724                 generic-virtual.2.exe generic-tailcall.2.exe                    \
725                 generic-interface-methods.2.exe generic-array-type.2.exe        \
726                 generic-method-patching.2.exe generic-static-methods.2.exe      \
727                 generic-null-call.2.exe generic-tailcall2.2.exe                 \
728                 generic-array-exc.2.exe generic-special.2.exe                   \
729                 generic-exceptions.2.exe generic-delegate2.2.exe                \
730                 generic-virtual2.2.exe generic-valuetype-interface.2.exe        \
731                 generic-valuetype-newobj.2.exe generic-valuetype-newobj2.2.exe  \
732                 generic-getgenericarguments.2.exe generic-type-builder.2.exe    \
733                 generic-synchronized.2.exe generic-delegate-ctor.2.exe          \
734                 generic-constrained.2.exe bug-431413.2.exe                      \
735                 generic-virtual-invoke.2.exe generic-typedef.2.exe              \
736                 generic-marshalbyref.2.exe bug-459285.2.exe bug-461198.2.exe    \
737                 generic-sealed-virtual.2.exe
738         @for fn in $+ ; do      \
739                 echo "Testing $$fn ...";        \
740                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared                $$fn > $$fn.stdout || exit 1;     \
741                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,shared         $$fn > $$fn.stdout || exit 1;     \
742                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline        $$fn > $$fn.stdout || exit 1;     \
743                 MONO_GENERIC_SHARING=all $(RUNTIME) -O=gshared,-inline,shared $$fn > $fn.stdout || exit 1;      \
744                 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; \
745         done
746
747 EXTRA_DIST += async-exceptions.cs
748 async-exceptions.exe : async-exceptions.cs
749         $(MCS) -out:async-exceptions.exe $(srcdir)/async-exceptions.cs
750 test-async-exceptions : async-exceptions.exe
751         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
752         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
753
754 EXTRA_DIST += modules.cs modules-m1.cs
755 modules-m1.netmodule: modules-m1.cs
756         $(MCS) -out:$@ /target:module $(srcdir)/modules-m1.cs
757 modules.exe: modules.cs modules-m1.netmodule
758         $(MCS) -out:$@ /addmodule:modules-m1.netmodule -r:TestDriver.dll $(srcdir)/modules.cs
759
760 # Useful if mono is compiled with --enable-shared=no
761 patch-libtool:
762         cp "../../libtool" .
763         sed -e 's,build_libtool_libs=no,build_libtool_libs=yes,g' libtool > 2; mv 2 libtool
764         sed -e 's,LIBTOOL =,LIBTOOL2 =,g' Makefile > 2 && echo "LIBTOOL = bash ./libtool" > 1 && cat 1 2 > Makefile
765         touch libtest.c
766
767 noinst_LTLIBRARIES = libtest.la
768
769 INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS)
770
771 if PLATFORM_WIN32
772 # gcc-3.4.4 emits incorrect code when making indirect calls to stdcall functions using a tail call
773 # This shows up when compiling mono_test_marshal_delegate ()
774 libtest_la_CFLAGS=-fno-optimize-sibling-calls
775 # the exported names created by gcc for stdcall functions are missing the leading _, so MS.NET
776 # can't find them. So we use --kill-at to remove the @ suffix as well.
777 libtest_la_LDFLAGS=-no-undefined -rpath `pwd` -Wl,--kill-at
778 else
779 libtest_la_LDFLAGS = -rpath `pwd`
780 endif
781 libtest_la_SOURCES = libtest.c
782 libtest_la_LIBADD = $(glib_libs)
783
784 CLEANFILES = $(TESTSI_CS) $(TESTSI_IL) $(STRESS_TESTS) *.dll *.stdout *.exe stest.dat