diff options
author | Björn Gustavsson <[email protected]> | 2017-05-17 11:48:07 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-05-17 11:48:07 +0200 |
commit | caf36b503f6c43494a89e196a59aa69ad3156087 (patch) | |
tree | f9da680540cf3f23999edee7b712cd4a0cc13bee /erts/emulator/test/code_SUITE.erl | |
parent | a1956797340a09cdf35d60cc6ccf255c9173d3f3 (diff) | |
download | otp-caf36b503f6c43494a89e196a59aa69ad3156087.tar.gz otp-caf36b503f6c43494a89e196a59aa69ad3156087.tar.bz2 otp-caf36b503f6c43494a89e196a59aa69ad3156087.zip |
code_SUITE: Remove unused functions
Diffstat (limited to 'erts/emulator/test/code_SUITE.erl')
-rw-r--r-- | erts/emulator/test/code_SUITE.erl | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/erts/emulator/test/code_SUITE.erl b/erts/emulator/test/code_SUITE.erl index d07166ed98..35f7baf2cf 100644 --- a/erts/emulator/test/code_SUITE.erl +++ b/erts/emulator/test/code_SUITE.erl @@ -229,27 +229,6 @@ multi_proc_purge(Config) when is_list(Config) -> Pid9, Pid10, Pid11, Pid12, Pid13, Pid14, Pid15, Pid16]), ok. -body(F, Fakes) -> - receive - jog -> - 40 = F(3), - erlang:garbage_collect(), - body(F, Fakes); - drop_funs -> - dropped_body() - end. - -dropped_body() -> - receive - X -> exit(X) - end. - -gc() -> - erlang:garbage_collect(), - gc1(). -gc1() -> ok. - - %% Test the erlang:check_old_code/1 BIF. t_check_old_code(Config) when is_list(Config) -> Data = proplists:get_value(data_dir, Config), |