aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-03-19 12:13:31 +0100
committerLoïc Hoguin <[email protected]>2016-03-19 12:13:31 +0100
commitd52bf8576c3b38e5219b361ee58c960a30225c4b (patch)
tree3d5aedd216942eb4b7f25402300e695829ec7ff0 /test
parent6e5ff123aeb78e8bbb5092b83577ffdfb5feb9b3 (diff)
parent8a69d434d90a1d971834ac4c81f060e9702b1252 (diff)
downloaderlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.tar.gz
erlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.tar.bz2
erlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.zip
Merge branch 'multi_app_ct' of https://github.com/ingwinlu/erlang.mk
Diffstat (limited to 'test')
-rw-r--r--test/plugin_ct.mk13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/plugin_ct.mk b/test/plugin_ct.mk
index dd36801..c32fa36 100644
--- a/test/plugin_ct.mk
+++ b/test/plugin_ct.mk
@@ -63,6 +63,12 @@ ct-apps-only: build clean
$i "Create a new library named my_lib"
$t $(MAKE) -C $(APP) new-lib in=my_lib $v
+ $i "Populate my_lib"
+ $t printf "%s\n" \
+ "-module(my_lib)." \
+ "-export([random_int/0])." \
+ "random_int() -> 4." > $(APP)/apps/my_lib/src/my_lib.erl
+
$i "Check that Common Test detects no tests"
$t $(MAKE) -C $(APP) ct | grep -q "Nothing to be done for 'ct'."
@@ -70,9 +76,10 @@ ct-apps-only: build clean
$t mkdir $(APP)/apps/my_app/test
$t printf "%s\n" \
"-module(my_app_SUITE)." \
- "-export([all/0, ok/1])." \
- "all() -> [ok]." \
- "ok(_) -> ok." > $(APP)/apps/my_app/test/my_app_SUITE.erl
+ "-export([all/0, ok/1, call_my_lib/1])." \
+ "all() -> [ok, call_my_lib]." \
+ "ok(_) -> ok." \
+ "call_my_lib(_) -> 4 = my_lib:random_int()." > $(APP)/apps/my_app/test/my_app_SUITE.erl
$i "Generate a Common Test suite in my_lib"
$t mkdir $(APP)/apps/my_lib/test