aboutsummaryrefslogtreecommitdiffstats
path: root/test/pool_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/pool_SUITE.erl')
-rw-r--r--test/pool_SUITE.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pool_SUITE.erl b/test/pool_SUITE.erl
index 3105aa6..1289415 100644
--- a/test/pool_SUITE.erl
+++ b/test/pool_SUITE.erl
@@ -383,6 +383,14 @@ stop_pool(Config) ->
gun_pool:stop_pool("localhost", Port, #{scope => ?FUNCTION_NAME}).
degraded_configuration_error(Config) ->
+ case os:type() of
+ {win32, _} ->
+ {skip, "The initial connect timeout on Windows is too large."};
+ _ ->
+ do_degraded_configuration_error(Config)
+ end.
+
+do_degraded_configuration_error(Config) ->
doc("Confirm the pool ends up in a degraded state "
"when connection is impossible because of bad configuration."),
Port = config(port, Config),