diff options
author | Peter Andersson <[email protected]> | 2013-02-15 15:51:26 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2013-02-15 15:51:26 +0100 |
commit | cd1380fdf78018d1c49678cf985051f48e70f219 (patch) | |
tree | 1450d320f89d3659d434a55dca78f21db1bdd198 /lib/common_test/test/ct_verbosity_SUITE.erl | |
parent | 26c702b122436ec8662fbedc80673421547cdb05 (diff) | |
download | otp-cd1380fdf78018d1c49678cf985051f48e70f219.tar.gz otp-cd1380fdf78018d1c49678cf985051f48e70f219.tar.bz2 otp-cd1380fdf78018d1c49678cf985051f48e70f219.zip |
Solve problem with IO deadlock in ct_util_server
Diffstat (limited to 'lib/common_test/test/ct_verbosity_SUITE.erl')
-rw-r--r-- | lib/common_test/test/ct_verbosity_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_verbosity_SUITE.erl b/lib/common_test/test/ct_verbosity_SUITE.erl index ea0186f38f..0baa483281 100644 --- a/lib/common_test/test/ct_verbosity_SUITE.erl +++ b/lib/common_test/test/ct_verbosity_SUITE.erl @@ -201,7 +201,7 @@ setup(Test, Config) -> undefined -> Opts0 ++ [{event_handler,{?eh,EvHArgs}} | Test]; EvHs -> - Opts0 ++ [{event_handler,[{?eh,EvHArgs}|EvHs]} | + Opts0 ++ [{event_handler,{[?eh|EvHs],EvHArgs}} | proplists:delete(event_handler, Test)] end, ERPid = ct_test_support:start_event_receiver(Config), |