diff options
author | Peter Andersson <[email protected]> | 2015-02-26 17:42:10 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2015-02-26 17:42:10 +0100 |
commit | bb8ddc6d95844f92f4a3bfd7bfd3073f63bcbf45 (patch) | |
tree | 06b449ec8806414c516de7f4b4a9a85be07a2d8c /lib/common_test/test | |
parent | e54f1984aa17554e7bfb5911f5d2b38b0cc9775c (diff) | |
download | otp-bb8ddc6d95844f92f4a3bfd7bfd3073f63bcbf45.tar.gz otp-bb8ddc6d95844f92f4a3bfd7bfd3073f63bcbf45.tar.bz2 otp-bb8ddc6d95844f92f4a3bfd7bfd3073f63bcbf45.zip |
Add API functions for reading CT event manager references
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_event_handler_SUITE.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_event_handler_SUITE.erl b/lib/common_test/test/ct_event_handler_SUITE.erl index b534a7141d..d6cd9c6912 100644 --- a/lib/common_test/test/ct_event_handler_SUITE.erl +++ b/lib/common_test/test/ct_event_handler_SUITE.erl @@ -29,6 +29,7 @@ -compile(export_all). -include_lib("common_test/include/ct.hrl"). +-include_lib("common_test/src/ct_util.hrl"). %-include_lib("common_test/include/ct_event.hrl"). @@ -59,7 +60,7 @@ end_per_testcase(TestCase, Config) -> suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> - [start_stop, results]. + [start_stop, results, event_mgrs]. groups() -> []. @@ -176,5 +177,10 @@ results(Config) when is_list(Config) -> ok = ct_test_support:verify_events(TestEvents++TestEvents, Events, Config). +event_mgrs(_) -> + ?CT_EVMGR_REF = ct:get_event_mgr_ref(), + ?CT_MEVMGR_REF = ct_master:get_event_mgr_ref(). + + %%%----------------------------------------------------------------- %%% HELP FUNCTIONS |