aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpd_mod.erl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2012-03-14 12:25:52 +0100
committerMicael Karlberg <[email protected]>2012-03-14 12:25:52 +0100
commit1017c9b5629148f3d584434f1c351cf1e8dded24 (patch)
treec86653559030aae5404ee7c54af7092b87dfe434 /lib/inets/test/httpd_mod.erl
parent39b1ef1844cbf275a3380e123bcefee0e771430f (diff)
downloadotp-1017c9b5629148f3d584434f1c351cf1e8dded24.tar.gz
otp-1017c9b5629148f3d584434f1c351cf1e8dded24.tar.bz2
otp-1017c9b5629148f3d584434f1c351cf1e8dded24.zip
[inets/httpd] Fixed alias test cases
Fixed the alias test cases where an invalid option was used. Also, hopefully improved error reporting in case connect fails.
Diffstat (limited to 'lib/inets/test/httpd_mod.erl')
-rw-r--r--lib/inets/test/httpd_mod.erl9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/inets/test/httpd_mod.erl b/lib/inets/test/httpd_mod.erl
index 23551ab125..cb1214b7fb 100644
--- a/lib/inets/test/httpd_mod.erl
+++ b/lib/inets/test/httpd_mod.erl
@@ -41,14 +41,7 @@
alias(Type, Port, Host, Node) ->
%% This is very crude, but...
tsp("alias -> Has IPv6 support: ~p", [inets_test_lib:has_ipv6_support()]),
- Opts = case os:type() of
- {win32, _} ->
- [inet6fb4];
- _ ->
- []
- end,
- tsp("alias -> Opts: ~p", [Opts]),
-
+ Opts = [],
ok = httpd_test_lib:verify_request(Type, Host, Port, Opts, Node,
"GET /pics/icon.sheet.gif "
"HTTP/1.0\r\n\r\n",