aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/test/port_call_SUITE.erl
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2018-07-03 21:45:29 +0200
committerSverker Eriksson <[email protected]>2018-07-16 17:44:31 +0200
commit3e2508e0f6dbd973d80c96418a989d1fa525767a (patch)
treefaf6c8ff5371a128243d1fcc58fa1e34ded71606 /lib/erl_interface/test/port_call_SUITE.erl
parentedabb78bccd26fe817844d92cd04d8ac7fb8e817 (diff)
downloadotp-3e2508e0f6dbd973d80c96418a989d1fa525767a.tar.gz
otp-3e2508e0f6dbd973d80c96418a989d1fa525767a.tar.bz2
otp-3e2508e0f6dbd973d80c96418a989d1fa525767a.zip
erl_interface: Add valgrind ability for test port programs
Run under valgrind if environment variable VALGRIND_LOG_DIR is set.
Diffstat (limited to 'lib/erl_interface/test/port_call_SUITE.erl')
-rw-r--r--lib/erl_interface/test/port_call_SUITE.erl6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/erl_interface/test/port_call_SUITE.erl b/lib/erl_interface/test/port_call_SUITE.erl
index fb10bd895f..d31b2372ab 100644
--- a/lib/erl_interface/test/port_call_SUITE.erl
+++ b/lib/erl_interface/test/port_call_SUITE.erl
@@ -32,7 +32,9 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--export([all/0, suite/0, basic/1]).
+-export([all/0, suite/0,
+ init_per_testcase/2,
+ basic/1]).
% Private exports
-include_lib("common_test/include/ct.hrl").
@@ -44,6 +46,8 @@ suite() ->
all() ->
[basic].
+init_per_testcase(Case, Config) ->
+ runner:init_per_testcase(?MODULE, Case, Config).
basic(Config) when is_list(Config) ->
case os:type() of