aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/map_SUITE.erl
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2018-07-26 09:56:47 +0200
committerJohn Högberg <[email protected]>2018-07-26 09:56:47 +0200
commitd9d694ca3ea8a168c51145fc485a3bcbc18f6188 (patch)
tree3ae824615ddadabdbeae2679b1aa4f717195b4b8 /erts/emulator/test/map_SUITE.erl
parentd7e303cb7981e2ceb0eb0074cf7402feec5da868 (diff)
parenta0b2cc0a377d780fe938ba9be3e417c7a8e00914 (diff)
downloadotp-d9d694ca3ea8a168c51145fc485a3bcbc18f6188.tar.gz
otp-d9d694ca3ea8a168c51145fc485a3bcbc18f6188.tar.bz2
otp-d9d694ca3ea8a168c51145fc485a3bcbc18f6188.zip
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/test/map_SUITE.erl')
-rw-r--r--erts/emulator/test/map_SUITE.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/erts/emulator/test/map_SUITE.erl b/erts/emulator/test/map_SUITE.erl
index f93c637650..d0a6763fe5 100644
--- a/erts/emulator/test/map_SUITE.erl
+++ b/erts/emulator/test/map_SUITE.erl
@@ -3080,8 +3080,19 @@ y_regs(Config) when is_list(Config) ->
true = is_map(Map2) andalso is_map(Map4),
+ gurka = y_regs_literal(0),
+ gaffel = y_regs_literal(1),
+
ok.
+y_regs_literal(Key) when is_integer(Key) ->
+ %% Forces the key to be placed in a Y register.
+ lists:seq(1, 2),
+ case is_map_key(Key, #{ 0 => 0 }) of
+ true -> gurka;
+ false -> gaffel
+ end.
+
y_regs_update(Map0, Val0) ->
Val1 = {t,Val0},
K1 = id({key,1}),