inttest: fix whitespace errors

This commit is contained in:
Tuncer Ayaz 2012-08-18 19:29:29 +02:00
parent 1dfb407bbc
commit c3c6ee7a55
13 changed files with 5 additions and 18 deletions

View file

@ -1,2 +1 @@
{ct_dir, "itest"}.

View file

@ -1,4 +1,3 @@
{deps, [
{boo, "."}
]}.

View file

@ -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.

View file

@ -6,4 +6,3 @@
hello() ->
io:format("~s\n", [?HELLO]).

View file

@ -1,2 +1 @@
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.

View file

@ -1,3 +1 @@
-include_lib("c/include/c.hrl").

View file

@ -1,2 +1 @@
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.

View file

@ -1,2 +1 @@
-define(HELLO, hello).

View file

@ -1,4 +1,3 @@
-module({{module}}).
-include_lib("b/include/b.hrl").

View file

@ -1,2 +1 @@
{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.

View file

@ -1,3 +1 @@
-include_lib("c/include/c.hrl").

View file

@ -1,2 +1 @@
{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.

View file

@ -1,2 +1 @@
-define(HELLO, hello).