mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +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"}.
|
{ct_dir, "itest"}.
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
{deps, [
|
{deps, [
|
||||||
{boo, "."}
|
{boo, "."}
|
||||||
]}.
|
]}.
|
||||||
|
|
|
@ -11,7 +11,8 @@ files() ->
|
||||||
|
|
||||||
run(Dir) ->
|
run(Dir) ->
|
||||||
retest_log:log(debug, "Running in Dir: ~s~n", [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} =
|
{ok, Captured} =
|
||||||
retest:sh_expect(Ref,
|
retest:sh_expect(Ref,
|
||||||
"DEBUG: Consult config file .*/custom.config.*",
|
"DEBUG: Consult config file .*/custom.config.*",
|
||||||
|
|
|
@ -6,4 +6,3 @@
|
||||||
|
|
||||||
hello() ->
|
hello() ->
|
||||||
io:format("~s\n", [?HELLO]).
|
io:format("~s\n", [?HELLO]).
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1 @@
|
||||||
|
|
||||||
-include_lib("c/include/c.hrl").
|
-include_lib("c/include/c.hrl").
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
-define(HELLO, hello).
|
-define(HELLO, hello).
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
-module({{module}}).
|
-module({{module}}).
|
||||||
|
|
||||||
-include_lib("b/include/b.hrl").
|
-include_lib("b/include/b.hrl").
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1 @@
|
||||||
|
|
||||||
-include_lib("c/include/c.hrl").
|
-include_lib("c/include/c.hrl").
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
-define(HELLO, hello).
|
-define(HELLO, hello).
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue