diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-18 15:11:14 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:56 +0200 |
commit | db1d1ad5f78f11992551112da7019cb3fbfa5bb9 (patch) | |
tree | 70dcee900eeaed57f49654c74a861121a9305f31 /lib/snmp/test/snmp_agent_test_lib.erl | |
parent | c05db88a9ab69bd25cae378210b1b1b35dbd68c6 (diff) | |
download | otp-db1d1ad5f78f11992551112da7019cb3fbfa5bb9.tar.gz otp-db1d1ad5f78f11992551112da7019cb3fbfa5bb9.tar.bz2 otp-db1d1ad5f78f11992551112da7019cb3fbfa5bb9.zip |
snmp: Remove VxWorks
Diffstat (limited to 'lib/snmp/test/snmp_agent_test_lib.erl')
-rw-r--r-- | lib/snmp/test/snmp_agent_test_lib.erl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/snmp/test/snmp_agent_test_lib.erl b/lib/snmp/test/snmp_agent_test_lib.erl index 238832b7c1..757aebfa9b 100644 --- a/lib/snmp/test/snmp_agent_test_lib.erl +++ b/lib/snmp/test/snmp_agent_test_lib.erl @@ -338,12 +338,7 @@ run(Mod, Func, Args, Opts) -> CtxEngineID = snmp_misc:get_option(context_engine_id, Opts, EngineID), Community = snmp_misc:get_option(community, Opts, "all-rights"), ?DBG("run -> start crypto app",[]), - Crypto = case os:type() of - vxworks -> - no_crypto; - _ -> - ?CRYPTO_START() - end, + Crypto = ?CRYPTO_START(), ?DBG("run -> Crypto: ~p", [Crypto]), catch snmp_test_mgr:stop(), % If we had a running mgr from a failed case StdM = filename:join(code:priv_dir(snmp), "mibs") ++ "/", @@ -729,7 +724,6 @@ expect2(Id, F) -> get_timeout() -> get_timeout(os:type()). -get_timeout(vxworks) -> 7000; get_timeout(_) -> 3500. receive_pdu(To) -> @@ -1540,7 +1534,6 @@ rpc(Node, F, A) -> %% timeout() -> %% timeout(os:type()). %% -%% timeout(vxworks) -> 7000; %% timeout(_) -> 3500. |