소스 검색

inttest: fix whitespace errors

pull/3/head
Tuncer Ayaz 12 년 전
부모
커밋
c3c6ee7a55
13개의 변경된 파일5개의 추가작업 그리고 18개의 파일을 삭제
  1. +0
    -1
      inttest/ct1/rebar.config
  2. +0
    -1
      inttest/t_custom_config/custom.config
  3. +5
    -4
      inttest/t_custom_config/t_custom_config_rt.erl
  4. +0
    -1
      inttest/tdeps1/a.erl
  5. +0
    -1
      inttest/tdeps1/a.rebar.config
  6. +0
    -2
      inttest/tdeps1/b.hrl
  7. +0
    -1
      inttest/tdeps1/b.rebar.config
  8. +0
    -1
      inttest/tdeps1/c.hrl
  9. +0
    -1
      inttest/tdeps2/a.erl
  10. +0
    -1
      inttest/tdeps2/a.rebar.config
  11. +0
    -2
      inttest/tdeps2/b.hrl
  12. +0
    -1
      inttest/tdeps2/b.rebar.config
  13. +0
    -1
      inttest/tdeps2/c.hrl

+ 0
- 1
inttest/ct1/rebar.config 파일 보기

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

+ 0
- 1
inttest/t_custom_config/custom.config 파일 보기

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

+ 5
- 4
inttest/t_custom_config/t_custom_config_rt.erl 파일 보기

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

+ 0
- 1
inttest/tdeps1/a.erl 파일 보기

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

+ 0
- 1
inttest/tdeps1/a.rebar.config 파일 보기

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

+ 0
- 2
inttest/tdeps1/b.hrl 파일 보기

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

+ 0
- 1
inttest/tdeps1/b.rebar.config 파일 보기

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

+ 0
- 1
inttest/tdeps1/c.hrl 파일 보기

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

+ 0
- 1
inttest/tdeps2/a.erl 파일 보기

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

+ 0
- 1
inttest/tdeps2/a.rebar.config 파일 보기

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

+ 0
- 2
inttest/tdeps2/b.hrl 파일 보기

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

+ 0
- 1
inttest/tdeps2/b.rebar.config 파일 보기

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

+ 0
- 1
inttest/tdeps2/c.hrl 파일 보기

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

불러오는 중...
취소
저장