diff options
author | Björn Gustavsson <[email protected]> | 2010-09-10 10:44:15 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-10 10:44:15 +0200 |
commit | c2d085e76f38467ea530b294edd3767ade88332c (patch) | |
tree | 0662a27795b1a1bd9bb50f9a25d2d14432fc26c1 /lib/kernel/test | |
parent | d90480306e4fcd3abc9717034a38868f639d45b1 (diff) | |
parent | 33caf70b63ef4cdb7ba5f3b24d7f04c596f081eb (diff) | |
download | otp-c2d085e76f38467ea530b294edd3767ade88332c.tar.gz otp-c2d085e76f38467ea530b294edd3767ade88332c.tar.bz2 otp-c2d085e76f38467ea530b294edd3767ade88332c.zip |
Merge branch 'bjorn/http-packet-error/OTP-8831' into dev
* bjorn/http-packet-error/OTP-8831:
Make gen_tcp:recv/2 consistent with ssl:recv/2
Diffstat (limited to 'lib/kernel/test')
-rw-r--r-- | lib/kernel/test/gen_tcp_misc_SUITE.erl | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lib/kernel/test/gen_tcp_misc_SUITE.erl b/lib/kernel/test/gen_tcp_misc_SUITE.erl index 5d726a3b1b..d73c5fab56 100644 --- a/lib/kernel/test/gen_tcp_misc_SUITE.erl +++ b/lib/kernel/test/gen_tcp_misc_SUITE.erl @@ -1,19 +1,19 @@ %% %% %CopyrightBegin% -%% -%% Copyright Ericsson AB 1998-2009. All Rights Reserved. -%% +%% +%% Copyright Ericsson AB 1998-2010. All Rights Reserved. +%% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. -%% +%% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. -%% +%% %% %CopyrightEnd% %% -module(gen_tcp_misc_SUITE). @@ -957,12 +957,11 @@ http_bad_packet(Config) when is_list(Config) -> http_worker(S) -> case gen_tcp:recv(S, 0, 30000) of + {ok,{http_error,Error}} -> + io:format("Http error: ~s\n", [Error]); {ok,Data} -> io:format("Data: ~p\n", [Data]), - http_worker(S); - {error,Rsn} -> - io:format("Error: ~p\n", [Rsn]), - ok + http_worker(S) end. http_bad_client(Port) -> |