docs/random/ds/0.9-suggested-changes: random notes
[platform/upstream/gstreamer.git] / testsuite / test_gst_init.c
1 #include <gst/gst.h>
2
3 /* This tests that gst_init() doesn't segfault when passed two NULLs as
4  * parameters, and that it doesn't fail if gst_init() happens to get called
5  * a second time. */
6 int
7 main (int argc, char *argv[])
8 {
9   gst_init(NULL, NULL);
10   gst_init(&argc, &argv);
11
12   return 0;
13 }