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>2015-10-20 16:14:34 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-10-20 16:14:54 +0300
commited2224dd51d1eb08f2ef88d43fce2d5de73c08c6 (patch)
tree893a4032d57b8a661eb74f8dd6df44ff0e28c36e /acceptance-tests
parent35a0f8b5c37c647ad9edbbe6453237f2c685c24a (diff)
[acceptance-tests] Fix tarball build and rename "check" target to "check-full"
The acceptance-tests folder wasn't getting included in the tarball, adding the folder to the SUBDIRS in the top-level Makefile.am fixes this. Additionally, EXTRA_DISTFILES doesn't work outside of mcs/ so rename it to EXTRA_DIST. Since we don't want a top-level "make check" to recurse into acceptance-tests just yet, rename the check target to check-full so nothing gets run by default.
Diffstat (limited to 'acceptance-tests')
-rw-r--r--acceptance-tests/Makefile.am4
-rw-r--r--acceptance-tests/README.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/acceptance-tests/Makefile.am b/acceptance-tests/Makefile.am
index 4e75d485aac..8642c2b896b 100644
--- a/acceptance-tests/Makefile.am
+++ b/acceptance-tests/Makefile.am
@@ -5,9 +5,9 @@ MSTESTSUITE_PATH=$(TOP)/../ms-test-suite
include versions.mk
-EXTRA_DISTFILES=README.md SUBMODULES.json versions.mk versions.py
+EXTRA_DIST=README.md SUBMODULES.json versions.mk versions.py
-check: check-roslyn check-coreclr check-ms-test-suite
+check-full: check-roslyn check-coreclr check-ms-test-suite
CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
diff --git a/acceptance-tests/README.md b/acceptance-tests/README.md
index 5a25caebd7c..3ca8102a228 100644
--- a/acceptance-tests/README.md
+++ b/acceptance-tests/README.md
@@ -1,4 +1,4 @@
-This directory contains acceptance tests, handled by optional non git submodule based submodules. Run the tests via "make check".
+This directory contains acceptance tests, handled by optional non git submodule based submodules. Run the tests via "make check-full" (there are also targets for individual test suites).
The SUBMODULES.json file stores information about the submodules, and make targets are used to check out submodules, check their versions, and update the submodule information.