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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-11-16 17:43:38 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-11-16 17:43:38 +0300
commitd3a72be7e85e88eb17ecdbd4dab0448b725ea494 (patch)
treee477cd722130556c431b80ca0bcc096aff38b5fe /acceptance-tests
parentf4ecb2dd0622034b5412112c5e4d6344104c589f (diff)
[acceptance-tests] Add dependency on nunitlite.dll
nunitlite.dll is not built anymore with a normal Mono build so we need to depend on it explicitly.
Diffstat (limited to 'acceptance-tests')
-rw-r--r--acceptance-tests/ms-test-suite.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/acceptance-tests/ms-test-suite.mk b/acceptance-tests/ms-test-suite.mk
index ed27e274a21..1516dc61db6 100644
--- a/acceptance-tests/ms-test-suite.mk
+++ b/acceptance-tests/ms-test-suite.mk
@@ -1,4 +1,4 @@
-check-ms-test-suite:
+check-ms-test-suite: $(CLASS)/nunitlite.dll
@if $(MAKE) validate-ms-test-suite RESET_VERSIONS=1; then \
$(MAKE) -C $(MSTESTSUITE_PATH)/conformance build MCS="$(MCS) -debug -t:library -warn:1 -r:$(CLASS)/nunitlite.dll" && \
$(MAKE) -C $(MSTESTSUITE_PATH)/conformance run NUNIT-CONSOLE="$(RUNTIME) $(CLASS)/nunit-lite-console.exe -exclude=MonoBug,BadTest -format:nunit2" NUNIT_XML_RESULT="-result:$(abs_top_builddir)/acceptance-tests/TestResult-ms-test-suite-conformance.xml" || EXIT_CODE=1; \
@@ -8,3 +8,6 @@ check-ms-test-suite:
else \
echo "*** [ms-test-suite] Getting the repository failed, you probably don't have access to this Xamarin-internal resource. Skipping."; \
fi
+
+$(CLASS)/nunitlite.dll:
+ $(MAKE) -C $(mcs_topdir)/tools/nunit-lite