tests: include config.h and don't include unix headers
authorTim-Philipp Müller <tim@centricular.com>
Fri, 24 Nov 2017 12:41:20 +0000 (13:41 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 24 Nov 2017 12:41:20 +0000 (13:41 +0100)
In many cases the unistd.h includes weren't actually needed.

Preparation for making tests work on Windows with MSVC.

63 files changed:
tests/check/elements/capsfilter.c
tests/check/elements/dataurisrc.c
tests/check/elements/fakesink.c
tests/check/elements/fakesrc.c
tests/check/elements/fdsrc.c
tests/check/elements/filesink.c
tests/check/elements/filesrc.c
tests/check/elements/identity.c
tests/check/elements/multiqueue.c
tests/check/elements/queue.c
tests/check/elements/queue2.c
tests/check/elements/selector.c
tests/check/elements/tee.c
tests/check/elements/valve.c
tests/check/generic/sinks.c
tests/check/generic/states.c
tests/check/gst/gst.c
tests/check/gst/gstabi.c
tests/check/gst/gstatomicqueue.c
tests/check/gst/gstbin.c
tests/check/gst/gstbufferlist.c
tests/check/gst/gstbufferpool.c
tests/check/gst/gstbus.c
tests/check/gst/gstcaps.c
tests/check/gst/gstcapsfeatures.c
tests/check/gst/gstchildproxy.c
tests/check/gst/gstclock.c
tests/check/gst/gstcontext.c
tests/check/gst/gstcontroller.c
tests/check/gst/gstcpp.cc
tests/check/gst/gstevent.c
tests/check/gst/gstghostpad.c
tests/check/gst/gstindex.c
tests/check/gst/gstinfo.c
tests/check/gst/gstiterator.c
tests/check/gst/gstmessage.c
tests/check/gst/gstminiobject.c
tests/check/gst/gstpad.c
tests/check/gst/gstparamspecs.c
tests/check/gst/gstplugin.c
tests/check/gst/gstpoll.c
tests/check/gst/gstpreset.c
tests/check/gst/gstprintf.c
tests/check/gst/gstpromise.c
tests/check/gst/gstprotection.c
tests/check/gst/gstquery.c
tests/check/gst/gstsegment.c
tests/check/gst/gststream.c
tests/check/gst/gststructure.c
tests/check/gst/gstsystemclock.c
tests/check/gst/gsttag.c
tests/check/gst/gsttagsetter.c
tests/check/gst/gsttask.c
tests/check/gst/gsttoc.c
tests/check/gst/gsttocsetter.c
tests/check/gst/gsttracerrecord.c
tests/check/gst/gsturi.c
tests/check/gst/gstvalue.c
tests/check/libs/adapter.c
tests/check/libs/gstharness.c
tests/check/libs/gstnetclientclock.c
tests/check/libs/gstnettimeprovider.c
tests/check/libs/gsttestclock.c

index 008fee97e84543a8c88e299b312cacd18c2ab902..b5c0a7bf5930455a84820485ca8371036dced0ac 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 888c626f743bf0bb5b72fc055fc322ea97687da2..decbe6175cb87c511e71e0bc7e8fa9590c56ce7c 100644 (file)
@@ -17,8 +17,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 0f811b1a19c4029fba0d805dc3a27d35ddf122b1..b8e7321bb3d5dfb02a5956bc49c347436b8ab6d4 100644 (file)
@@ -21,8 +21,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/base/gstpushsrc.h>
 #include <gst/check/gstcheck.h>
index 55605f78620d9542bfe14bd4ad53b8e76bd865e3..8de2c7c96f75a0ca65d92e732043b74ab3822b60 100644 (file)
@@ -19,8 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index ffe6194b70041f55d9dd61909f33f59cbf3e8047..8e1c4217a06d99e523cc13de9c2b740cbd039c5c 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
+#ifdef HAVE_UNISTD_H
 #include <unistd.h>
+#endif
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
index cc42c8aab668cdc3332c3518c738d89bad6a9376..430085f800ad7c34806411b2899f1e675ec47f58 100644 (file)
 #include <glib.h>
 #include <glib/gstdio.h>
 
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>             /* for close() */
-#endif
-
 #include <gst/check/gstcheck.h>
 
 static GstPad *mysrcpad;
@@ -205,7 +201,7 @@ create_temporary_file (void)
     return NULL;
   }
   /* don't want the file, just a filename (hence silly, see above) */
-  close (fd);
+  g_close (fd, NULL);
   g_remove (tmp_fn);
 
   return tmp_fn;
index d60f18f95e1d50cc518115a60a505c94cbc6e6d1..fd42284049868a35ed7b42b55b4edbf8329a3b02 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index bf6677623345eb2043c6520d9c9b8974e1e4b7e8..63f2f0ba430849c7928b384c7cbbe1b495152879 100644 (file)
@@ -20,6 +20,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/check/gstharness.h>
index e99f5552318529a07143031685128c74821dec95..edc5144c9115cd1f2a4f17cc7da6e2d0c5844c04 100644 (file)
@@ -17,8 +17,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
@@ -1339,7 +1340,7 @@ GST_START_TEST (test_limit_changes)
 
   /* Wait until we are actually blocking... we unfortunately can't
    * know that without sleeping */
-  sleep (1);
+  g_usleep (G_USEC_PER_SEC);
   g_object_set (mq, "max-size-buffers", (guint) 3, NULL);
   g_thread_join (thread);
 
index 861990978712b6a4989729ec56396bcfbe81b41f..50f28964b517f703afe4f2f4516b5976b21d795d 100644 (file)
@@ -19,8 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 7a4fc5ca7b688f702f10233fdcc480420fcb17f7..5707d1c097f3891d942a9cf8f321584084c8631e 100644 (file)
@@ -17,6 +17,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index c7320e63b814e73f40a0a2c01bb84c712ea28b89..ac4f3ec793d0cdcdd2c5500218b49cfc15fbaccd 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 80c9e88e4222014ea29cde3ef2f4e9e855705525..acee40c701f8cfe86405e5a3f6cee6a0cc13560b 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index d0314812d0128df9977524d6c6051d018ae12f1e..e6d7f37dd1143b889b0434ae73ad62b713b6e0d5 100644 (file)
@@ -21,6 +21,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/check/gstharness.h>
index 2d606114c5a2d4d19423f78da9018ea0a1b0f328..0a0e95d79b6097218a3de8a80e0b8acc204e6e82 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 8085877a6224953e9f23cf9fd7a5aec7bf00d6cb..7f95686a954a8e9994ee430081a6c9f4515b9495 100644 (file)
@@ -24,8 +24,6 @@
 #  include "config.h"
 #endif
 
-#include <unistd.h>
-
 #include <gst/check/gstcheck.h>
 
 static GList *elements = NULL;
index bbe953d287c38b30a4258f24105602f56ebf8b60..fc8276381ecf83582078667feba5eed4eb1d2e79 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstversion.h>
index 2356cb10acdea8ab2189e52d50c9d4dba19a6882..72d1f337b0d3a8520a679ad024ba2ddbf56677ec 100644 (file)
@@ -19,7 +19,9 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 #include <gst/check/gstcheck.h>
 
 #ifdef HAVE_CPU_I386
index 4262c41d828ac96b088a219b2488995aa5cd7bfc..a516421a1fc305e4fced43a57f651e32f2a78484 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstatomicqueue.h>
index 9ac461ea528c15edc38f5b66e44c26bde4bdcdff..21e6043afdb078d80bdac7b3eaabac765420c060 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/base/gstbasesrc.h>
index a04ebe5ed49387504c222edb7781364976299e14..54e7257297ff9ff3e0308d47ce1a3491d620253e 100644 (file)
@@ -20,6 +20,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstbufferlist.h>
index 8b05324b3069d56e08111add840f6036a7398e99..8b9b0b3514ad453ff1d2417229ca024646264229 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index f0308c6353e9efda3415accf34f76f2852784e9f..f8d6cb0786f1e471d342fc2d07f38d3b8f2cfbaf 100644 (file)
@@ -17,6 +17,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 0809d7a7d75ed28931f343b867b96821d106a606..a85a033e44d3a8517f58862e13da5b6f2e2a6cc8 100644 (file)
@@ -19,7 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstcaps.h>
index 5f76aa7d25f1784906e3804f5f975b739630b43f..9af126f8aba9453c446529d6d393b3252eaebeb1 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstcapsfeatures.h>
index 35c9d3743b1d2eca09b16373710b3095554a80ab..47ce4593415c71e4748461a936040019314d7448 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 3bf1db260bdcd414ac6b37b5e962618c8c0e3c70..92446a5ec293144ef4c07179f3a254f9151ba04d 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 63d8b79988de36804a9e1b8477c2b8153cec6d8f..88441aed75930d9f728d0d4c92487115ea580fdc 100644 (file)
@@ -20,6 +20,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 092a63de8a4aa12a88567b5b7b09aedf9a2ceaa7..9d81c5d931c8361355f312bc18780f33a482d7f5 100644 (file)
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+
 #include <gst/gst.h>
 #include <gst/check/gstcheck.h>
 
-
 /* local test element */
 
 enum
index a96667a42685b599681c978324ab75ed5a2dae3f..eb58be2e2c0e40a9189ce4578fbddf97ae4fcc5f 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/gst.h>
 #include <gst/check/check.h>
index 5e93b5d72bd0872594183f3c0bf725073847b614..d124c91eb8b015f04f0f0db4c8f526918959ac7b 100644 (file)
@@ -18,7 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 6c6f51866c0b14ffbcdb3f4af60852f2f227d9c1..087d034ae8a8bff474d3a66f069409966b0c7935 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/check/gstharness.h>
index 92b18829651f972f333b86fa2a9dfc29ce21f333..6b20b7a09bea49ef5b8f6ee06ec331775fec1eb6 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 763a223b1f8e11dc6c4d2999c716b38ae30b717b..6b4249dd3719c65db442c5eed86313de4b0f1a89 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 663a2d25fe7bdde54cfc6acfd34b2c43322f8fa5..9e989f8682e24a10169cb3615f94874a4cbc0e19 100644 (file)
@@ -18,7 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 9c8c27ab29e9c603d45dd1299d472315104e659b..461e28073c452ae3560798812fef29343433a996 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index d29438e127b3b01f744a94c23797bdee2de7b3e2..e2cc14ebb0ad2a9f2577740700a945659ea23dcc 100644 (file)
@@ -20,6 +20,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index f5317c9d1582623fede416e23488ff4628430b7f..b9def0f1f9c852f17f2610ede1269e35a6494034 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index ad2e99b43bc766b0e9141b8f18549c7a650f1ac1..696c62b5826ffc97cfd77fb8294378146afeb5cf 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gst.h>
index cb4f17d0a8d6cd6c2770604c5409c35e76e2f36a..4550bca97c9270f77f2e09be85d5a3fe9920a691 100644 (file)
@@ -20,8 +20,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
 #include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 2fd756ba73dc9a0c12a48078618c00b09992e1f2..78e73ef3df1a878ba4a0f193080c04a312eb07b3 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
-#include <unistd.h>
 #include <gst/check/gstcheck.h>
 
 #ifdef G_OS_WIN32
 #include <winsock2.h>
 #include <fcntl.h>
 #else
+#include <unistd.h>
 #include <sys/socket.h>
 #endif
 
index 82fca398704887ac3a4aef192ea55006adce81b4..dfa0c4e1a7391af659b0e26b62b38ff13f72ea33 100644 (file)
@@ -28,7 +28,9 @@
 #include <glib/gstdio.h>
 #include <gst/check/gstcheck.h>
 
+#ifdef HAVE_UNISTD_H
 #include <unistd.h>
+#endif
 
 static GType gst_preset_test_get_type (void);
 
@@ -284,7 +286,13 @@ gst_preset_suite (void)
   /* check if we can create presets */
   gst_dir = g_build_filename (g_get_user_data_dir (),
       "gstreamer-" GST_API_VERSION, NULL);
+
+#ifdef G_OS_WIN32
+  can_write = FALSE;            /* FIXME: test properly using win32 API */
+#else
   can_write = (g_access (gst_dir, R_OK | W_OK | X_OK) == 0);
+#endif
+
   g_free (gst_dir);
 
   suite_add_tcase (s, tc);
index 7fca6490ccadedca07533821884d96415a15235e..3e01df0d056b033c0509547034947264e9cd44d2 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index af06f24ef782654db56de130604f031744b34fbd..76533990a20b68f98c3303d26c0f59e10d7d5706 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index b5dae25afb249a8c2222d3115c6870ace6d6126c..1669c81c3b071ba3bf03167c691c3f49d7153ad2 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gstprotection.h>
index efd9898bec062e0ad67ab72438a0842425b2a2fd..547c622fd594838da077cebdd17153eac0a8dba2 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
+
 GST_START_TEST (create_queries)
 {
   GstQuery *query;
index d451e3d7a7e8d329426811ffeab421b489ca76c8..bba31ce902e70d055591a95cde4568d6d91fab8f 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index aa09b2b7d2cbdc0c8b64a2431324c36a86f2dc39..4ff15d02556792c98ac90bb9eeb33c3391180d89 100644 (file)
@@ -18,7 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/gst.h>
 #include <gst/check/gstcheck.h>
index 7d3f2b4f0fcc7ab8be46cfd398d8a7ed2d604b34..cce6665c9ae0a41b960c6fe7d2df8c1aa1d5a643 100644 (file)
@@ -18,7 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/gststructure.h>
 #include <gst/check/gstcheck.h>
index b68d629c8885d90cc388b4bfc81f426e8b593718..a37bb15b27ad0b4aec778016173faef33a97c8d7 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 7a5e5cabf1303e236996e7fe6a1447c8400cf009..d330cb349c56627ab3489251b87a63b447356390 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 11c16b8df06d80bb1a6e26c243e8351f33679d32..10f68fed27b7d98d2ad8fefd7627f96a97fab327 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gst.h>
index db795584fe3bb4f2d65c93c80b0a732e2baf0de4..e18a5081f9f5d59a0783c1e587d5f28a7c2d1f38 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index fc5d07b6b375d2429e2f9deca4bc0162965e7ec5..4abe3ad15d99cbd8b20c1ef5730c0fa3d6b7c135 100644 (file)
@@ -28,6 +28,9 @@
  *   -chapter2    |
  *                -subchapter1
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 047c1e98661803656f0ef3f9e768628962ad0650..f15e1986262b5c7e0ec583c43d998e53a93d05f0 100644 (file)
@@ -16,6 +16,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gst.h>
index 712d6f7e55ba1c9e77def3b2bf09d8ca27a4d5b0..6dd629a00b25fd43a355f12f16afde66c6f7baca 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/gsttracerrecord.h>
index cd23be40bdcedce3648986ce5171e78e1885d733..3f753f6ec3c9fbb23b65cb45f8ff0f807c706285 100644 (file)
@@ -17,6 +17,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 483438311f16e2023b3109b60696763d1b503f69..35bd23ca9c655a82b25962c6ca13f61cd21d282a 100644 (file)
@@ -19,7 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
-
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #define GLIB_DISABLE_DEPRECATION_WARNINGS
 #include <gst/check/gstcheck.h>
index 9bae8e9754f8f11da2a75900c085781e8e25c047..cedb966c82aebe80e0df34a39c9f1d18adeedfdf 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 
index 7cd003a1cebd0bf19d9cd8773131e276a256349a..9edbaee7a84bd6f20201f06cbfae211512243da8 100644 (file)
@@ -18,6 +18,9 @@
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/check/gstharness.h>
index 1434dcb798b3d6b30bbdcd26aca2be3a2de82c92..06ce006282250090495ed8367359c8c560eba43b 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/net/gstnet.h>
 
-#include <unistd.h>
-
 GST_START_TEST (test_instantiation)
 {
   GstClock *client, *local;
index 3ba2bdec83c30ebfda2d5eb4aaf4d6ae9e06ec10..ac5e94d00d4051956a40cfc8c1b0b6a2cdd78756 100644 (file)
  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  * Boston, MA 02110-1301, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/net/gstnet.h>
 
-#include <unistd.h>
-
 GST_START_TEST (test_refcounts)
 {
   GstNetTimeProvider *ntp;
index 7af1168c1fa5fedee4c846345f951bb8bd8b1c9c..e3b86fd4773c1d00408f0e77aaeb35510f24dc53 100644 (file)
@@ -19,6 +19,9 @@
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <gst/check/gstcheck.h>
 #include <gst/check/gsttestclock.h>