From 30626f6a17fb349909e6e2e9c3323ffc96e8b1c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn-Egil=20Dahlberg?= Date: Fri, 22 Apr 2016 15:06:52 +0200 Subject: Eliminate use of ?config() macro --- lib/runtime_tools/test/dbg_SUITE.erl | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'lib/runtime_tools/test/dbg_SUITE.erl') diff --git a/lib/runtime_tools/test/dbg_SUITE.erl b/lib/runtime_tools/test/dbg_SUITE.erl index efa8ff4906..27c4c446f5 100644 --- a/lib/runtime_tools/test/dbg_SUITE.erl +++ b/lib/runtime_tools/test/dbg_SUITE.erl @@ -49,8 +49,8 @@ big(suite) -> []; big(doc) -> ["Rudimentary interface test"]; big(Config) when is_list(Config) -> {ok,OldCurDir} = file:get_cwd(), - Datadir=?config(data_dir, Config), - Privdir=?config(priv_dir, Config), + Datadir=proplists:get_value(data_dir, Config), + Privdir=proplists:get_value(priv_dir, Config), ok=file:set_cwd(Privdir), try %% make sure dbg is stopped (and returns correctly) @@ -91,8 +91,8 @@ tiny(suite) -> []; tiny(doc) -> ["Rudimentary interface test"]; tiny(Config) when is_list(Config) -> {ok,OldCurDir} = file:get_cwd(), - Datadir=?config(data_dir, Config), - Privdir=?config(priv_dir, Config), + Datadir=proplists:get_value(data_dir, Config), + Privdir=proplists:get_value(priv_dir, Config), ok=file:set_cwd(Privdir), try %% compile test module and make sure it is loaded. @@ -290,7 +290,7 @@ saved_patterns(Config) when is_list(Config) -> dbg:tp(dbg,ctp,1,[{'_',[],[{message, blahonga}]}]), {ok,[{saved,2}]} = dbg:tp(dbg,ctp,1,[{['_'],[],[{message, blahonga}]}]), - Privdir=?config(priv_dir, Config), + Privdir=proplists:get_value(priv_dir, Config), file:make_dir(Privdir), File = filename:join([Privdir, "blahonga.ms"]), dbg:wtp(File), @@ -375,7 +375,7 @@ file_port(Config) when is_list(Config) -> {A,B,C} = erlang:now(), FTMP = atom_to_list(?MODULE) ++ integer_to_list(A) ++ "-" ++ integer_to_list(B) ++ "-" ++ integer_to_list(C), - FName = filename:join([?config(data_dir, Config), FTMP]), + FName = filename:join([proplists:get_value(data_dir, Config), FTMP]), Port = dbg:trace_port(file, FName), {ok, _} = dbg:tracer(port, Port), try @@ -407,7 +407,7 @@ file_port2(Config) when is_list(Config) -> {A,B,C} = erlang:now(), FTMP = atom_to_list(?MODULE) ++ integer_to_list(A) ++ "-" ++ integer_to_list(B) ++ "-" ++ integer_to_list(C), - FName = filename:join([?config(data_dir, Config), FTMP]), + FName = filename:join([proplists:get_value(data_dir, Config), FTMP]), %% Ok, lets try with flush and follow_file, not a chance on VxWorks %% with NFS caching... Port2 = dbg:trace_port(file, FName), @@ -454,7 +454,7 @@ file_port_schedfix1(Config) when is_list(Config) -> {A,B,C} = erlang:now(), FTMP = atom_to_list(?MODULE) ++ integer_to_list(A) ++ "-" ++ integer_to_list(B) ++ "-" ++ integer_to_list(C), - FName = filename:join([?config(data_dir, Config), FTMP]), + FName = filename:join([proplists:get_value(data_dir, Config), FTMP]), %% Port = dbg:trace_port(file, {FName, wrap, ".wraplog", 8*1024, 4}), {ok, _} = dbg:tracer(port, Port), @@ -548,7 +548,7 @@ wrap_port(Config) when is_list(Config) -> {A,B,C} = erlang:now(), FTMP = atom_to_list(?MODULE) ++ integer_to_list(A) ++ "-" ++ integer_to_list(B) ++ "-" ++ integer_to_list(C) ++ "-", - FName = filename:join([?config(data_dir, Config), FTMP]), + FName = filename:join([proplists:get_value(data_dir, Config), FTMP]), FNameWildcard = FName++"*"++".trace", %% WrapSize=0 and WrapCnt=11 will force the trace to wrap after %% every trace message, and to contain only the last 10 entries @@ -645,7 +645,7 @@ wrap_port_time(Config) when is_list(Config) -> {A,B,C} = erlang:now(), FTMP = atom_to_list(?MODULE) ++ integer_to_list(A) ++ "-" ++ integer_to_list(B) ++ "-" ++ integer_to_list(C) ++ "-", - FName = filename:join([?config(data_dir, Config), FTMP]), + FName = filename:join([proplists:get_value(data_dir, Config), FTMP]), %% WrapTime=2 and WrapCnt=4 will force the trace to wrap after %% every 2 seconds, and to contain between 3*2 and 4*2 seconds %% of trace entries. -- cgit v1.2.3