mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
a83c80d4c0
Since rebar_deps:get_deps_dir/1 returns an absolute path, lists:member(Deps, Parts2) will always return false, thus .test.spec files in deps/ will not be ignored.
34 lines
1.1 KiB
Erlang
34 lines
1.1 KiB
Erlang
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 et
|
|
-module(ct2_rt).
|
|
|
|
-compile(export_all).
|
|
|
|
|
|
files() ->
|
|
[{create, "ebin/foo.app", app(foo)},
|
|
{copy, "../../rebar", "rebar"},
|
|
{copy, "foo.test.spec", "foo.test.spec"},
|
|
{copy, "deps/bar.test.spec", "deps/bar.test.spec"},
|
|
{copy, "foo_SUITE.erl", "test/foo_SUITE.erl"}].
|
|
|
|
run(_Dir) ->
|
|
Ref = retest:sh("./rebar compile ct -vvv", [async]),
|
|
{ok, [[CTRunCmd]]} = retest:sh_expect(Ref, "^\"ct_run.*",
|
|
[global, {capture, first, binary}]),
|
|
{match, _} = re:run(CTRunCmd, "foo.test.spec", [global]),
|
|
%% deps/bar.test.spec should be ignored by rebar_ct:collect_glob/3
|
|
nomatch = re:run(CTRunCmd, "bar.test.spec", [global]),
|
|
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]).
|