aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/erl_internal_SUITE.erl
diff options
context:
space:
mode:
authorRaimo Niskanen <[email protected]>2017-09-06 12:06:02 +0200
committerGitHub <[email protected]>2017-09-06 12:06:02 +0200
commit28759f8cbde480be7782bac9169eeb9e4fb60bce (patch)
tree7c5898dd60e290621ebddcd717ba1b071bb44513 /lib/stdlib/test/erl_internal_SUITE.erl
parent5785903d249026b7698ae48bb6e154f5e2a36c9b (diff)
parent69e009e3e1ad899a4609ff327a08512c86dba374 (diff)
downloadotp-28759f8cbde480be7782bac9169eeb9e4fb60bce.tar.gz
otp-28759f8cbde480be7782bac9169eeb9e4fb60bce.tar.bz2
otp-28759f8cbde480be7782bac9169eeb9e4fb60bce.zip
Merge pull request #1490 from josevalim/jv-gen-server-continue
Add {continue, Term} and handle_continue/2 to gen_server
Diffstat (limited to 'lib/stdlib/test/erl_internal_SUITE.erl')
-rw-r--r--lib/stdlib/test/erl_internal_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/erl_internal_SUITE.erl b/lib/stdlib/test/erl_internal_SUITE.erl
index 789a9d4363..7d9df1f989 100644
--- a/lib/stdlib/test/erl_internal_SUITE.erl
+++ b/lib/stdlib/test/erl_internal_SUITE.erl
@@ -80,7 +80,7 @@ callbacks(application) ->
callbacks(gen_server) ->
[{init,1}, {handle_call,3}, {handle_cast,2},
{handle_info,2}, {terminate,2}, {code_change,3},
- {format_status,2}];
+ {format_status,2}, {handle_continue, 2}];
callbacks(gen_fsm) ->
[{init,1}, {handle_event,3}, {handle_sync_event,4},
{handle_info,3}, {terminate,3}, {code_change,4},
@@ -101,7 +101,7 @@ callbacks(supervisor) ->
optional_callbacks(application) ->
[];
optional_callbacks(gen_server) ->
- [{handle_info, 2}, {terminate, 2}, {code_change, 3}, {format_status, 2}];
+ [{handle_info, 2}, {handle_continue, 2}, {terminate, 2}, {code_change, 3}, {format_status, 2}];
optional_callbacks(gen_fsm) ->
[{handle_info, 3}, {terminate, 3}, {code_change, 4}, {format_status, 2}];
optional_callbacks(gen_event) ->