aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-07 11:34:04 +0200
committerBruce Yinhe <[email protected]>2014-07-07 11:34:31 +0200
commit4a1ffc3b3666436a92532e242bde9f5b67902469 (patch)
tree4741c5a0c5f0e3ffab994125889030da59b807d3 /lib/stdlib/test
parent98c5cdbe60b6d743ad461b651a586c6f3a502ba9 (diff)
parenta10a7979887403ea61c30155cef18aa7324420a6 (diff)
downloadotp-4a1ffc3b3666436a92532e242bde9f5b67902469.tar.gz
otp-4a1ffc3b3666436a92532e242bde9f5b67902469.tar.bz2
otp-4a1ffc3b3666436a92532e242bde9f5b67902469.zip
Merge branch 'nox/io_lib_format-width-too-small' into maint
* nox/io_lib_format-width-too-small: Properly handle fields too short in io_lib_format OTP-12041
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r--lib/stdlib/test/io_SUITE.erl10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/stdlib/test/io_SUITE.erl b/lib/stdlib/test/io_SUITE.erl
index 5a8971c071..3a76275f31 100644
--- a/lib/stdlib/test/io_SUITE.erl
+++ b/lib/stdlib/test/io_SUITE.erl
@@ -30,7 +30,7 @@
io_fread_newlines/1, otp_8989/1, io_lib_fread_literal/1,
printable_range/1,
io_lib_print_binary_depth_one/1, otp_10302/1, otp_10755/1,
- otp_10836/1]).
+ otp_10836/1, io_lib_width_too_small/1]).
-export([pretty/2]).
@@ -69,7 +69,8 @@ all() ->
io_lib_collect_line_3_wb, cr_whitespace_in_string,
io_fread_newlines, otp_8989, io_lib_fread_literal,
printable_range,
- io_lib_print_binary_depth_one, otp_10302, otp_10755, otp_10836].
+ io_lib_print_binary_depth_one, otp_10302, otp_10755, otp_10836,
+ io_lib_width_too_small].
groups() ->
[].
@@ -2213,3 +2214,8 @@ compile_file(File, Text, Config) ->
try compile:file(Fname, [return])
after ok %file:delete(Fname)
end.
+
+io_lib_width_too_small(Config) ->
+ "**" = lists:flatten(io_lib:format("~2.3w", [3.14])),
+ "**" = lists:flatten(io_lib:format("~2.5w", [3.14])),
+ ok.