diff options
author | Ingela Anderton Andin <[email protected]> | 2014-03-27 10:46:41 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-03-27 10:46:41 +0100 |
commit | 0b4e51d7b84b3e3e69877a3bd2a015a60b776654 (patch) | |
tree | fc4e7940d27fa986308e98db764f1799be5fe3f1 /lib/inets/test | |
parent | 1728d63eaa2cab40bc7b53c26835605f4b76429f (diff) | |
download | otp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.tar.gz otp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.tar.bz2 otp-0b4e51d7b84b3e3e69877a3bd2a015a60b776654.zip |
inets: Avoid Windows XP port problems
Diffstat (limited to 'lib/inets/test')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 7 |
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), |