diff options
author | Henrik Nord <[email protected]> | 2011-09-13 12:15:25 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-09-13 12:15:25 +0200 |
commit | ae7e9b6d23c63bf73d9e22ea0b21b79b51900655 (patch) | |
tree | 014a38031436168347d42d9fe906a5abda114fd7 /lib/snmp/test | |
parent | 7b5a8a65d1f4e8070fd1d771a79b7b5237100c63 (diff) | |
parent | e9e118a25ee822e4568d785844d249e083cd88cf (diff) | |
download | otp-ae7e9b6d23c63bf73d9e22ea0b21b79b51900655.tar.gz otp-ae7e9b6d23c63bf73d9e22ea0b21b79b51900655.tar.bz2 otp-ae7e9b6d23c63bf73d9e22ea0b21b79b51900655.zip |
Merge branch 'dev' into major
Conflicts:
lib/asn1/doc/src/asn1ct.xml
Diffstat (limited to 'lib/snmp/test')
-rw-r--r-- | lib/snmp/test/snmp_compiler_test.erl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/snmp/test/snmp_compiler_test.erl b/lib/snmp/test/snmp_compiler_test.erl index cee11ba97a..c964b08168 100644 --- a/lib/snmp/test/snmp_compiler_test.erl +++ b/lib/snmp/test/snmp_compiler_test.erl @@ -47,7 +47,7 @@ module_identity/1, agent_capabilities/1, module_compliance/1, - warnings_as_errors/1, + warnings_as_errors/1, otp_6150/1, otp_8574/1, @@ -101,7 +101,7 @@ all() -> module_identity, agent_capabilities, module_compliance, - warnings_as_errors, + warnings_as_errors, {group, tickets} ]. @@ -282,8 +282,8 @@ warnings_as_errors(Config) when is_list(Config) -> MibDir = ?config(mib_dir, Config), MibFile = join(MibDir, "OTP8574-MIB.mib"), OutFile = join(Dir, "OTP8574-MIB.bin"), - Opts = [{group_check, false}, - {outdir, Dir}, + Opts = [{group_check, false}, + {outdir, Dir}, {verbosity, trace}, relaxed_row_name_assign_check], {error, compilation_failed} = @@ -291,6 +291,7 @@ warnings_as_errors(Config) when is_list(Config) -> false = filelib:is_regular(OutFile), {ok, _} = snmpc:compile(MibFile, Opts), true = filelib:is_regular(OutFile), + ok = file:delete(OutFile), ok. |