1 with_mono_path = MONO_PATH=$(mcs_topdir)/class/lib/net_1_1
2 with_mono_path2 = MONO_PATH=$(mcs_topdir)/class/lib/net_2_0
4 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper --debug --security
5 RUNTIME2 = $(with_mono_path2) $(top_builddir)/runtime/mono-wrapper --debug --security
10 SUBDIRS = assembly linkdemand inheritance demand threads
12 # Uncomment this for these tests to be for for 'make check'
18 for i in $(SUBDIRS); do \
21 if [ "$$?" != "0" ]; then \
22 failed=`expr $${failed} + 1`; \
23 failed_tests="$${failed_tests} $$i"; \
27 if [ "$${failed}" == "0" ]; then \
28 echo -e "Perfect score :-)"; \
30 echo -e "Failure(s) in category:"; \
31 for i in $${failed_tests}; \
32 do echo -e "\t$${i}"; \