mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests/metadata: Don't try tags we can't handle. Fixes #584945
This commit is contained in:
parent
4f0b03d357
commit
34100ce1c7
1 changed files with 6 additions and 0 deletions
|
@ -190,7 +190,13 @@ test_tags (const gchar * tag_str)
|
|||
|
||||
GST_START_TEST (test_common_tags)
|
||||
{
|
||||
/* The title tag will only work if the XMP backend is enabled.
|
||||
* And since we don't have any programmatic feedback on whether
|
||||
* a tag is properly handled or not... we need to do this kind
|
||||
* of hack. */
|
||||
#if HAVE_XMP
|
||||
test_tags ("taglist,title=\"test image\"");
|
||||
#endif
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
|
Loading…
Reference in a new issue