diff options
author | Micael Karlberg <[email protected]> | 2019-04-01 18:13:59 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2019-04-11 18:53:02 +0200 |
commit | 2d9d8b868e8a816b8baf08b65035c1e274f3e5b2 (patch) | |
tree | 0881edb72a642ca7a498c5d72cc961568ab75ac9 /lib/snmp/test/snmp_agent_test.erl | |
parent | 7c7f5bc9bbf84055637eb01d5dae3e9db8a2fffc (diff) | |
download | otp-2d9d8b868e8a816b8baf08b65035c1e274f3e5b2.tar.gz otp-2d9d8b868e8a816b8baf08b65035c1e274f3e5b2.tar.bz2 otp-2d9d8b868e8a816b8baf08b65035c1e274f3e5b2.zip |
[snmp|agent|test] Some minor tweaking of (agent) test suite
Improved the test manager printouts to make it easier to
diagnose problems...
Diffstat (limited to 'lib/snmp/test/snmp_agent_test.erl')
-rw-r--r-- | lib/snmp/test/snmp_agent_test.erl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/snmp/test/snmp_agent_test.erl b/lib/snmp/test/snmp_agent_test.erl index f9c18af6ea..b71614ed51 100644 --- a/lib/snmp/test/snmp_agent_test.erl +++ b/lib/snmp/test/snmp_agent_test.erl @@ -1116,15 +1116,15 @@ init_ms(Config, Opts) when is_list(Config) -> Opts1 = [MasterAgentVerbosity, MibsVerbosity, SymStoreVerbosity | Opts], [{vsn, v1} | start_v1_agent(Config, Opts1)]. -init_size_check_mse(Config) when is_list(Config) -> - MibStorage = {mib_storage, [{module, snmpa_mib_storage_ets}]}, - init_size_check_ms(Config, [MibStorage]). - -init_size_check_msd(Config) when is_list(Config) -> - AgentDbDir = ?GCONF(agent_db_dir, Config), - MibStorage = {mib_storage, [{module, snmpa_mib_storage_dets}, - {options, [{dir, AgentDbDir}]}]}, - init_size_check_ms(Config, [MibStorage]). +%% init_size_check_mse(Config) when is_list(Config) -> +%% MibStorage = {mib_storage, [{module, snmpa_mib_storage_ets}]}, +%% init_size_check_ms(Config, [MibStorage]). + +%% init_size_check_msd(Config) when is_list(Config) -> +%% AgentDbDir = ?GCONF(agent_db_dir, Config), +%% MibStorage = {mib_storage, [{module, snmpa_mib_storage_dets}, +%% {options, [{dir, AgentDbDir}]}]}, +%% init_size_check_ms(Config, [MibStorage]). init_size_check_msm(Config) when is_list(Config) -> ?line AgentNode = ?GCONF(snmp_master, Config), |