|
1 /* GStreamer |
|
2 * |
|
3 * unit test for clock selection |
|
4 * |
|
5 * Copyright (C) <2005> Wim Taymans <wim at fluendo dot com> |
|
6 * |
|
7 * This library is free software; you can redistribute it and/or |
|
8 * modify it under the terms of the GNU Library General Public |
|
9 * License as published by the Free Software Foundation; either |
|
10 * version 2 of the License, or (at your option) any later version. |
|
11 * |
|
12 * This library is distributed in the hope that it will be useful, |
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
15 * Library General Public License for more details. |
|
16 * |
|
17 * You should have received a copy of the GNU Library General Public |
|
18 * License along with this library; if not, write to the |
|
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
20 * Boston, MA 02111-1307, USA. |
|
21 */ |
|
22 |
|
23 #include <unistd.h> |
|
24 |
|
25 #include <gst/check/gstcheck.h> |
|
26 |
|
27 GST_START_TEST (test_add) |
|
28 { |
|
29 GstElement *pipeline; |
|
30 GstStateChangeReturn ret; |
|
31 |
|
32 pipeline = gst_pipeline_new ("pipeline"); |
|
33 fail_unless (pipeline != NULL, "could not create pipeline"); |
|
34 |
|
35 ret = gst_element_set_state (pipeline, GST_STATE_READY); |
|
36 fail_unless (ret == GST_STATE_CHANGE_SUCCESS, "could not set to READY"); |
|
37 |
|
38 /* cleanup */ |
|
39 gst_element_set_state (pipeline, GST_STATE_NULL); |
|
40 gst_object_unref (pipeline); |
|
41 } |
|
42 |
|
43 GST_END_TEST; |
|
44 |
|
45 static Suite * |
|
46 volume_suite (void) |
|
47 { |
|
48 Suite *s = suite_create ("clocks"); |
|
49 TCase *tc_chain = tcase_create ("general"); |
|
50 |
|
51 suite_add_tcase (s, tc_chain); |
|
52 tcase_add_test (tc_chain, test_add); |
|
53 |
|
54 return s; |
|
55 } |
|
56 |
|
57 int |
|
58 main (int argc, char **argv) |
|
59 { |
|
60 int nf; |
|
61 |
|
62 Suite *s = volume_suite (); |
|
63 SRunner *sr = srunner_create (s); |
|
64 |
|
65 gst_check_init (&argc, &argv); |
|
66 |
|
67 srunner_run_all (sr, CK_NORMAL); |
|
68 nf = srunner_ntests_failed (sr); |
|
69 srunner_free (sr); |
|
70 |
|
71 return nf; |
|
72 } |