瀏覽代碼

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

Loading…
取消
儲存