aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorZandra <[email protected]>2016-05-18 11:54:53 +0200
committerZandra Hird <[email protected]>2016-06-07 15:40:27 +0200
commitd8c8e0c66d6faf5402682f3a8568362eedebdfee (patch)
treee559be99d33b44a9ed1f2e549fd468a2ca25585c /erts
parenta1086ac00ece8044b4055047aaac2f912a5ca18e (diff)
downloadotp-d8c8e0c66d6faf5402682f3a8568362eedebdfee.tar.gz
otp-d8c8e0c66d6faf5402682f3a8568362eedebdfee.tar.bz2
otp-d8c8e0c66d6faf5402682f3a8568362eedebdfee.zip
remove unused purify functions
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/test/process_SUITE.erl6
1 files changed, 1 insertions, 5 deletions
diff --git a/erts/emulator/test/process_SUITE.erl b/erts/emulator/test/process_SUITE.erl
index eaa4026a8a..4ebc1f5782 100644
--- a/erts/emulator/test/process_SUITE.erl
+++ b/erts/emulator/test/process_SUITE.erl
@@ -147,11 +147,7 @@ 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,
- Iter = case test_server:purify_is_running() of
- true -> 10;
- false -> 150
- end,
- test_server:do_times(Iter, Fun),
+ test_server:do_times(150, Fun),
ok.
binary_owner(Bin) when is_binary(Bin) ->