diff options
author | Micael Karlberg <[email protected]> | 2012-03-05 16:36:43 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-03-05 16:36:43 +0100 |
commit | 66fada8e8d2b44535d12943b9fb3a149e5648d07 (patch) | |
tree | c14c1670b2f088a583ce919d4b8ee285f0e45720 /lib/snmp/test/snmp_test_lib.erl | |
parent | d5bec369e7afa999d23c271c104101e47a35fb45 (diff) | |
parent | c4ef63a7d48b06123fb0b96f38f2a8b7df32fe49 (diff) | |
download | otp-66fada8e8d2b44535d12943b9fb3a149e5648d07.tar.gz otp-66fada8e8d2b44535d12943b9fb3a149e5648d07.tar.bz2 otp-66fada8e8d2b44535d12943b9fb3a149e5648d07.zip |
Merge branch 'bmk/snmp/improve_error_handling_reading_config/OTP-9943' into bmk/snmp/snmp422_integration/r15
Conflicts:
lib/snmp/test/snmp_app_test.erl
Diffstat (limited to 'lib/snmp/test/snmp_test_lib.erl')
-rw-r--r-- | lib/snmp/test/snmp_test_lib.erl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/snmp/test/snmp_test_lib.erl b/lib/snmp/test/snmp_test_lib.erl index bc54361aaf..26115a0c74 100644 --- a/lib/snmp/test/snmp_test_lib.erl +++ b/lib/snmp/test/snmp_test_lib.erl @@ -211,6 +211,10 @@ fix_data_dir(Config) -> init_suite_top_dir(Suite, Config0) -> + io:format("~w:init_suite_top_dir -> entry with" + "~n Suite: ~p" + "~n Config0: ~p" + "~n", [?MODULE, Suite, Config0]), Dir = lookup(priv_dir, Config0), SuiteTopDir = filename:join(Dir, Suite), case file:make_dir(SuiteTopDir) of @@ -230,6 +234,10 @@ init_suite_top_dir(Suite, Config0) -> init_group_top_dir(GroupName, Config) -> + io:format("~w:init_group_top_dir -> entry with" + "~n GroupName: ~p" + "~n Config: ~p" + "~n", [?MODULE, GroupName, Config]), case lists:keysearch(snmp_group_top_dir, 1, Config) of {value, {_Key, Dir}} -> %% This is a sub-group, so create our dir within Dir @@ -263,6 +271,10 @@ init_group_top_dir(GroupName, Config) -> init_testcase_top_dir(Case, Config) -> + io:format("~w:init_testcase_top_dir -> entry with" + "~n Case: ~p" + "~n Config: ~p" + "~n", [?MODULE, Case, Config]), case lists:keysearch(snmp_group_top_dir, 1, Config) of {value, {_Key, Dir}} -> CaseTopDir = filename:join(Dir, Case), |