Browse Source

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 10 years ago
parent
commit
4a605faab8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      test/rebar_test_utils.erl

+ 2
- 2
test/rebar_test_utils.erl View File

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

Loading…
Cancel
Save