diff options
author | Siri Hansen <[email protected]> | 2013-04-16 10:09:47 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2013-04-19 10:57:13 +0200 |
commit | d5b8652679a978afbadce9982442e605a3162790 (patch) | |
tree | f80e851a39bc91389410b01c82e89123d855a696 /lib/sasl/test/release_handler_SUITE.erl | |
parent | 5228664f1fd41fa3c6e894dd0650d79d906f951b (diff) | |
download | otp-d5b8652679a978afbadce9982442e605a3162790.tar.gz otp-d5b8652679a978afbadce9982442e605a3162790.tar.bz2 otp-d5b8652679a978afbadce9982442e605a3162790.zip |
[sasl] Remove compiler warning in release_handler_SUITE
Diffstat (limited to 'lib/sasl/test/release_handler_SUITE.erl')
-rw-r--r-- | lib/sasl/test/release_handler_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sasl/test/release_handler_SUITE.erl b/lib/sasl/test/release_handler_SUITE.erl index 97ba70c9bd..a56924d5ca 100644 --- a/lib/sasl/test/release_handler_SUITE.erl +++ b/lib/sasl/test/release_handler_SUITE.erl @@ -1112,10 +1112,10 @@ otp_9395_update_many_mods(Conf) when is_list(Conf) -> true = rpc:call(Node,erlang,check_old_code,[m10]), %% Run check_install_release with purge before install this time - {TCheck,{ok, _RelVsn1, []}} = + {_TCheck,{ok, _RelVsn1, []}} = timer:tc(rpc,call,[Node, release_handler, check_install_release, [RelVsn2,[purge]]]), -% ct:log("check_install_release with purge: ~.2f",[TCheck/1000000]), +% ct:log("check_install_release with purge: ~.2f",[_TCheck/1000000]), %% Finally install release after check and purge, and check that %% this install was faster than the first. @@ -1209,10 +1209,10 @@ otp_9395_rm_many_mods(Conf) when is_list(Conf) -> true = rpc:call(Node,erlang,check_old_code,[m10]), %% Run check_install_release with purge before install this time - {TCheck,{ok, _RelVsn1, []}} = + {_TCheck,{ok, _RelVsn1, []}} = timer:tc(rpc,call,[Node, release_handler, check_install_release, [RelVsn2,[purge]]]), -% ct:log("check_install_release with purge: ~.2f",[TCheck/1000000]), +% ct:log("check_install_release with purge: ~.2f",[_TCheck/1000000]), %% Finally install release after check and purge, and check that %% this install was faster than the first. |