diff options
author | Rickard Green <[email protected]> | 2015-03-29 01:29:07 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-05-06 15:58:32 +0200 |
commit | e135070d4c7135228756e6a43dbdd638b565a499 (patch) | |
tree | a92e332e46d510a8226a0c23a57f86367b31dfe2 | |
parent | edce22eb43c40359ccbd0924412cf13692744779 (diff) | |
download | otp-e135070d4c7135228756e6a43dbdd638b565a499.tar.gz otp-e135070d4c7135228756e6a43dbdd638b565a499.tar.bz2 otp-e135070d4c7135228756e6a43dbdd638b565a499.zip |
Replace erlang:now() usage in system suite
-rw-r--r-- | erts/test/erlexec_SUITE.erl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/erts/test/erlexec_SUITE.erl b/erts/test/erlexec_SUITE.erl index f5ea8f160a..07966192c5 100644 --- a/erts/test/erlexec_SUITE.erl +++ b/erts/test/erlexec_SUITE.erl @@ -462,13 +462,10 @@ split_emu_clt([A|As], Emu, Misc, Extra, extra = Type) -> get_nodename(T) -> - {A, B, C} = now(), atom_to_list(T) ++ "-" ++ atom_to_list(?MODULE) ++ "-" - ++ integer_to_list(A) + ++ integer_to_list(erlang:system_time(seconds)) ++ "-" - ++ integer_to_list(B) - ++ "-" - ++ integer_to_list(C). + ++ integer_to_list(erlang:unique_integer([positive])). |