aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-12-21 11:07:16 +0100
committerMicael Karlberg <[email protected]>2012-02-06 12:31:58 +0100
commit8d6b47823001de84b09062baee10b7ed7e3f8864 (patch)
tree5e9c94adc286e158b686871bb8f2fdf78881103c /lib/inets/test
parent7b8fa1f43cf92e95eb3c899fdc0dcb7efe6c16b5 (diff)
downloadotp-8d6b47823001de84b09062baee10b7ed7e3f8864.tar.gz
otp-8d6b47823001de84b09062baee10b7ed7e3f8864.tar.bz2
otp-8d6b47823001de84b09062baee10b7ed7e3f8864.zip
[inets] Add preliminary "has IPv6 support" info to TC config
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/httpc_SUITE.erl9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl
index 089e0766cb..81a1fdab4e 100644
--- a/lib/inets/test/httpc_SUITE.erl
+++ b/lib/inets/test/httpc_SUITE.erl
@@ -179,10 +179,11 @@ init_per_suite(Config) ->
{ok, FileInfo} = file:read_file_info(Cgi),
ok = file:write_file_info(Cgi, FileInfo#file_info{mode = 8#00755}),
- [{server_root, ServerRoot},
- {doc_root, DocRoot},
- {local_port, ?IP_PORT},
- {local_ssl_port, ?SSL_PORT} | Config].
+ [{server_root, ServerRoot},
+ {has_ipv6_support, inets_test_lib:has_ipv6_support()},
+ {doc_root, DocRoot},
+ {local_port, ?IP_PORT},
+ {local_ssl_port, ?SSL_PORT} | Config].
%%--------------------------------------------------------------------