aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/num_bif_SUITE.erl
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2015-09-17 09:25:43 +0200
committerHenrik Nord <[email protected]>2015-09-17 09:25:43 +0200
commit4e6becab23bcb8301358888f89fc45a16692a238 (patch)
tree5927d95e809428fc8c96854d0e891af8fb65541e /erts/emulator/test/num_bif_SUITE.erl
parent2f3556934883d7b249a322d3a52db04e78d3a591 (diff)
parent2e61f98dd41ce7328aebc27debd78845afdc0dba (diff)
downloadotp-4e6becab23bcb8301358888f89fc45a16692a238.tar.gz
otp-4e6becab23bcb8301358888f89fc45a16692a238.tar.bz2
otp-4e6becab23bcb8301358888f89fc45a16692a238.zip
Merge branch 'mikpe/erts-binary_to_integer-fix' into maint
* mikpe/erts-binary_to_integer-fix: erts: fix binary_to_integer boundary case OTP-12988
Diffstat (limited to 'erts/emulator/test/num_bif_SUITE.erl')
-rw-r--r--erts/emulator/test/num_bif_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/num_bif_SUITE.erl b/erts/emulator/test/num_bif_SUITE.erl
index f07f79b83d..90b6a36262 100644
--- a/erts/emulator/test/num_bif_SUITE.erl
+++ b/erts/emulator/test/num_bif_SUITE.erl
@@ -429,7 +429,7 @@ t_string_to_integer(Config) when is_list(Config) ->
list_to_binary(Value))),
{'EXIT', {badarg, _}} =
(catch erlang:list_to_integer(Value))
- end,["1.0"," 1"," -1",""]),
+ end,["1.0"," 1"," -1","","+"]),
% Custom base error cases
lists:foreach(fun({Value,Base}) ->