summaryrefslogtreecommitdiff
path: root/inttest/tdeps3
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-08-30 22:14:48 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-30 22:16:30 -0500
commit21f47438614a0d50caf20801c4440d54d12c3f20 (patch)
tree054cda8b6a40d577b77d950bce898755f81962b7 /inttest/tdeps3
parentac0d726bb8c21eca3b883f7c47e42cdea02b5a3f (diff)
remove more code that can be brought back later if needed
Diffstat (limited to 'inttest/tdeps3')
-rw-r--r--inttest/tdeps3/a.erl3
-rw-r--r--inttest/tdeps3/a.rebar.config4
-rw-r--r--inttest/tdeps3/b.hrl1
-rw-r--r--inttest/tdeps3/b.rebar.config5
-rw-r--r--inttest/tdeps3/c.hrl1
-rw-r--r--inttest/tdeps3/c.rebar.config1
-rw-r--r--inttest/tdeps3/d.hrl1
-rw-r--r--inttest/tdeps3/d.rebar.config1
-rw-r--r--inttest/tdeps3/e.hrl1
-rw-r--r--inttest/tdeps3/f.hrl1
-rw-r--r--inttest/tdeps3/root.rebar.config1
-rw-r--r--inttest/tdeps3/tdeps3_rt.erl89
12 files changed, 0 insertions, 109 deletions
diff --git a/inttest/tdeps3/a.erl b/inttest/tdeps3/a.erl
deleted file mode 100644
index 5a387eb..0000000
--- a/inttest/tdeps3/a.erl
+++ /dev/null
@@ -1,3 +0,0 @@
--module({{module}}).
-
--include_lib("{{dep}}/include/{{dep}}.hrl").
diff --git a/inttest/tdeps3/a.rebar.config b/inttest/tdeps3/a.rebar.config
deleted file mode 100644
index 19b8ef8..0000000
--- a/inttest/tdeps3/a.rebar.config
+++ /dev/null
@@ -1,4 +0,0 @@
-{deps, [
- {b, "1", {git, "../repo/b"}},
- {f, "1", {git, "../repo/f"}}
-]}.
diff --git a/inttest/tdeps3/b.hrl b/inttest/tdeps3/b.hrl
deleted file mode 100644
index efbeab1..0000000
--- a/inttest/tdeps3/b.hrl
+++ /dev/null
@@ -1 +0,0 @@
--include_lib("c/include/c.hrl").
diff --git a/inttest/tdeps3/b.rebar.config b/inttest/tdeps3/b.rebar.config
deleted file mode 100644
index d1ccae2..0000000
--- a/inttest/tdeps3/b.rebar.config
+++ /dev/null
@@ -1,5 +0,0 @@
-{deps, [
- {c, "1", {git, "../repo/c"}}
-]}.
-
-{lib_dirs, [apps]}.
diff --git a/inttest/tdeps3/c.hrl b/inttest/tdeps3/c.hrl
deleted file mode 100644
index cc87fff..0000000
--- a/inttest/tdeps3/c.hrl
+++ /dev/null
@@ -1 +0,0 @@
--include_lib("d/include/d.hrl").
diff --git a/inttest/tdeps3/c.rebar.config b/inttest/tdeps3/c.rebar.config
deleted file mode 100644
index b590771..0000000
--- a/inttest/tdeps3/c.rebar.config
+++ /dev/null
@@ -1 +0,0 @@
-{deps, [{d, "1", {git, "../repo/d"}}]}.
diff --git a/inttest/tdeps3/d.hrl b/inttest/tdeps3/d.hrl
deleted file mode 100644
index 02f8088..0000000
--- a/inttest/tdeps3/d.hrl
+++ /dev/null
@@ -1 +0,0 @@
--include_lib("e/include/e.hrl").
diff --git a/inttest/tdeps3/d.rebar.config b/inttest/tdeps3/d.rebar.config
deleted file mode 100644
index 4c7cd54..0000000
--- a/inttest/tdeps3/d.rebar.config
+++ /dev/null
@@ -1 +0,0 @@
-{deps, [{e, "1", {git, "../repo/e"}}]}.
diff --git a/inttest/tdeps3/e.hrl b/inttest/tdeps3/e.hrl
deleted file mode 100644
index 9f02fab..0000000
--- a/inttest/tdeps3/e.hrl
+++ /dev/null
@@ -1 +0,0 @@
--define(HELLO, hello).
diff --git a/inttest/tdeps3/f.hrl b/inttest/tdeps3/f.hrl
deleted file mode 100644
index 02f8088..0000000
--- a/inttest/tdeps3/f.hrl
+++ /dev/null
@@ -1 +0,0 @@
--include_lib("e/include/e.hrl").
diff --git a/inttest/tdeps3/root.rebar.config b/inttest/tdeps3/root.rebar.config
deleted file mode 100644
index d1c3793..0000000
--- a/inttest/tdeps3/root.rebar.config
+++ /dev/null
@@ -1 +0,0 @@
-{sub_dirs, ["apps/a"]}.
diff --git a/inttest/tdeps3/tdeps3_rt.erl b/inttest/tdeps3/tdeps3_rt.erl
deleted file mode 100644
index da87d43..0000000
--- a/inttest/tdeps3/tdeps3_rt.erl
+++ /dev/null
@@ -1,89 +0,0 @@
--module(tdeps3_rt).
-
--compile(export_all).
-
-%% Exercise transitive dependencies where there are multiple files
-%% depending on the same set of deps as well as lib_dir directives
-%% A -> B -> C -> D -> E
-%% |--> G(via lib_dir)
-%% |--> F -> D -> E
-
-files() ->
- [
- %% A1 application
- {create, "ebin/a.app", app(a, [a])},
- {template, "a.erl", "src/a.erl", dict:from_list([{module, a}, {dep, b}])},
-
- {copy, "a.rebar.config", "rebar.config"},
- {copy, "../../rebar", "rebar"},
-
- %% B application
- {create, "repo/b/ebin/b.app", app(b, [b])},
- {template, "a.erl", "repo/b/src/b.erl", dict:from_list([{module, b}, {dep, 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, [c])},
- {template, "a.erl", "repo/c/src/c.erl", dict:from_list([{module, c}, {dep, d}])},
- {copy, "c.rebar.config", "repo/c/rebar.config"},
- {copy, "c.hrl", "repo/c/include/c.hrl"},
-
- %% D application
- {create, "repo/d/ebin/d.app", app(d, [d])},
- {template, "a.erl", "repo/d/src/d.erl", dict:from_list([{module, d}, {dep, e}])},
- {copy, "d.rebar.config", "repo/d/rebar.config"},
- {copy, "d.hrl", "repo/d/include/d.hrl"},
-
- %% E application
- {create, "repo/e/ebin/e.app", app(e, [])},
- {copy, "e.hrl", "repo/e/include/e.hrl"},
-
-
- %% F application
- {create, "repo/f/ebin/f.app", app(f, [f])},
- {template, "a.erl", "repo/f/src/f.erl", dict:from_list([{module, f}, {dep, d}])},
- {copy, "c.rebar.config", "repo/f/rebar.config"},
- {copy, "f.hrl", "repo/f/include/f.hrl"},
-
- %% G application, which is part of the B repo, in a lib_dir
- {create, "repo/b/apps/g/ebin/g.app", app(g, [])},
- {copy, "e.hrl", "repo/b/apps/g/include/g.hrl"}
-
- ].
-
-apply_cmds([], _Params) ->
- ok;
-apply_cmds([Cmd | Rest], Params) ->
- io:format("Running: ~s (~p)\n", [Cmd, Params]),
- {ok, _} = retest_sh:run(Cmd, Params),
- apply_cmds(Rest, Params).
-
-run(_Dir) ->
- %% Initialize the b/c apps as git repos so that dependencies pull
- %% properly
- GitCmds = ["git init",
- "git add -A",
- "git config user.email 'tdeps@example.com'",
- "git config user.name 'tdeps'",
- "git commit -a -m 'Initial Commit'"],
- ok = apply_cmds(GitCmds, [{dir, "repo/b"}]),
- ok = apply_cmds(GitCmds, [{dir, "repo/c"}]),
- ok = apply_cmds(GitCmds, [{dir, "repo/d"}]),
- ok = apply_cmds(GitCmds, [{dir, "repo/e"}]),
- ok = apply_cmds(GitCmds, [{dir, "repo/f"}]),
-
- {ok, _} = retest_sh:run("./rebar -v get-deps compile", []),
- ok.
-
-%%
-%% Generate the contents of a simple .app file
-%%
-app(Name, Modules) ->
- App = {application, Name,
- [{description, atom_to_list(Name)},
- {vsn, "1"},
- {modules, Modules},
- {registered, []},
- {applications, [kernel, stdlib]}]},
- io_lib:format("~p.\n", [App]).