diff options
author | Ingela Anderton Andin <[email protected]> | 2017-10-10 18:19:23 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-10-24 10:12:18 +0200 |
commit | bb8477f767a0911eb060916a8028c7472ba678a6 (patch) | |
tree | a37e848c6f4e80bc1d0474aaf9a9624e801e0f77 /lib/inets/test | |
parent | c4151bc7a422e0982ad4c0025dd5afc0f221502a (diff) | |
download | otp-bb8477f767a0911eb060916a8028c7472ba678a6.tar.gz otp-bb8477f767a0911eb060916a8028c7472ba678a6.tar.bz2 otp-bb8477f767a0911eb060916a8028c7472ba678a6.zip |
inets: Make sure httpd:stop_service is synchronous
Diffstat (limited to 'lib/inets/test')
-rw-r--r-- | lib/inets/test/inets_SUITE.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/inets/test/inets_SUITE.erl b/lib/inets/test/inets_SUITE.erl index 38b8229389..1abd96a228 100644 --- a/lib/inets/test/inets_SUITE.erl +++ b/lib/inets/test/inets_SUITE.erl @@ -213,7 +213,6 @@ start_httpd(Config) when is_list(Config) -> true = lists:member(Pid0, Pids0), [_|_] = inets:services_info(), inets:stop(httpd, Pid0), - ct:sleep(500), Pids1 = [ServicePid || {_, ServicePid} <- inets:services()], false = lists:member(Pid0, Pids1), {ok, Pid0b} = @@ -222,7 +221,6 @@ start_httpd(Config) when is_list(Config) -> true = lists:member(Pid0b, Pids0b), [_|_] = inets:services_info(), inets:stop(httpd, Pid0b), - ct:sleep(500), Pids1 = [ServicePid || {_, ServicePid} <- inets:services()], false = lists:member(Pid0b, Pids1), {ok, Pid1} = |