diff options
author | Sverker Eriksson <[email protected]> | 2014-01-14 18:13:45 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-01-29 11:08:46 +0100 |
commit | 00f9be42e43913bce9b110382e55bfbdaa9406d0 (patch) | |
tree | 33d6d0ea665e1318c867dac24fc6f71bc4faa0e4 /erts/emulator/test/nif_SUITE.erl | |
parent | ada36d9024b4ceda974f32a78b5fe39b64f59319 (diff) | |
download | otp-00f9be42e43913bce9b110382e55bfbdaa9406d0.tar.gz otp-00f9be42e43913bce9b110382e55bfbdaa9406d0.tar.bz2 otp-00f9be42e43913bce9b110382e55bfbdaa9406d0.zip |
erts: Fix map iterator bug when reverting from end of map position
and simplify code by ignoring h_limit which is always zero.
Diffstat (limited to 'erts/emulator/test/nif_SUITE.erl')
-rw-r--r-- | erts/emulator/test/nif_SUITE.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/erts/emulator/test/nif_SUITE.erl b/erts/emulator/test/nif_SUITE.erl index 5b7c310aa4..a34f70c618 100644 --- a/erts/emulator/test/nif_SUITE.erl +++ b/erts/emulator/test/nif_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2010-2013. All Rights Reserved. +%% Copyright Ericsson AB 2010-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -449,6 +449,9 @@ maps(Config) when is_list(Config) -> io:format("Pairs: ~p~nMap: ~p~nReturned: ~p~n", [lists:sort(Pairs),M,R]), Is = lists:sort(Pairs), Is = lists:reverse(RIs), + + #{} = maps_from_list([]), + {[],[]} = sorted_list_from_maps(#{}), ok. api_macros(doc) -> ["Test macros enif_make_list<N> and enif_make_tuple<N>"]; |