check: add some logging before calling gst_task_cleanup_all()

This commit is contained in:
Tim-Philipp Müller 2009-08-10 11:43:52 +01:00
parent d465851cb7
commit 7e6966faf6

View file

@ -121,7 +121,8 @@ static void __testname (int __i__)\
GST_DEBUG ("test start"); \
tcase_fn_start (""# __testname, __FILE__, __LINE__);
#define GST_END_TEST gst_task_cleanup_all (); \
#define GST_END_TEST GST_LOG ("cleaning up tasks"); \
gst_task_cleanup_all (); \
END_TEST
#else
#define GST_START_TEST(__testname) \
@ -130,7 +131,8 @@ static void __testname ()\
GST_DEBUG ("test start"); \
tcase_fn_start (""# __testname, __FILE__, __LINE__);
#define GST_END_TEST gst_task_cleanup_all (); \
#define GST_END_TEST GST_LOG ("cleaning up tasks"); \
gst_task_cleanup_all (); \
END_TEST
#endif