Ver a proveniência

Fix multi_app_default_dirs test on windows.

Seed random with erlang:now() because os:timestamp precision is not enough
on windows.
pull/489/head
Viacheslav Kovalev há 10 anos
committed by Daniel Widgren
ascendente
cometimento
701f66aab2
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      test/rebar_test_utils.erl

+ 2
- 2
test/rebar_test_utils.erl Ver ficheiro

@ -105,12 +105,12 @@ create_config(AppDir, Contents) ->
%% @doc Util to create a random variation of a given name.
create_random_name(Name) ->
random:seed(os:timestamp()),
random:seed(erlang:now()),
Name ++ erlang:integer_to_list(random:uniform(1000000)).
%% @doc Util to create a random variation of a given version.
create_random_vsn() ->
random:seed(os:timestamp()),
random:seed(erlang:now()),
lists:flatten([erlang:integer_to_list(random:uniform(100)),
".", erlang:integer_to_list(random:uniform(100)),
".", erlang:integer_to_list(random:uniform(100))]).

Carregando…
Cancelar
Guardar