mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 11:09:55 +00:00
inttest: fix whitespace errors
This commit is contained in:
parent
1dfb407bbc
commit
c3c6ee7a55
13 changed files with 5 additions and 18 deletions
|
@ -1,2 +1 @@
|
|||
|
||||
{ct_dir, "itest"}.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
{deps, [
|
||||
{boo, "."}
|
||||
]}.
|
||||
|
|
|
@ -11,16 +11,17 @@ files() ->
|
|||
|
||||
run(Dir) ->
|
||||
retest_log:log(debug, "Running in Dir: ~s~n", [Dir]),
|
||||
Ref = retest:sh("./rebar -C custom.config check-deps -vvv", [{async, true}]),
|
||||
Ref = retest:sh("./rebar -C custom.config check-deps -vvv",
|
||||
[{async, true}]),
|
||||
{ok, Captured} =
|
||||
retest:sh_expect(Ref,
|
||||
"DEBUG: Consult config file .*/custom.config.*",
|
||||
[{capture, all, list}]),
|
||||
{ok, Missing} =
|
||||
retest:sh_expect(Ref,
|
||||
"DEBUG: Missing deps : \\[\\{dep,bad_name,"
|
||||
"boo,\"\\.\",undefined\\}\\]",
|
||||
[{capture, all, list}]),
|
||||
"DEBUG: Missing deps : \\[\\{dep,bad_name,"
|
||||
"boo,\"\\.\",undefined\\}\\]",
|
||||
[{capture, all, list}]),
|
||||
retest_log:log(debug, "[CAPTURED]: ~s~n", [Captured]),
|
||||
retest_log:log(debug, "[Missing]: ~s~n", [Missing]),
|
||||
ok.
|
||||
|
|
|
@ -6,4 +6,3 @@
|
|||
|
||||
hello() ->
|
||||
io:format("~s\n", [?HELLO]).
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
||||
|
||||
|
|
|
@ -1,3 +1 @@
|
|||
|
||||
-include_lib("c/include/c.hrl").
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
-define(HELLO, hello).
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
-module({{module}}).
|
||||
|
||||
-include_lib("b/include/b.hrl").
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
||||
|
||||
|
|
|
@ -1,3 +1 @@
|
|||
|
||||
-include_lib("c/include/c.hrl").
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
-define(HELLO, hello).
|
||||
|
||||
|
|
Loading…
Reference in a new issue