subprojects: freetyp2: bump to 2.12.1
[platform/upstream/gstreamer.git] / tests / static-plugins / test-gst-full.c
1 #include <gst/gst.h>
2
3 int
4 main (int argc, char *argv[])
5 {
6   GstElement *e;
7
8   gst_init (&argc, &argv);
9
10   /* -Bsymbolic option is introducing a regression where this variable
11    * were duplicated over the use in a dynamical use of libgstreamer-full.so */
12   g_assert_nonnull (_gst_caps_features_any);
13   g_assert_nonnull (_gst_caps_features_memory_system_memory);
14
15   e = gst_element_factory_make ("pipeline", NULL);
16   g_assert_nonnull (e);
17   g_object_unref (e);
18 }