From 286a2a88a4d769b702529d184661c4166854f27e Mon Sep 17 00:00:00 2001 From: Tim Watson Date: Sun, 18 Sep 2011 13:38:31 +0100 Subject: Add support for customising common test directory This patch allows users to specify the directory in which common_test source files can be found. Most common_test suites are integration, rather than unit tests and keeping the sources apart from test sources for other frameworks such as eunit and PropEr is a useful feature. --- src/rebar_ct.erl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl index 54e97e9..70524af 100644 --- a/src/rebar_ct.erl +++ b/src/rebar_ct.erl @@ -46,7 +46,8 @@ %% =================================================================== ct(Config, File) -> - run_test_if_present("test", Config, File). + TestDir = rebar_config:get_local(Config, ct_dir, "test"), + run_test_if_present(TestDir, Config, File). %% =================================================================== %% Internal functions -- cgit v1.1