mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Merge pull request #168 from tomas-abrahamsson/eunit-inet_gethost_native
Error report killing inet_gethost_native after eunit
This commit is contained in:
commit
9872873fe2
1 changed files with 5 additions and 1 deletions
|
@ -477,7 +477,11 @@ kill_extras(Pids) ->
|
|||
%% This list may require changes as OTP versions and/or
|
||||
%% rebar use cases change.
|
||||
KeepProcs = [cover_server, eunit_server,
|
||||
eqc, eqc_license, eqc_locked],
|
||||
eqc, eqc_license, eqc_locked,
|
||||
%% inet_gethost_native is started on demand, when
|
||||
%% doing name lookups. It is under kernel_sup, under
|
||||
%% a supervisor_bridge.
|
||||
inet_gethost_native],
|
||||
Killed = [begin
|
||||
Info = case erlang:process_info(Pid) of
|
||||
undefined -> [];
|
||||
|
|
Loading…
Reference in a new issue