mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 11:09:55 +00:00
Adding another transitive dep test
--HG-- extra : rebase_source : 1998dc102f89c3c809d5146c800218b5c5b6cba9
This commit is contained in:
parent
166adf4029
commit
45c5956f21
7 changed files with 72 additions and 0 deletions
4
inttest/tdeps2/a.erl
Normal file
4
inttest/tdeps2/a.erl
Normal file
|
@ -0,0 +1,4 @@
|
|||
-module({{module}}).
|
||||
|
||||
-include_lib("b/include/b.hrl").
|
||||
|
2
inttest/tdeps2/a.rebar.config
Normal file
2
inttest/tdeps2/a.rebar.config
Normal file
|
@ -0,0 +1,2 @@
|
|||
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
||||
|
3
inttest/tdeps2/b.hrl
Normal file
3
inttest/tdeps2/b.hrl
Normal file
|
@ -0,0 +1,3 @@
|
|||
|
||||
-include_lib("c/include/c.hrl").
|
||||
|
2
inttest/tdeps2/b.rebar.config
Normal file
2
inttest/tdeps2/b.rebar.config
Normal file
|
@ -0,0 +1,2 @@
|
|||
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
||||
|
2
inttest/tdeps2/c.hrl
Normal file
2
inttest/tdeps2/c.hrl
Normal file
|
@ -0,0 +1,2 @@
|
|||
-define(HELLO, hello).
|
||||
|
2
inttest/tdeps2/root.rebar.config
Normal file
2
inttest/tdeps2/root.rebar.config
Normal file
|
@ -0,0 +1,2 @@
|
|||
{sub_dirs, ["apps/a1",
|
||||
"apps/a2"]}.
|
57
inttest/tdeps2/tdeps2_rt.erl
Normal file
57
inttest/tdeps2/tdeps2_rt.erl
Normal file
|
@ -0,0 +1,57 @@
|
|||
-module(tdeps2_rt).
|
||||
|
||||
-compile(export_all).
|
||||
|
||||
%% Exercise transitive dependencies where there are multiple files
|
||||
%% depending on the same set of deps
|
||||
%% [A1, A2] -> B -> C ; A1 and A2 includes B.hrl which includes C.hrl
|
||||
|
||||
files() ->
|
||||
[
|
||||
%% A1 application
|
||||
{create, "apps/a1/ebin/a1.app", app(a1)},
|
||||
{copy, "a.rebar.config", "apps/a1/rebar.config"},
|
||||
{template, "a.erl", "apps/a1/src/a1.erl", dict:from_list([{module, a1}])},
|
||||
|
||||
%% A2 application
|
||||
{create, "apps/a2/ebin/a2.app", app(a2)},
|
||||
{copy, "a.rebar.config", "apps/a2/rebar.config"},
|
||||
{template, "a.erl", "apps/a2/src/a2.erl", dict:from_list([{module, a2}])},
|
||||
|
||||
{copy, "root.rebar.config", "rebar.config"},
|
||||
{copy, "../../rebar", "rebar"},
|
||||
|
||||
%% B application
|
||||
{create, "repo/b/ebin/b.app", app(b)},
|
||||
{copy, "b.rebar.config", "repo/b/rebar.config"},
|
||||
{copy, "b.hrl", "repo/b/include/b.hrl"},
|
||||
|
||||
%% C application
|
||||
{create, "repo/c/ebin/c.app", app(c)},
|
||||
{copy, "c.hrl", "repo/c/include/c.hrl"}
|
||||
].
|
||||
|
||||
run(_Dir) ->
|
||||
%% Initialize the b/c apps as mercurial repos so that dependencies pull
|
||||
%% properly
|
||||
HgCmd = "/bin/sh -c \"hg init && hg add && hg commit -m 'Initial commit'\"",
|
||||
{ok, _} = retest_sh:run(HgCmd, [{dir, "repo/b"}]),
|
||||
{ok, _} = retest_sh:run(HgCmd, [{dir, "repo/c"}]),
|
||||
|
||||
|
||||
{ok, _} = retest_sh:run("./rebar -v get-deps compile", []),
|
||||
ok.
|
||||
|
||||
|
||||
|
||||
%%
|
||||
%% Generate the contents of a simple .app file
|
||||
%%
|
||||
app(Name) ->
|
||||
App = {application, Name,
|
||||
[{description, atom_to_list(Name)},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{applications, [kernel, stdlib]}]},
|
||||
io_lib:format("~p.\n", [App]).
|
Loading…
Reference in a new issue