diff options
author | Micael Karlberg <[email protected]> | 2010-12-02 21:02:12 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2010-12-02 21:02:12 +0100 |
commit | 5210341783f4c3ca9611c7ea5e630fde4d067f10 (patch) | |
tree | 2dd08a6c2b45f0c33b12c7be2fbfb3ca0b1d223f /lib/snmp/test/snmp_compiler_test.erl | |
parent | bd7410308177659ad15c770d6d4700219bbe6978 (diff) | |
download | otp-5210341783f4c3ca9611c7ea5e630fde4d067f10.tar.gz otp-5210341783f4c3ca9611c7ea5e630fde4d067f10.tar.bz2 otp-5210341783f4c3ca9611c7ea5e630fde4d067f10.zip |
Really time to go home checkin.
Diffstat (limited to 'lib/snmp/test/snmp_compiler_test.erl')
-rw-r--r-- | lib/snmp/test/snmp_compiler_test.erl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/snmp/test/snmp_compiler_test.erl b/lib/snmp/test/snmp_compiler_test.erl index ad77b01362..e2925ed6ed 100644 --- a/lib/snmp/test/snmp_compiler_test.erl +++ b/lib/snmp/test/snmp_compiler_test.erl @@ -44,6 +44,7 @@ oid_conflicts/1, imports/1, module_identity/1, + agent_capabilities/1, tickets/1, otp_6150/1, @@ -96,6 +97,7 @@ all(suite) -> oid_conflicts, imports, module_identity, + agent_capabilities, tickets ]. @@ -169,6 +171,19 @@ module_identity(Config) when is_list(Config) -> ?SKIP(not_yet_implemented). +agent_capabilities(suite) -> + []; +agent_capabilities(Config) when is_list(Config) -> + put(tname,agent_capabilities), + p("starting with Config: ~p~n", [Config]), + + Dir = ?config(comp_dir, Config), + Mib = join(Dir,"AC-TEST-MIB.mib"), + ?line {ok, Mib} = snmpc:compile(Mib, [{outdir, Dir}, {verbosity,trace}]), + io:format("agent_capabilities -> Mib: ~n~p~n", [Mib]), + ok. + + otp_6150(suite) -> []; otp_6150(Config) when is_list(Config) -> |