aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDaniel Goertzen <[email protected]>2016-05-17 11:30:14 -0500
committerDaniel Goertzen <[email protected]>2016-05-17 11:30:14 -0500
commitdac7b40e7852ef1528a7e62cddf6048a3fde39f4 (patch)
treefcea8d0060477c13b61fda6db4010658a09e37cf /test
parentd2eb8b1cbf3a2d1882c475091f96ddc2ac8e8c00 (diff)
downloaderlang.mk-dac7b40e7852ef1528a7e62cddf6048a3fde39f4.tar.gz
erlang.mk-dac7b40e7852ef1528a7e62cddf6048a3fde39f4.tar.bz2
erlang.mk-dac7b40e7852ef1528a7e62cddf6048a3fde39f4.zip
Add test case demonstrating issue 447.
Erlc will not include_lib() apps that do not have an ebin/ directory. This test case demonstrates that.
Diffstat (limited to 'test')
-rw-r--r--test/core_deps.mk42
1 files changed, 41 insertions, 1 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk
index f145754..490f3d8 100644
--- a/test/core_deps.mk
+++ b/test/core_deps.mk
@@ -1,6 +1,6 @@
# Core: Packages and dependencies.
-CORE_DEPS_CASES = apps apps-conflict apps-deep-conflict apps-dir apps-new-app apps-new-lib apps-new-tpl apps-only autopatch-rebar build-c-8cc build-c-imagejs build-erl build-js dep-commit dir doc fetch-cp fetch-custom fetch-fail-bad fetch-fail-unknown fetch-git fetch-git-submodule fetch-hex fetch-hg fetch-legacy fetch-svn ignore mv mv-rebar no-autopatch no-autopatch-erlang-mk no-autopatch-rebar order-first order-top otp pkg rel search shell skip test
+CORE_DEPS_CASES = apps apps-conflict apps-deep-conflict apps-dir apps-dir-include-lib apps-new-app apps-new-lib apps-new-tpl apps-only autopatch-rebar build-c-8cc build-c-imagejs build-erl build-js dep-commit dir doc fetch-cp fetch-custom fetch-fail-bad fetch-fail-unknown fetch-git fetch-git-submodule fetch-hex fetch-hg fetch-legacy fetch-svn ignore mv mv-rebar no-autopatch no-autopatch-erlang-mk no-autopatch-rebar order-first order-top otp pkg rel search shell skip test
CORE_DEPS_TARGETS = $(addprefix core-deps-,$(CORE_DEPS_CASES))
.PHONY: core-deps $(CORE_DEPS_TARGETS)
@@ -210,6 +210,46 @@ endif
$i "Check that all relevant files were removed"
$t test ! -e $(APP)/deps
+core-deps-apps-dir-include-lib: build clean
+
+ $i "Bootstrap a new OTP library named $(APP)"
+ $t mkdir $(APP)/
+ $t cp ../erlang.mk $(APP)/
+ $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v
+
+ $i "Set a custom APPS_DIR"
+ $t perl -ni.bak -e 'print;if ($$.==1) {print "APPS_DIR ?= \$$(CURDIR)/deep/libs\n"}' $(APP)/Makefile
+
+ $i "Create new libraries boy_app and girl_app"
+ $t $(MAKE) -C $(APP) new-lib in=boy_app $v
+ $t $(MAKE) -C $(APP) new-lib in=girl_app $v
+
+ $i "Generate .erl and .hrl files in apps with mutual include_lib()"
+ $t echo '-module(boy). -include_lib("girl_app/include/girl.hrl").' > $(APP)/deep/libs/boy_app/src/boy.erl
+ $t echo '-module(girl). -include_lib("boy_app/include/boy.hrl").' > $(APP)/deep/libs/girl_app/src/girl.erl
+ $t mkdir -p $(APP)/deep/libs/boy_app/include
+ $t echo '%% boy' > $(APP)/deep/libs/boy_app/include/boy.hrl
+ $t mkdir -p $(APP)/deep/libs/girl_app/include
+ $t echo '%% girl' > $(APP)/deep/libs/girl_app/include/girl.hrl
+
+ $i "Build the application"
+ $t $(MAKE) -C $(APP) $v
+
+ $i "Check that all compiled files exist"
+ $t test -f $(APP)/$(APP).d
+ $t test -f $(APP)/ebin/$(APP).app
+
+ $t test -f $(APP)/deep/libs/boy_app/boy_app.d
+ $t test -f $(APP)/deep/libs/boy_app/ebin/boy_app.app
+ $t test -f $(APP)/deep/libs/boy_app/ebin/boy.beam
+
+ $t test -f $(APP)/deep/libs/girl_app/girl_app.d
+ $t test -f $(APP)/deep/libs/girl_app/ebin/girl_app.app
+ $t test -f $(APP)/deep/libs/girl_app/ebin/girl.beam
+
+ $i "Distclean the application"
+ $t $(MAKE) -C $(APP) distclean $v
+
core-deps-apps-new-app: build clean
$i "Bootstrap a new OTP library named $(APP)"