mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-05 16:06:43 +00:00
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
|
/* GStreamer
|
||
|
*
|
||
|
* Common code for GStreamer unittests
|
||
|
*
|
||
|
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Library General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License along with this library; if not, write to the
|
||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
|
* Boston, MA 02111-1307, USA.
|
||
|
*/
|
||
|
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
/* logging function for tests
|
||
|
* a test uses g_message() to log a debug line
|
||
|
* a gst unit test can be run with GST_TEST_DEBUG env var set to see the
|
||
|
* messages
|
||
|
*/
|
||
|
|
||
|
gboolean _gst_check_debug = FALSE;
|
||
|
|
||
|
void gst_check_log_func
|
||
|
(const gchar * log_domain, GLogLevelFlags log_level,
|
||
|
const gchar * message, gpointer user_data)
|
||
|
{
|
||
|
// g_print ("HANDLER CALLED\n");
|
||
|
if (_gst_check_debug) {
|
||
|
g_print (message);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* initialize GStreamer testing */
|
||
|
void
|
||
|
gst_check_init (void)
|
||
|
{
|
||
|
if (g_getenv ("GST_TEST_DEBUG"))
|
||
|
_gst_check_debug = TRUE;
|
||
|
|
||
|
g_log_set_handler (NULL, G_LOG_LEVEL_MESSAGE, gst_check_log_func, NULL);
|
||
|
}
|