aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2014-03-27 10:46:41 +0100
committerIngela Anderton Andin <[email protected]>2014-03-27 10:46:41 +0100
commit0b4e51d7b84b3e3e69877a3bd2a015a60b776654 (patch)
treefc4e7940d27fa986308e98db764f1799be5fe3f1 /lib/inets
parent1728d63eaa2cab40bc7b53c26835605f4b76429f (diff)
downloadotp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.tar.gz
otp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.tar.bz2
otp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.zip
inets: Avoid Windows XP port problems
Diffstat (limited to 'lib/inets')
-rw-r--r--lib/inets/test/httpd_SUITE.erl7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl
index 3eb8a0818f..4692a00620 100644
--- a/lib/inets/test/httpd_SUITE.erl
+++ b/lib/inets/test/httpd_SUITE.erl
@@ -168,7 +168,12 @@ init_per_group(http_1_1, Config) ->
init_per_group(http_1_0, Config) ->
[{http_version, "HTTP/1.0"} | Config];
init_per_group(http_0_9, Config) ->
- [{http_version, "HTTP/0.9"} | Config];
+ case {os:type(), os:version()} of
+ {{win32, _}, {5,1,2600}} ->
+ {skip, "eaddrinuse XP problem"};
+ _ ->
+ [{http_version, "HTTP/0.9"} | Config]
+ end;
init_per_group(http_htaccess = Group, Config) ->
Path = ?config(doc_root, Config),
catch remove_htaccess(Path),