aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib
diff options
context:
space:
mode:
authorZandra Hird <[email protected]>2016-06-08 14:33:01 +0200
committerZandra Hird <[email protected]>2016-06-08 14:33:01 +0200
commitce33a24033cc8c4cea735b5f2898708ce34f546d (patch)
treecf3458a16165ddf3b5089fae0d087caf4cd4fc7d /lib/stdlib
parentb6883e187a88b539fdee3fd6acb7a2554edcd196 (diff)
parent4bcb7bc41effe96ff13238891658f68a8874bb98 (diff)
downloadotp-ce33a24033cc8c4cea735b5f2898708ce34f546d.tar.gz
otp-ce33a24033cc8c4cea735b5f2898708ce34f546d.tar.bz2
otp-ce33a24033cc8c4cea735b5f2898708ce34f546d.zip
Merge branch 'zandra/test_server/unmatched_returns/OTP-13345'
* zandra/test_server/unmatched_returns/OTP-13345: vts - Fix unmatched_return warnings test_server_sup - Fix unmatched_return warnings test_server_node - Fix unmatched_return warnings test_server_io - Fix unmtached_return warnings test_server_gl - Fix unmatched_return warnings test_server_ctrl - Fix unmatched_return warnings test_server - fix unmatched_return warnings remove unused purify functions
Diffstat (limited to 'lib/stdlib')
-rw-r--r--lib/stdlib/test/id_transform_SUITE.erl9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/stdlib/test/id_transform_SUITE.erl b/lib/stdlib/test/id_transform_SUITE.erl
index 54f452825f..3d4ae1a189 100644
--- a/lib/stdlib/test/id_transform_SUITE.erl
+++ b/lib/stdlib/test/id_transform_SUITE.erl
@@ -61,13 +61,8 @@ id_transform(Config) when is_list(Config) ->
"erl_id_trans.erl"]),
{ok,erl_id_trans,Bin} = compile:file(File,[binary]),
{module,erl_id_trans} = code:load_binary(erl_id_trans, File, Bin),
- case test_server:purify_is_running() of
- false ->
- ct:timetrap({hours,1}),
- run_in_test_suite();
- true ->
- {skip,"Valgrind (too slow)"}
- end.
+ ct:timetrap({hours,1}),
+ run_in_test_suite().
run_in_test_suite() ->
SuperDir = filename:dirname(filename:dirname(code:which(?MODULE))),