diff options
| author | Björn-Egil Dahlberg <[email protected]> | 2016-07-15 12:22:45 +0200 | 
|---|---|---|
| committer | Björn-Egil Dahlberg <[email protected]> | 2016-07-15 12:22:45 +0200 | 
| commit | 440445cfd0cbeee8f2bb86b99b6d16caf7a5c9c7 (patch) | |
| tree | 5267a83e8315e93f65ccf991bc201d71cefbb10e /lib/stdlib | |
| parent | ddfae156c2b21d5266bd6eb82bf9ca7c508226fd (diff) | |
| parent | b490fb8664ec6e5ceaadc1c74350dc666f5406d2 (diff) | |
| download | otp-440445cfd0cbeee8f2bb86b99b6d16caf7a5c9c7.tar.gz otp-440445cfd0cbeee8f2bb86b99b6d16caf7a5c9c7.tar.bz2 otp-440445cfd0cbeee8f2bb86b99b6d16caf7a5c9c7.zip  | |
Merge branch 'maint-19' into maint
Diffstat (limited to 'lib/stdlib')
| -rw-r--r-- | lib/stdlib/doc/src/notes.xml | 15 | ||||
| -rw-r--r-- | lib/stdlib/src/shell.erl | 4 | ||||
| -rw-r--r-- | lib/stdlib/test/ets_SUITE.erl | 13 | ||||
| -rw-r--r-- | lib/stdlib/test/shell_SUITE.erl | 17 | ||||
| -rw-r--r-- | lib/stdlib/vsn.mk | 2 | 
5 files changed, 47 insertions, 4 deletions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index ad2599c5a0..d8fec1147f 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -31,6 +31,21 @@    </header>    <p>This document describes the changes made to the STDLIB application.</p> +<section><title>STDLIB 3.0.1</title> + +    <section><title>Fixed Bugs and Malfunctions</title> +      <list> +        <item> +	    <p> Correct a bug regarding typed records in the Erlang +	    shell. The bug was introduced in OTP-19.0. </p> +          <p> +	    Own Id: OTP-13719 Aux Id: ERL-182 </p> +        </item> +      </list> +    </section> + +</section> +  <section><title>STDLIB 3.0</title>      <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/stdlib/src/shell.erl b/lib/stdlib/src/shell.erl index 82a3a2be4f..28f37ef8bf 100644 --- a/lib/stdlib/src/shell.erl +++ b/lib/stdlib/src/shell.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 1996-2015. All Rights Reserved. +%% Copyright Ericsson AB 1996-2016. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. @@ -768,6 +768,8 @@ used_records({call,_,{atom,_,record_info},[A,{atom,_,Name}]}) ->      {name, Name, A};  used_records({call,Line,{tuple,_,[M,F]},As}) ->      used_records({call,Line,{remote,Line,M,F},As}); +used_records({type,_,record,[{atom,_,Name}|Fs]}) -> +  {name, Name, Fs};  used_records(T) when is_tuple(T) ->      {expr, tuple_to_list(T)};  used_records(E) -> diff --git a/lib/stdlib/test/ets_SUITE.erl b/lib/stdlib/test/ets_SUITE.erl index 8c1c625676..b02d17bdb6 100644 --- a/lib/stdlib/test/ets_SUITE.erl +++ b/lib/stdlib/test/ets_SUITE.erl @@ -47,6 +47,7 @@  	 fixtable_next/1, fixtable_insert/1, rename/1, rename_unnamed/1, evil_rename/1,  	 update_element/1, update_counter/1, evil_update_counter/1, partly_bound/1, match_heavy/1]).  -export([update_counter_with_default/1]). +-export([update_counter_table_growth/1]).  -export([member/1]).  -export([memory/1]).  -export([select_fail/1]). @@ -100,6 +101,7 @@  	 heavy_lookup_element_do/1, member_do/1, otp_5340_do/1, otp_7665_do/1, meta_wb_do/1,  	 do_heavy_concurrent/1, tab2file2_do/2, exit_large_table_owner_do/2,           types_do/1, sleeper/0, memory_do/1, update_counter_with_default_do/1, +	 update_counter_table_growth_do/1,  	 ms_tracee_dummy/1, ms_tracee_dummy/2, ms_tracee_dummy/3, ms_tracee_dummy/4  	]). @@ -137,6 +139,7 @@ all() ->       rename, rename_unnamed, evil_rename, update_element,       update_counter, evil_update_counter,       update_counter_with_default, partly_bound, +     update_counter_table_growth,       match_heavy, {group, fold}, member, t_delete_object,       t_init_table, t_whitebox, t_delete_all_objects,       t_insert_list, t_test_ms, t_select_delete, t_ets_dets, @@ -1955,6 +1958,16 @@ update_counter_with_default_do(Opts) ->      ok. +update_counter_table_growth(_Config) -> +    repeat_for_opts(update_counter_table_growth_do). + +update_counter_table_growth_do(Opts) -> +    Set = ets_new(b, [set | Opts]), +    [ets:update_counter(Set, N, {2, 1}, {N, 1}) || N <- lists:seq(1,10000)], +    OrderedSet = ets_new(b, [ordered_set | Opts]), +    [ets:update_counter(OrderedSet, N, {2, 1}, {N, 1}) || N <- lists:seq(1,10000)], +    ok. +  %% Check that a first-next sequence always works on a fixed table.  fixtable_next(Config) when is_list(Config) ->      repeat_for_opts(fixtable_next_do, [write_concurrency,all_types]). diff --git a/lib/stdlib/test/shell_SUITE.erl b/lib/stdlib/test/shell_SUITE.erl index dc82e92876..c409a6949b 100644 --- a/lib/stdlib/test/shell_SUITE.erl +++ b/lib/stdlib/test/shell_SUITE.erl @@ -30,7 +30,7 @@  	 progex_bit_syntax/1, progex_records/1,   	 progex_lc/1, progex_funs/1,  	 otp_5990/1, otp_6166/1, otp_6554/1, -	 otp_7184/1, otp_7232/1, otp_8393/1, otp_10302/1]). +	 otp_7184/1, otp_7232/1, otp_8393/1, otp_10302/1, otp_13719/1]).  -export([ start_restricted_from_shell/1,   	  start_restricted_on_command_line/1,restricted_local/1]). @@ -91,7 +91,7 @@ groups() ->         progex_funs]},       {tickets, [],        [otp_5990, otp_6166, otp_6554, otp_7184, -       otp_7232, otp_8393, otp_10302]}]. +       otp_7232, otp_8393, otp_10302, otp_13719]}].  init_per_suite(Config) ->      Config. @@ -2810,6 +2810,19 @@ otp_10302(Config) when is_list(Config) ->      test_server:stop_node(Node),      ok. +otp_13719(Config) when is_list(Config) -> +    Test = <<"-module(otp_13719). +              -record(bar, {}). +              -record(foo, {bar :: #bar{}}).">>, +    File = filename("otp_13719.erl", Config), +    Beam = filename("otp_13719.beam", Config), +    ok = compile_file(Config, File, Test, []), +    RR = "rr(\"" ++ Beam ++ "\"). #foo{}.", +    "[bar,foo]\n#foo{bar = undefined}.\n" = t(RR), +    file:delete(filename("test.beam", Config)), +    file:delete(File), +    ok. +  scan(B) ->      F = fun(Ts) ->                   case erl_parse:parse_term(Ts) of diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk index 46e3ceac03..41037b8f53 100644 --- a/lib/stdlib/vsn.mk +++ b/lib/stdlib/vsn.mk @@ -1 +1 @@ -STDLIB_VSN = 3.0 +STDLIB_VSN = 3.0.1  | 
