ソースを参照

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年前
committed by Daniel Widgren
コミット
701f66aab2
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      test/rebar_test_utils.erl

+ 2
- 2
test/rebar_test_utils.erl ファイルの表示

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

読み込み中…
キャンセル
保存