diff options
author | Micael Karlberg <[email protected]> | 2011-10-26 14:12:36 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-10-26 14:12:36 +0200 |
commit | 3ab1cc0eae216ce101bc6d9011dddeaf89019c8a (patch) | |
tree | ddf2b8b46cb364b14bb1b2cf6a9c2d3c551f66ca /lib | |
parent | 37650c5ab7d286cdf4a4afa0d6eff1d915f57cff (diff) | |
download | otp-3ab1cc0eae216ce101bc6d9011dddeaf89019c8a.tar.gz otp-3ab1cc0eae216ce101bc6d9011dddeaf89019c8a.tar.bz2 otp-3ab1cc0eae216ce101bc6d9011dddeaf89019c8a.zip |
Uncommented ipv6 test cases.
OTP-9655
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index 7d95cdbebd..4a510f013e 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -126,7 +126,7 @@ all(suite) -> http_1_1_ip, http_1_0_ip, http_0_9_ip, - %% ipv6, + ipv6, tickets ]. @@ -1611,24 +1611,24 @@ ticket_5913(doc) -> ["Tests that a header without last-modified is handled"]; ticket_5913(suite) -> []; ticket_5913(Config) -> - ok=httpd_test_lib:verify_request(ip_comm, ?config(host, Config), - ?IP_PORT, ?config(node, Config), + ok = httpd_test_lib:verify_request(ip_comm, ?config(host, Config), + ?IP_PORT, ?config(node, Config), "GET /cgi-bin/erl/httpd_example:get_bin " "HTTP/1.0\r\n\r\n", [{statuscode, 200}, - {version, "HTTP/1.0"}]), + {version, "HTTP/1.0"}]), ok. ticket_6003(doc) -> ["Tests that a URI with a bad hexadecimal code is handled"]; ticket_6003(suite) -> []; ticket_6003(Config) -> - ok=httpd_test_lib:verify_request(ip_comm, ?config(host, Config), - ?IP_PORT, ?config(node, Config), - "GET http://www.erlang.org/%skalle " - "HTTP/1.0\r\n\r\n", - [{statuscode, 404}, - {version, "HTTP/1.0"}]), + ok = httpd_test_lib:verify_request(ip_comm, ?config(host, Config), + ?IP_PORT, ?config(node, Config), + "GET http://www.erlang.org/%skalle " + "HTTP/1.0\r\n\r\n", + [{statuscode, 400}, + {version, "HTTP/1.0"}]), ok. ticket_7304(doc) -> |