Skip to content

Commit

Permalink
erts: Skip heavy process tab tests in debug emu
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Mar 25, 2019
1 parent b5718f4 commit 1787212
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions erts/emulator/test/process_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,15 @@ init_per_group(_GroupName, Config) ->
end_per_group(_GroupName, Config) ->
Config.

init_per_testcase(Func, Config)
when Func =:= processes_default_tab_test;
Func =:= processes_this_tab ->
case erlang:system_info(debug_compiled) of
true ->
{skip, "Don't run in debug"};
false ->
[{testcase, Func} | Config]
end;
init_per_testcase(Func, Config) when is_atom(Func), is_list(Config) ->
[{testcase, Func}|Config].

Expand Down

0 comments on commit 1787212

Please sign in to comment.