Bläddra i källkod

Merge branch 'Taure-fix-comments' into windows-ct-fix

pull/489/head
Viacheslav V. Kovalev 9 år sedan
förälder
incheckning
b2711335aa
2 ändrade filer med 3 tillägg och 21 borttagningar
  1. +2
    -2
      src/rebar_file_utils.erl
  2. +1
    -19
      test/rebar_test_utils.erl

+ 2
- 2
src/rebar_file_utils.erl Visa fil

@ -83,7 +83,7 @@ symlink_or_copy(Source, Target) ->
true ->
win32_symlink(S, T);
false ->
ok
cp_r([S], T)
end;
_ ->
case filelib:is_dir(Target) of
@ -104,7 +104,7 @@ win32_symlink(Source, Target) ->
true -> ok;
false ->
{error, lists:flatten(
io_lib:format("Failed to sumlink ~s to ~s~n",
io_lib:format("Failed to symlink ~s to ~s~n",
[Source, Target]))}
end.

+ 1
- 19
test/rebar_test_utils.erl Visa fil

@ -215,7 +215,6 @@ check_results(AppDir, Expected) ->
?assertNotEqual(false, lists:keyfind(Name, 1, DepsNames))
; ({dep, Name, Vsn}) ->
ct:pal("Dep Name: ~p, Vsn: ~p", [Name, Vsn]),
ct:pal("DepNames: ~p~n", [DepsNames]),
case lists:keyfind(Name, 1, DepsNames) of
false ->
error({dep_not_found, Name});
@ -275,28 +274,11 @@ check_results(AppDir, Expected) ->
LibDir = filename:join([ReleaseDir, Name, "lib"]),
{ok, RelLibs} = file:list_dir(LibDir),
ct:pal("RelLibs: ~p~n", [RelLibs]),
IsSymLinkFun =
fun(X) ->
ec_file:is_symlink(filename:join(LibDir, X))
end,
IsDirFun =
fun(X) ->
filelib:is_dir(filename:join([LibDir, X]))
end,
DevMode =
case os:type() of
{unix, _} ->
lists:all(IsSymLinkFun, RelLibs);
{win32, _} ->
Bool = lists:all(IsDirFun, RelLibs),
case ExpectedDevMode of
true ->
Bool;
false ->
not Bool
end
end,
DevMode = lists:all(IsSymLinkFun, RelLibs),
?assertEqual(ExpectedDevMode, DevMode),
%% throws not_found if it doesn't exist

Laddar…
Avbryt
Spara