diff options
author | Lukas Larsson <[email protected]> | 2019-03-19 11:51:34 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2019-03-25 16:34:11 +0100 |
commit | 178721284f342e9c8408c336741e73b61162b138 (patch) | |
tree | 5b1b817be5397110785cdc7c84e10fa8000ab520 /erts | |
parent | b5718f4e13b95904700fe2d82f1907b81ba7196a (diff) | |
download | otp-178721284f342e9c8408c336741e73b61162b138.tar.gz otp-178721284f342e9c8408c336741e73b61162b138.tar.bz2 otp-178721284f342e9c8408c336741e73b61162b138.zip |
erts: Skip heavy process tab tests in debug emu
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/process_SUITE.erl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl index edf08ce0bd..e009f60860 100644 --- a/erts/emulator/test/process_SUITE.erl +++ b/erts/emulator/test/process_SUITE.erl @@ -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]. |