diff options
author | Björn Gustavsson <[email protected]> | 2015-03-26 16:16:27 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-04-10 12:33:24 +0200 |
commit | a749ef2bafd3f5580b770a51931a3bc32f9404a9 (patch) | |
tree | 68ba25b199dc84f347d2e9e71aba3d9198703b73 /lib/stdlib/test/timer_SUITE.erl | |
parent | e13c6510763f24dec76b1ce66b86ebbf7a84816d (diff) | |
download | otp-a749ef2bafd3f5580b770a51931a3bc32f9404a9.tar.gz otp-a749ef2bafd3f5580b770a51931a3bc32f9404a9.tar.bz2 otp-a749ef2bafd3f5580b770a51931a3bc32f9404a9.zip |
Eliminate use of deprecated now/0 for measuring time
Use erlang:monotonic_time/1 instead of now/0.
Diffstat (limited to 'lib/stdlib/test/timer_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/timer_SUITE.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/stdlib/test/timer_SUITE.erl b/lib/stdlib/test/timer_SUITE.erl index 6ece2e897f..ae32d98807 100644 --- a/lib/stdlib/test/timer_SUITE.erl +++ b/lib/stdlib/test/timer_SUITE.erl @@ -361,9 +361,7 @@ res_combine({error,Es}, [{error,E}|T]) -> system_time() -> - %%element(1, statistics(wall_clock)). - {M,S,U} = erlang:now(), - 1000000000 * M + 1000 * S + (U div 1000). + erlang:monotonic_time(milli_seconds). %% ------------------------------------------------------- %% |