|
@ -25,7 +25,8 @@ |
|
|
only_default_transitive_deps/1, |
|
|
only_default_transitive_deps/1, |
|
|
clean_all/1, |
|
|
clean_all/1, |
|
|
override_deps/1, |
|
|
override_deps/1, |
|
|
profile_override_deps/1]). |
|
|
|
|
|
|
|
|
profile_override_deps/1, |
|
|
|
|
|
build_more_sources/1]). |
|
|
|
|
|
|
|
|
-include_lib("common_test/include/ct.hrl"). |
|
|
-include_lib("common_test/include/ct.hrl"). |
|
|
-include_lib("eunit/include/eunit.hrl"). |
|
|
-include_lib("eunit/include/eunit.hrl"). |
|
@ -54,7 +55,7 @@ all() -> |
|
|
dont_recompile_yrl_or_xrl, delete_beam_if_source_deleted, |
|
|
dont_recompile_yrl_or_xrl, delete_beam_if_source_deleted, |
|
|
deps_in_path, checkout_priority, highest_version_of_pkg_dep, |
|
|
deps_in_path, checkout_priority, highest_version_of_pkg_dep, |
|
|
parse_transform_test, erl_first_files_test, mib_test, only_default_transitive_deps, |
|
|
parse_transform_test, erl_first_files_test, mib_test, only_default_transitive_deps, |
|
|
clean_all, override_deps, profile_override_deps]. |
|
|
|
|
|
|
|
|
clean_all, override_deps, profile_override_deps, build_more_sources]. |
|
|
|
|
|
|
|
|
build_basic_app(Config) -> |
|
|
build_basic_app(Config) -> |
|
|
AppDir = ?config(apps, Config), |
|
|
AppDir = ?config(apps, Config), |
|
@ -631,3 +632,31 @@ profile_override_deps(Config) -> |
|
|
Config, RebarConfig, ["as", "a", "compile"], |
|
|
Config, RebarConfig, ["as", "a", "compile"], |
|
|
{ok, [{dep, "some_dep"},{dep_not_exist, "other_dep"}]} |
|
|
{ok, [{dep, "some_dep"},{dep_not_exist, "other_dep"}]} |
|
|
). |
|
|
). |
|
|
|
|
|
|
|
|
|
|
|
build_more_sources(Config) -> |
|
|
|
|
|
AppDir = ?config(apps, Config), |
|
|
|
|
|
|
|
|
|
|
|
ASrc = <<"-module(a_src).\n-export([ok/0]).\nok() -> ok.\n">>, |
|
|
|
|
|
BSrc = <<"-module(b_src).\n-export([ok/0]).\nok() -> ok.\n">>, |
|
|
|
|
|
CSrc = <<"-module(c_src).\n-export([ok/0]).\nok() -> ok.\n">>, |
|
|
|
|
|
|
|
|
|
|
|
ok = filelib:ensure_dir(filename:join([AppDir, "more", "dummy"])), |
|
|
|
|
|
ok = filelib:ensure_dir(filename:join([AppDir, "ebin", "dummy"])), |
|
|
|
|
|
ok = file:write_file(filename:join([AppDir, "more", "a_src.erl"]), ASrc), |
|
|
|
|
|
ok = file:write_file(filename:join([AppDir, "more", "b_src.erl"]), BSrc), |
|
|
|
|
|
ok = file:write_file(filename:join([AppDir, "more", "c_src.erl"]), CSrc), |
|
|
|
|
|
|
|
|
|
|
|
Opts = dict:new(), |
|
|
|
|
|
|
|
|
|
|
|
rebar_erlc_compiler:compile(Opts, |
|
|
|
|
|
filename:join([AppDir, "more"]), |
|
|
|
|
|
filename:join([AppDir, "ebin"]), |
|
|
|
|
|
[filename:join([AppDir, "more", "a_src.erl"]), |
|
|
|
|
|
filename:join([AppDir, "more", "b_src.erl"]), |
|
|
|
|
|
filename:join([AppDir, "more", "c_src.erl"])]), |
|
|
|
|
|
|
|
|
|
|
|
EbinDir = filename:join([AppDir, "ebin"]), |
|
|
|
|
|
true = filelib:is_file(filename:join([EbinDir, "a_src.beam"])), |
|
|
|
|
|
true = filelib:is_file(filename:join([EbinDir, "b_src.beam"])), |
|
|
|
|
|
true = filelib:is_file(filename:join([EbinDir, "c_src.beam"])). |
|
|
|
|
|
|