aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornevar <[email protected]>2016-08-06 00:12:26 +0700
committerLoïc Hoguin <[email protected]>2016-10-19 17:51:57 +0200
commitfc7f6acd00331b09217fe733b89c620771fdabd5 (patch)
treefa7340acdaf4e76e57748bf70f5e7e782f5660c4 /test
parent01ed1866afdbdfaa966bf5be5aab30d6525aa962 (diff)
downloaderlang.mk-fc7f6acd00331b09217fe733b89c620771fdabd5.tar.gz
erlang.mk-fc7f6acd00331b09217fe733b89c620771fdabd5.tar.bz2
erlang.mk-fc7f6acd00331b09217fe733b89c620771fdabd5.zip
Add PROJECT_ENV
Fix #587
Diffstat (limited to 'test')
-rw-r--r--test/core_app.mk36
1 files changed, 35 insertions, 1 deletions
diff --git a/test/core_app.mk b/test/core_app.mk
index 22424ee..e568947 100644
--- a/test/core_app.mk
+++ b/test/core_app.mk
@@ -1,6 +1,6 @@
# Core: Building applications.
-CORE_APP_CASES = appsrc-change asn1 auto-git-id erlc-exclude erlc-opts erlc-opts-filter error generate-erl generate-erl-include generate-erl-prepend hrl hrl-recursive makefile-change mib no-app no-makedep project-mod pt pt-erlc-opts xrl xrl-include yrl yrl-header yrl-include
+CORE_APP_CASES = appsrc-change asn1 auto-git-id env erlc-exclude erlc-opts erlc-opts-filter error generate-erl generate-erl-include generate-erl-prepend hrl hrl-recursive makefile-change mib no-app no-makedep project-mod pt pt-erlc-opts xrl xrl-include yrl yrl-header yrl-include
CORE_APP_TARGETS = $(addprefix core-app-,$(CORE_APP_CASES))
.PHONY: core-app $(CORE_APP_TARGETS)
@@ -197,6 +197,40 @@ endif
true = ID =/= [], \
halt()"
+ifndef LEGACY
+core-app-env: 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 "Define PROJECT_ENV"
+ $t echo "PROJECT_ENV = [{test_key, test_value}]" >> $(APP)/Makefile
+
+ $i "Build the application"
+ $t $(MAKE) -C $(APP) $v
+
+ $i "Check that the application was compiled correctly"
+ $t $(ERL) -pa $(APP)/ebin/ -eval " \
+ ok = application:load($(APP)), \
+ {ok, test_value} = application:get_env($(APP), test_key), \
+ halt()"
+
+ $i "Define PROJECT_ENV with escape in string, special char"
+ $t echo "PROJECT_ENV = [{test_atom, '\\\$$\$$test'}, {test_key, \"\\\"test_\\tvalue\\\"\"}]" >> $(APP)/Makefile
+
+ $i "Build the application"
+ $t $(MAKE) -C $(APP) $v
+
+ $i "Check that the application was compiled correctly"
+ $t $(ERL) -pa $(APP)/ebin/ -eval " \
+ ok = application:load($(APP)), \
+ {ok, \"\\\"test_\\tvalue\\\"\"} = application:get_env($(APP), test_key), \
+ {ok, '\\\$$test'} = application:get_env($(APP), test_atom), \
+ halt()"
+endif
+
core-app-erlc-exclude: build clean
$i "Bootstrap a new OTP library named $(APP)"