aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-01-09 14:24:18 +0100
committerLoïc Hoguin <[email protected]>2016-01-09 14:24:18 +0100
commitc512f49ad95c2cffae1de9b80f49228d3430e988 (patch)
tree71d4db7b6bc485182a8a631d8efc52062af7b44c /test/Makefile
parentcc78f53af903f4e8fad8ac24fcede593ab8f6651 (diff)
downloaderlang.mk-c512f49ad95c2cffae1de9b80f49228d3430e988.tar.gz
erlang.mk-c512f49ad95c2cffae1de9b80f49228d3430e988.tar.bz2
erlang.mk-c512f49ad95c2cffae1de9b80f49228d3430e988.zip
Remove legacy EDoc tests
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile27
1 files changed, 2 insertions, 25 deletions
diff --git a/test/Makefile b/test/Makefile
index 728d751..f01e3ab 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -303,9 +303,9 @@ endef
# The following tests are slowly being converted.
# Do NOT use -j with legacy tests.
-.PHONY: legacy clean-legacy tests-cover docs
+.PHONY: legacy clean-legacy tests-cover
-legacy: clean-legacy tests-cover docs pkgs
+legacy: clean-legacy tests-cover
clean-legacy:
$t rm -rf app1
@@ -345,29 +345,6 @@ tests-cover: app1
$t $(MAKE) -C app1 clean $v
$i "Test 'tests-cover' passed."
-docs: app1
- $i "docs: Testing EDoc including DOC_DEPS."
- $t printf "%s\n" \
- "PROJECT = app1" \
- "DOC_DEPS = edown" \
- "dep_edown = git https://github.com/uwiger/edown.git 0.7" \
- "EDOC_OPTS = {doclet, edown_doclet}" \
- "include erlang.mk" \
- "distclean:: distclean-doc-md" \
- "distclean-doc-md:" \
- " rm -rf doc/*.md" \
- > app1/Makefile-doc
- $i "Downloading doc deps (edown) and building docs."
- $t $(MAKE) -C app1 -f Makefile-doc docs $v
- $i "Checking that '$(MAKE) docs' using edown generated a markdown file."
- $t [ -e app1/doc/m.md ]
- $i "Checking that '$(MAKE) distclean' deletes all generated doc files."
- $t $(MAKE) -C app1 -f Makefile-doc distclean $v
- $t [ "`ls app1/doc/`" = "" ]
- $i "Cleaning up test data."
- $t rm app1/Makefile-doc
- $i "Test 'docs' passed."
-
define app1_setup
$i "Setting up app."
$t mkdir -p app1