diff options
author | Siri Hansen <[email protected]> | 2013-03-14 11:06:27 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2013-03-14 11:06:27 +0100 |
commit | 8e44167cb97ccf51a8ee3ca97449613ef3300514 (patch) | |
tree | 7e4dcabf0b3a431a9fd05c48d3f35285095195f9 /lib/observer/test/ttb_SUITE.erl | |
parent | e2ee1f79a7d0ffe02eab4da90d655e77893d1666 (diff) | |
parent | 6ab4b1c2a7a5a89dd8ea4094bd7fb4c23745acfc (diff) | |
download | otp-8e44167cb97ccf51a8ee3ca97449613ef3300514.tar.gz otp-8e44167cb97ccf51a8ee3ca97449613ef3300514.tar.bz2 otp-8e44167cb97ccf51a8ee3ca97449613ef3300514.zip |
Merge branch 'siri/observer/misc-bugs/OTP-10894' into maint
* siri/observer/misc-bugs/OTP-10894:
[observer] Extend timer to allow trace msgs to arrive over tcp/ip
[observer] Kill slave node between tests in etop_SUITE
[observer] Accept current function for a process to be 'undefined' on hipe
[observer] Improve measurement of CPU utilization in etop
[observer] Fix non tail-recusive loop when measuring scheduler utilization
Diffstat (limited to 'lib/observer/test/ttb_SUITE.erl')
-rw-r--r-- | lib/observer/test/ttb_SUITE.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/observer/test/ttb_SUITE.erl b/lib/observer/test/ttb_SUITE.erl index 695d41b48a..f3fcd9f283 100644 --- a/lib/observer/test/ttb_SUITE.erl +++ b/lib/observer/test/ttb_SUITE.erl @@ -1,7 +1,8 @@ +%% %% %CopyrightBegin% %% %% -%% Copyright Ericsson AB 2002-2010. All Rights Reserved. +%% Copyright Ericsson AB 2002-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -57,7 +58,7 @@ init_per_testcase(Case, Config) -> catch error:undef -> ok end, [{watchdog, Dog}|Config]. -end_per_testcase(Case, Config) -> +end_per_testcase(_Case, Config) -> %% try apply(?MODULE,Case,[cleanup,Config]) %% catch error:undef -> ok %% end, |