diff options
author | Sverker Eriksson <[email protected]> | 2017-08-29 16:16:33 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2017-08-30 16:26:40 +0200 |
commit | d83975178956dbaed84c315ba249a571ce796cb3 (patch) | |
tree | 9fed01d1f57c753b7e470b7b70371ce9bd0afc86 /erts/emulator/test/process_SUITE.erl | |
parent | 7c5fcd3f2701cbb614930682ac52ff75b9c26e6c (diff) | |
download | otp-d83975178956dbaed84c315ba249a571ce796cb3.tar.gz otp-d83975178956dbaed84c315ba249a571ce796cb3.tar.bz2 otp-d83975178956dbaed84c315ba249a571ce796cb3.zip |
Revert "remove unused purify functions"
This reverts commit d8c8e0c66d6faf5402682f3a8568362eedebdfee.
Diffstat (limited to 'erts/emulator/test/process_SUITE.erl')
-rw-r--r-- | erts/emulator/test/process_SUITE.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl index 6ded7ff1c9..bcf459e4fb 100644 --- a/erts/emulator/test/process_SUITE.erl +++ b/erts/emulator/test/process_SUITE.erl @@ -152,7 +152,11 @@ spawn_with_binaries(Config) when is_list(Config) -> TwoMeg = lists:duplicate(1024, L), Fun = fun() -> spawn(?MODULE, binary_owner, [list_to_binary(TwoMeg)]), receive after 1 -> ok end end, - test_server:do_times(150, Fun), + Iter = case test_server:purify_is_running() of + true -> 10; + false -> 150 + end, + test_server:do_times(Iter, Fun), ok. binary_owner(Bin) when is_binary(Bin) -> |