summaryrefslogtreecommitdiff
path: root/inttest/bug_5_rt.erl
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/bug_5_rt.erl
parentac0d726bb8c21eca3b883f7c47e42cdea02b5a3f (diff)
remove more code that can be brought back later if needed
Diffstat (limited to 'inttest/bug_5_rt.erl')
-rw-r--r--inttest/bug_5_rt.erl29
1 files changed, 0 insertions, 29 deletions
diff --git a/inttest/bug_5_rt.erl b/inttest/bug_5_rt.erl
deleted file mode 100644
index a06b693..0000000
--- a/inttest/bug_5_rt.erl
+++ /dev/null
@@ -1,29 +0,0 @@
--module(bug_5_rt).
-
--compile(export_all).
-
-
-files() ->
- [{create, "ebin/a1.app", app(a1)},
- {create, "deps/d1/src/d1.app.src", app(d1)},
- {create, "rebar.config",
- <<"{deps, [{d1, \"1\", {hg, \"http://example.com\", \"tip\"}}]}.\n">>},
- {copy, "../rebar", "rebar"}].
-
-run(_Dir) ->
- {ok, _} = retest:sh("./rebar 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]).