6bdd276d05
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
14 lines
943 B
Makefile
14 lines
943 B
Makefile
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:portable -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; \
|
|
$(MAKE) -C $(MSTESTSUITE_PATH)/systemruntimebringup build MCS="$(MCS) -debug:portable -warn:1" && \
|
|
$(MAKE) -C $(MSTESTSUITE_PATH)/systemruntimebringup run MONO="$(RUNTIME)" || EXIT_CODE=1; \
|
|
exit $$EXIT_CODE; \
|
|
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
|