mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
tests: info: Fix thread-id pattern matching on Windows
The format modifier for thread-id prints hex value without "0x" prefix on Windows.
This commit is contained in:
parent
b8f5cb5a3a
commit
604766a882
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ compare_gst_log_func (GstDebugCategory * category, GstDebugLevel level,
|
|||
log_line = gst_debug_log_get_line (category, level, file, function, line,
|
||||
object, message);
|
||||
|
||||
match = g_pattern_match_simple ("*:*:*.*0x*DEBUG*check*gstinfo.c:*"
|
||||
match = g_pattern_match_simple ("*:*:*.*0*DEBUG*check*gstinfo.c:*"
|
||||
":info_log_handler_get_line: test message\n", log_line);
|
||||
fail_unless_equals_int (match, TRUE);
|
||||
g_free (log_line);
|
||||
|
|
Loading…
Reference in a new issue