diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 593ce5b43906a581929782175ed668b24235c5b2..b66ef03a2b1db17cfe6ee9dd602d46fe08c25dfc 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -1147,6 +1147,13 @@ static void conf_play(struct ast_channel *chan, struct ast_conference *conf, enu
 	int len;
 	int res = -1;
 
+	ast_test_suite_event_notify("CONFPLAY", "Channel: %s\r\n"
+									"Conference: %s\r\n"
+									"Marked: %d",
+									chan->name,
+									conf->confno,
+									conf->markedusers);
+
 	if (!ast_check_hangup(chan))
 		res = ast_autoservice_start(chan);
 
@@ -4517,6 +4524,7 @@ static int conf_exec(struct ast_channel *chan, const char *data)
 			/* Not found? */
 			if (ast_strlen_zero(confno)) {
 				res = ast_streamfile(chan, "conf-noempty", ast_channel_language(chan));
+				ast_test_suite_event_notify("PLAYBACK", "Message: conf-noempty");
 				if (!res)
 					ast_waitstream(chan, "");
 			} else {
@@ -4597,6 +4605,9 @@ static int conf_exec(struct ast_channel *chan, const char *data)
 							res = 0;
 						} else {
 							/* Prompt user for pin if pin is required */
+							ast_test_suite_event_notify("PLAYBACK", "Message: conf-getpin\r\n"
+								"Channel: %s",
+								chan->name);
 							res = ast_app_getdata(chan, "conf-getpin", pin + strlen(pin), sizeof(pin) - 1 - strlen(pin), 0);
 						}
 						if (res >= 0) {