diff options
author | John Högberg <[email protected]> | 2018-03-20 13:28:26 +0100 |
---|---|---|
committer | John Högberg <[email protected]> | 2018-03-23 08:18:20 +0100 |
commit | 187564ffccee4a3b5727bdab3df2458f3b5ced72 (patch) | |
tree | 414b9224d03ced77299a3296a22e664bca324efd /erts/emulator/test/nif_SUITE.erl | |
parent | b302412387b094bb827ea8ae5f8f3e28178c2f8b (diff) | |
download | otp-187564ffccee4a3b5727bdab3df2458f3b5ced72.tar.gz otp-187564ffccee4a3b5727bdab3df2458f3b5ced72.tar.bz2 otp-187564ffccee4a3b5727bdab3df2458f3b5ced72.zip |
Add enif_make_map_from_arrays
Diffstat (limited to 'erts/emulator/test/nif_SUITE.erl')
-rw-r--r-- | erts/emulator/test/nif_SUITE.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/erts/emulator/test/nif_SUITE.erl b/erts/emulator/test/nif_SUITE.erl index b6e15ababb..a9eb4b2768 100644 --- a/erts/emulator/test/nif_SUITE.erl +++ b/erts/emulator/test/nif_SUITE.erl @@ -1170,6 +1170,12 @@ maps(Config) when is_list(Config) -> {1, M2} = make_map_remove_nif(M2, "key3"), {0, undefined} = make_map_remove_nif(self(), key), + M1 = maps_from_list_nif(maps:to_list(M1)), + M2 = maps_from_list_nif(maps:to_list(M2)), + M3 = maps_from_list_nif(maps:to_list(M3)), + + has_duplicate_keys = maps_from_list_nif([{1,1},{1,1}]), + verify_tmpmem(TmpMem), ok. |