libs: remove gdp dataprotocol library
[platform/upstream/gstreamer.git] / tests / check / libs / libsabi.c
1 /* GStreamer
2  * Copyright (C) 2005 Wim Taymans <wim@fluendo.com>
3  *
4  * libsabi.c: Unit test for ABI compatibility
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include <config.h>
23 #include <gst/check/gstcheck.h>
24
25 #include <gst/base/gstadapter.h>
26 #include <gst/base/gstbasesink.h>
27 #include <gst/base/gstbasesrc.h>
28 #include <gst/base/gstbasetransform.h>
29 #include <gst/base/gstbitreader.h>
30 #include <gst/base/gstbytereader.h>
31 #include <gst/base/gstbytewriter.h>
32 #include <gst/base/gstcollectpads.h>
33 #include <gst/base/gstpushsrc.h>
34 #include <gst/base/gsttypefindhelper.h>
35 #include <gst/controller/gstcontroller.h>
36 #include <gst/controller/gstcontrolsource.h>
37 #include <gst/controller/gstinterpolationcontrolsource.h>
38 #include <gst/controller/gstlfocontrolsource.h>
39 #include <gst/net/gstnet.h>
40 #include <gst/net/gstnetclientclock.h>
41 #include <gst/net/gstnettimepacket.h>
42 #include <gst/net/gstnettimeprovider.h>
43
44 #ifdef HAVE_CPU_I386
45 #include "struct_i386.h"
46 #define HAVE_ABI_SIZES TRUE
47 #else
48 #ifdef __powerpc64__
49 #include "struct_ppc64.h"
50 #define HAVE_ABI_SIZES TRUE
51 #else
52 #ifdef __powerpc__
53 #include "struct_ppc32.h"
54 #define HAVE_ABI_SIZES TRUE
55 #else
56 #ifdef HAVE_CPU_X86_64
57 #include "struct_x86_64.h"
58 #define HAVE_ABI_SIZES TRUE
59 #else
60 #ifdef HAVE_CPU_HPPA
61 #include "struct_hppa.h"
62 #define HAVE_ABI_SIZES TRUE
63 #else
64 #ifdef HAVE_CPU_SPARC
65 #include "struct_sparc.h"
66 #define HAVE_ABI_SIZES TRUE
67 #else
68 #ifdef HAVE_CPU_ARM
69 #include "struct_arm.h"
70 #define HAVE_ABI_SIZES TRUE
71 #else
72 /* in case someone wants to generate a new arch */
73 #include "struct_i386.h"
74 #define HAVE_ABI_SIZES FALSE
75 #endif
76 #endif
77 #endif
78 #endif
79 #endif
80 #endif
81 #endif
82
83 GST_START_TEST (test_ABI)
84 {
85   gst_check_abi_list (list, HAVE_ABI_SIZES);
86 }
87
88 GST_END_TEST;
89
90 static Suite *
91 libsabi_suite (void)
92 {
93   Suite *s = suite_create ("LibsABI");
94   TCase *tc_chain = tcase_create ("size check");
95
96   tcase_set_timeout (tc_chain, 0);
97
98   suite_add_tcase (s, tc_chain);
99   tcase_add_test (tc_chain, test_ABI);
100   return s;
101 }
102
103 GST_CHECK_MAIN (libsabi);