[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono-project.git] / mcs / tools / monop / Makefile
blob4e84d9916fa15b756445b5148fe51d1faa292c17
1 thisdir = tools/monop
2 SUBDIRS =
3 include ../../build/rules.make
5 PROGRAM = monop.exe
6 LOCAL_MCS_FLAGS += -d:NO_AUTHENTICODE,STATIC,NO_SYMBOL_WRITER
7 LIB_REFS = System
9 CLEAN_FILES = monop.exe monop2.exe *.mdb
11 include ../../build/executable.make
13 run-test-local : basic-tests
15 basic-tests:
16 for type in System.Array System.String 'System.Collections.Generic.List`1'; do \
17 echo $$type; MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(build_lib) $$type >/dev/null || exit 1; done