Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcos Henrich <marcos.henrich@xamarin.com>2016-08-05 16:44:51 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-10-29 15:09:31 +0300
commita0f51a380344065651abb0d07763350303680247 (patch)
tree79e8128796f682cb224724b5a8f4fefbbcdc5223 /mcs/class/System.Data.Linq
parentf588b336fcb5e0e69cb3c37487711f2452fb1f7a (diff)
[bcl] Replace nunit24 with nunit-lite
Get rid of TEST_HARNESS_VERBOSE and enable verbose logging by default nunit-lite doesn't have the "dot when test runs" progress indicator anymore, so we need to enable "verbose" output by default otherwise we don't get any progress until the test run is over. Also remove the TestResult_$(PROFILE).log and nunit-summary.xsl files, they're not needed anymore.
Diffstat (limited to 'mcs/class/System.Data.Linq')
-rw-r--r--mcs/class/System.Data.Linq/build/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/mcs/class/System.Data.Linq/build/Makefile b/mcs/class/System.Data.Linq/build/Makefile
index bf28637588c..27b0c9e70c8 100644
--- a/mcs/class/System.Data.Linq/build/Makefile
+++ b/mcs/class/System.Data.Linq/build/Makefile
@@ -32,8 +32,7 @@ $(sqlite_tests): $(sqlite_tests_dep)
test-sqlite: $(sqlite_tests)
RUN_TEST_COMMAND = \
- MONO_REGISTRY_PATH="$(HOME)/.mono/registry" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(TEST_HARNESS) $(1) -noshadow $(TEST_HARNESS_FLAGS) $(LOCAL_TEST_HARNESS_FLAGS) $(TEST_HARNESS_EXCLUDES) $(TEST_HARNESS_OUTPUT) -xml=TestResult-$(1:.dll=)-$(PROFILE).xml -out:TestResult-$(1:.dll=)-$(PROFILE).out $(FIXTURE_ARG) $(TESTNAME_ARG) ; \
- xsltproc $(topdir)/build/nunit-summary.xsl TestResult-$(1)-$(PROFILE).xml > TestResult-$(1:.dll=)-$(PROFILE).log
+ MONO_REGISTRY_PATH="$(HOME)/.mono/registry" $(TEST_RUNTIME) $(RUNTIME_FLAGS) $(TEST_HARNESS) $(1) -noshadow $(TEST_HARNESS_FLAGS) $(LOCAL_TEST_HARNESS_FLAGS) $(TEST_HARNESS_EXCLUDES) $(TEST_HARNESS_OUTPUT) -xml=TestResult-$(1:.dll=)-$(PROFILE).xml -out:TestResult-$(1:.dll=)-$(PROFILE).out $(FIXTURE_ARG) $(TESTNAME_ARG) ;
run-test-sqlite:
$(call RUN_TEST_COMMAND,$(sqlite_tests))