mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
tests: mountpoints: add more checks for mount point path matching
https://bugzilla.gnome.org/show_bug.cgi?id=771555
This commit is contained in:
parent
c3e58dfdbe
commit
f5b99d8fce
1 changed files with 11 additions and 0 deletions
|
@ -69,6 +69,9 @@ static const gchar *paths[] = {
|
||||||
"/tark/bar/baz",
|
"/tark/bar/baz",
|
||||||
"/tark/bar/baz/t",
|
"/tark/bar/baz/t",
|
||||||
"/boozop",
|
"/boozop",
|
||||||
|
"/raw",
|
||||||
|
"/raw/video",
|
||||||
|
"/raw/snapshot",
|
||||||
};
|
};
|
||||||
|
|
||||||
GST_START_TEST (test_match)
|
GST_START_TEST (test_match)
|
||||||
|
@ -124,6 +127,14 @@ GST_START_TEST (test_match)
|
||||||
fail_unless (tmp == f[4]);
|
fail_unless (tmp == f[4]);
|
||||||
fail_unless (matched == 13);
|
fail_unless (matched == 13);
|
||||||
g_object_unref (tmp);
|
g_object_unref (tmp);
|
||||||
|
tmp = gst_rtsp_mount_points_match (mounts, "/raw/video", &matched);
|
||||||
|
fail_unless (tmp == f[8]);
|
||||||
|
fail_unless (matched == 10);
|
||||||
|
g_object_unref (tmp);
|
||||||
|
tmp = gst_rtsp_mount_points_match (mounts, "/raw/snapshot", &matched);
|
||||||
|
fail_unless (tmp == f[9]);
|
||||||
|
fail_unless (matched == 13);
|
||||||
|
g_object_unref (tmp);
|
||||||
|
|
||||||
g_object_unref (mounts);
|
g_object_unref (mounts);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue