X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fbuild%2Ftests.make;h=054de2582a1750be5601bc6fb4bc377464e07e5b;hb=411a37af27905eaa44dac1a31f6387a11c0b0244;hp=d9f6a95ff72b5d1653e3a0f809d994029c3ee5cf;hpb=7bd7446abcbe2c93be78fd97221dcddaeb92d653;p=mono.git diff --git a/mcs/build/tests.make b/mcs/build/tests.make index d9f6a95ff72..054de2582a1 100644 --- a/mcs/build/tests.make +++ b/mcs/build/tests.make @@ -20,8 +20,19 @@ TEST_RUNTIME_WRAPPERS_PATH = $(shell dirname $(RUNTIME))/_tmpinst/bin ifndef NO_TEST test_nunit_lib = nunitlite.dll +xunit_core := xunit.core xunit.abstractions xunit.assert Xunit.NetCore.Extensions +xunit_deps := System.Runtime +xunit_src := $(patsubst %,$(topdir)/../external/xunit-binaries/%,BenchmarkAttribute.cs BenchmarkDiscover.cs) $(topdir)/../mcs/class/test-helpers/PlatformDetection.cs +xunit_class_deps := + +xunit_libs_ref = $(patsubst %,-r:$(topdir)/../external/xunit-binaries/%.dll,$(xunit_core)) +xunit_libs_ref += $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/Facades/%.dll,$(xunit_deps)) + +xunit_libs_dep = $(xunit_class_deps:%=$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)%.dll) +xunit_libs_ref += $(xunit_libs_dep:%=-r:%) TEST_LIB_MCS_FLAGS = $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/%.dll,$(TEST_LIB_REFS)) +XTEST_LIB_MCS_FLAGS = $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE)/%.dll,$(XTEST_LIB_REFS)) test_nunit_dep = $(test_nunit_lib:%=$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)%) test_nunit_ref = $(test_nunit_dep:%=-r:%) @@ -34,6 +45,7 @@ test_sourcefile = $(ASSEMBLY:$(ASSEMBLY_EXT)=_test.dll.sources) endif test_lib = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_test.dll) + test_sourcefile_excludes = $(test_lib).exclude.sources test_pdb = $(test_lib:.dll=.pdb) @@ -42,12 +54,28 @@ test_makefrag = $(depsdir)/$(test_lib).makefrag test_flags = -r:$(the_assembly) $(test_nunit_ref) $(TEST_MCS_FLAGS) $(TEST_LIB_MCS_FLAGS) tests_CLEAN_FILES += $(ASSEMBLY:$(ASSEMBLY_EXT)=_test*.dll) $(ASSEMBLY:$(ASSEMBLY_EXT)=_test*.pdb) $(test_response) $(test_makefrag) +xtest_sourcefile = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_xtest.dll.sources) + + +xunit_test_lib = $(PROFILE)_$(ASSEMBLY:$(ASSEMBLY_EXT)=_xunit-test.dll) + +xtest_response = $(depsdir)/$(xunit_test_lib).response +xtest_makefrag = $(depsdir)/$(xunit_test_lib).makefrag +xtest_flags = -r:$(the_assembly) $(xunit_libs_ref) $(XTEST_MCS_FLAGS) $(XTEST_LIB_MCS_FLAGS) + +ifeq ($(wildcard $(xtest_sourcefile)),) +xtest_sourcefile = $(ASSEMBLY:$(ASSEMBLY_EXT)=_xtest.dll.sources) +tests_CLEAN_FILES += $(xunit_test_lib) $(xtest_response) $(xtest_makefrag) +endif + ifndef HAVE_CS_TESTS HAVE_CS_TESTS := $(wildcard $(test_sourcefile)) endif HAVE_SOURCE_EXCLUDES := $(wildcard $(test_sourcefile_excludes)) +HAVE_CS_XTESTS := $(wildcard $(xtest_sourcefile)) + endif # !NO_TEST ifndef NO_TEST @@ -61,6 +89,7 @@ endif echo "stamp" >$@ tests_CLEAN_FILES += $(topdir)/build/deps/nunit-$(PROFILE).stamp + endif test_assemblies := @@ -75,7 +104,7 @@ test-local: $(test_assemblies) run-test-local: run-test-lib run-test-ondotnet-local: run-test-ondotnet-lib -TEST_HARNESS_EXCLUDES = -exclude=$(PLATFORM_TEST_HARNESS_EXCLUDES)$(PROFILE_TEST_HARNESS_EXCLUDES)NotWorking,ValueAdd,CAS,InetAccess +TEST_HARNESS_EXCLUDES = -exclude=$(PLATFORM_TEST_HARNESS_EXCLUDES)$(PROFILE_TEST_HARNESS_EXCLUDES)NotWorking,CAS TEST_HARNESS_EXCLUDES_ONDOTNET = /exclude:$(PLATFORM_TEST_HARNESS_EXCLUDES)$(PROFILE_TEST_HARNESS_EXCLUDES)NotDotNet,CAS NOSHADOW_FLAG = @@ -157,6 +186,57 @@ $(test_makefrag): $(test_response) -include $(test_makefrag) +build-test-lib: $(test_lib) + @echo Building testing lib + +endif + + +ifdef HAVE_CS_XTESTS + +XTEST_HARNESS_PATH = $(topdir)/../external/xunit-binaries +XTEST_HARNESS = $(XTEST_HARNESS_PATH)/xunit.console.exe +XTEST_HARNESS_FLAGS := -noappdomain -noshadow -parallel none -nunit TestResult-$(PROFILE)-xunit.xml +XTEST_TRAIT := -notrait category=failing -notrait category=nonnetcoreapptests -notrait Benchmark=true -notrait category=outerloop + +ifdef FIXTURE +XTEST_HARNESS_FLAGS += -class $(FIXTURE) endif +ifdef TESTNAME +XTEST_HARNESS_FLAGS += -method $(TESTNAME) +endif + +check: run-xunit-test-local +run-xunit-test: run-xunit-test-local +xunit-test-local: $(xunit_test_lib) +run-xunit-test-local: run-xunit-test-lib + +# cp -rf is a HACK for xunit runner to require xunit.execution.desktop.dll file in local folder on .net only +run-xunit-test-lib: xunit-test-local + @cp -rf $(XTEST_HARNESS_PATH)/xunit.execution.desktop.dll xunit.execution.desktop.dll + ok=:; \ + PATH="$(TEST_RUNTIME_WRAPPERS_PATH):$(PATH)" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(AOT_RUN_FLAGS) $(XTEST_HARNESS) $(xunit_test_lib) $(XTEST_HARNESS_FLAGS) $(XTEST_TRAIT) || ok=false; \ + $$ok + @rm -f xunit.execution.desktop.dll + +$(xunit_test_lib): $(the_assembly) $(xtest_response) $(xunit_libs_dep) $(xunit_src) + $(TEST_COMPILE) $(LIBRARY_FLAGS) $(XTEST_LIB_FLAGS) -target:library -out:$@ $(xtest_flags) @$(xtest_response) $(xunit_src) + +xtest_response_preprocessed = $(xtest_response)_preprocessed + +# This handles .excludes/.sources pairs, as well as resolving the +# includes that occur in .sources files +$(xtest_response): $(xtest_sourcefile) + $(SHELL) $(topdir)/build/gensources.sh $@ '$(xtest_sourcefile)' '$(xtest_sourcefile_excludes)' + +$(xtest_makefrag): $(xtest_response) + @echo Creating $@ ... + @sed 's,^,$(xunit_test_lib): ,' $< >$@ + +-include $(xtest_makefrag) + +endif + + .PHONY: patch-nunitlite-appconfig