aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/list_bif_SUITE.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2017-04-24 12:41:10 +0200
committerDan Gudmundsson <[email protected]>2017-04-24 12:41:10 +0200
commit739bca3fc267c55d84c8f5c193d16c0b2a7eee13 (patch)
treea7ac2a4c90bdeadd2a313e7d49cecf84d3e1ba28 /erts/emulator/test/list_bif_SUITE.erl
parent515dc2d603d449ed3621d96028ba403aef05ea7f (diff)
parenta9d0d119837fb0bc52d2bb3d48a47568de9100b4 (diff)
downloadotp-739bca3fc267c55d84c8f5c193d16c0b2a7eee13.tar.gz
otp-739bca3fc267c55d84c8f5c193d16c0b2a7eee13.tar.bz2
otp-739bca3fc267c55d84c8f5c193d16c0b2a7eee13.zip
Merge branch 'dgud/stdlib/unicode-string/OTP-10289'
* dgud/stdlib/unicode-string/OTP-10289: Handle chardata in string:to_float and string:to_list New unicode aware string module that works with unicode:chardata() Add nf(k)d, nf(k)c conversion functions to unicode module Reorder code and whitespace fixes Add unicode_util
Diffstat (limited to 'erts/emulator/test/list_bif_SUITE.erl')
-rw-r--r--erts/emulator/test/list_bif_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/list_bif_SUITE.erl b/erts/emulator/test/list_bif_SUITE.erl
index 514dd2f412..9c40929926 100644
--- a/erts/emulator/test/list_bif_SUITE.erl
+++ b/erts/emulator/test/list_bif_SUITE.erl
@@ -47,9 +47,9 @@ t_list_to_integer(Config) when is_list(Config) ->
{12373281903728109372810937209817320981321,"ABC"} = string:to_integer("12373281903728109372810937209817320981321ABC"),
{-12373281903728109372810937209817320981321,"ABC"} = string:to_integer("-12373281903728109372810937209817320981321ABC"),
{12,[345]} = string:to_integer([$1,$2,345]),
- {12,[a]} = string:to_integer([$1,$2,a]),
+ {error, badarg} = string:to_integer([$1,$2,a]),
{error,no_integer} = string:to_integer([$A]),
- {error,not_a_list} = string:to_integer($A),
+ {error,badarg} = string:to_integer($A),
ok.
%% Test hd/1 with correct and incorrect arguments.