[gstreamer-bugs] [Bug 393796] New: 21 of 44 tests failed w/ HP-UX 11.11 & native compiler

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Sat Jan 6 20:41:57 PST 2007


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=393796

  GStreamer | gstreamer (core) | Ver: 0.10.11

           Summary: 21 of 44 tests failed w/ HP-UX 11.11 & native compiler
           Product: GStreamer
           Version: 0.10.11
          Platform: Other
        OS/Version: HP-UX
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gstreamer (core)
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: imunro at netspace.net.au
         QAContact: gstreamer-bugs at lists.sourceforge.net
     GNOME version: 2.15/2.16
   GNOME milestone: Unspecified


Made the following changes to enable build:

diff -ur -X /work/scripts/exclude10.lst
/tmp/gstreamer-0.10.11/libs/gst/check/Makefile.am
/work/build/gstreamer-0.10.11/libs/gst/check/Makefile.am
--- /tmp/gstreamer-0.10.11/libs/gst/check/Makefile.am   2006-09-28
19:11:28.000000000 +0800
+++ /work/build/gstreamer-0.10.11/libs/gst/check/Makefile.am    2007-01-05
23:26:50.000000000 +0800
@@ -9,7 +9,6 @@
 libgstcheck_ at GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
 libgstcheck_ at GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS) $(CHECK_LIBS) \
        $(top_builddir)/gst/libgstreamer- at GST_MAJORMINOR@.la
-libgstcheck_ at GST_MAJORMINOR@_la_LDFLAGS = -Wl,--export-dynamic \
 libgstbase_ at GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS)
$(GST_LT_LDFLAGS)

 libgstcheck_ at GST_MAJORMINOR@includedir =               \
diff -ur -X /work/scripts/exclude10.lst
/tmp/gstreamer-0.10.11/libs/gst/net/gstnettimepacket.c
/work/build/gstreamer-0.10.11/libs/gst/net/gstnettimepacket.c
--- /tmp/gstreamer-0.10.11/libs/gst/net/gstnettimepacket.c      2006-09-05
16:35:20.000000000 +0800
+++ /work/build/gstreamer-0.10.11/libs/gst/net/gstnettimepacket.c      
2007-01-05 23:25:12.000000000 +0800
@@ -34,7 +34,7 @@

 #include <glib.h>

-#ifdef __CYGWIN__
+#if defined (__CYGWIN__) || defined (HAVE_CPU_HPPA)
 # include <unistd.h>
 # include <fcntl.h>
 #endif
@@ -171,7 +171,7 @@
 gst_net_time_packet_send (const GstNetTimePacket * packet, gint fd,
     struct sockaddr * addr, socklen_t len)
 {
-#if defined __CYGWIN__
+#if defined (__CYGWIN__) || defined (HAVE_CPU_HPPA)
   gint fdflags;
 #elif defined G_OS_WIN32
   gulong flags;
@@ -182,7 +182,7 @@

   g_return_val_if_fail (packet != NULL, -EINVAL);

-#ifdef __CYGWIN__
+#if defined (__CYGWIN__) || defined (HAVE_CPU_HPPA)
   send_flags = 0;
   fdflags = fcntl (fd, F_GETFL);
   fcntl (fd, F_SETFL, fdflags | O_NONBLOCK);
@@ -201,7 +201,7 @@
   ret = sendto (fd, buffer, GST_NET_TIME_PACKET_SIZE, send_flags, addr, len);
 #endif

-#ifdef __CYGWIN__
+#if defined (__CYGWIN__) || defined (HAVE_CPU_HPPA)
   fcntl (fd, F_SETFL, fdflags);
 #endif

diff -ur -X /work/scripts/exclude10.lst
/tmp/gstreamer-0.10.11/tests/check/gst/gstpad.c
/work/build/gstreamer-0.10.11/tests/check/gst/gstpad.c
--- /tmp/gstreamer-0.10.11/tests/check/gst/gstpad.c     2006-10-10
00:33:29.000000000 +0800
+++ /work/build/gstreamer-0.10.11/tests/check/gst/gstpad.c      2007-01-05
23:46:11.000000000 +0800
@@ -310,7 +310,7 @@
   GstPadLinkReturn plr;
   GstCaps *caps;
   GstBuffer *buffer;
-  ulong id;
+  gulong id;

   /* setup */
   sink = gst_pad_new ("sink", GST_PAD_SINK);
diff -ur -X /work/scripts/exclude10.lst
/tmp/gstreamer-0.10.11/tests/check/pipelines/parse-launch.c
/work/build/gstreamer-0.10.11/tests/check/pipelines/parse-launch.c
--- /tmp/gstreamer-0.10.11/tests/check/pipelines/parse-launch.c 2006-10-10
01:15:39.000000000 +0800
+++ /work/build/gstreamer-0.10.11/tests/check/pipelines/parse-launch.c 
2007-01-05 23:52:26.000000000 +0800
@@ -23,8 +23,10 @@
 #  include "config.h"
 #endif

+#if defined HAVE_VALGRIND
 #include <valgrind/valgrind.h>
 #include <valgrind/memcheck.h>
+#endif

 #include <gst/check/gstcheck.h>

@@ -329,7 +331,9 @@
     g_print ("Trying pipe: %s\n", *s);
     expected_fail_pipe (*s);
 #endif
+#if defined HAVE_VALGRIND
     VALGRIND_DO_LEAK_CHECK;
+#endif
   }
 }

MSG_DONTWAIT is not defined on HP-UX. HAVE_CPU_HPPA shoud probably be __hpux__,
but this is not defined.

gmake  check-TESTS
gmake[3]: Entering directory `/work/build/gstreamer-0.10.11/tests/check'
Running suite(s): GstABI
No structure size list was generated for this architecture.
Run with GST_ABI environment variable set to output header.
100%: Checks: 1, Failures: 0, Errors: 0
PASS: gst/gstabi
Running suite(s): GstBuffer
100%: Checks: 8, Failures: 0, Errors: 0
PASS: gst/gstbuffer
Running suite(s): GstBus
100%: Checks: 3, Failures: 0, Errors: 0
PASS: gst/gstbus
Running suite(s): GstCaps
100%: Checks: 11, Failures: 0, Errors: 0
PASS: gst/gstcaps
Running suite(s): GstInfo
100%: Checks: 2, Failures: 0, Errors: 0
PASS: gst/gstinfo
Running suite(s): GstIterator
100%: Checks: 3, Failures: 0, Errors: 0
PASS: gst/gstiterator
Running suite(s): GstMessage
100%: Checks: 1, Failures: 0, Errors: 0
PASS: gst/gstmessage
Running suite(s): GstMiniObject
100%: Checks: 6, Failures: 0, Errors: 0
PASS: gst/gstminiobject
Running suite(s): GstObject
100%: Checks: 8, Failures: 0, Errors: 0
PASS: gst/gstobject
Running suite(s): GstPad
100%: Checks: 8, Failures: 0, Errors: 0
PASS: gst/gstpad
Running suite(s): GstSegment
100%: Checks: 10, Failures: 0, Errors: 0
PASS: gst/gstsegment
Running suite(s): GstSystemClock
100%: Checks: 4, Failures: 0, Errors: 0
PASS: gst/gstsystemclock
Running suite(s): GstStructure
100%: Checks: 5, Failures: 0, Errors: 0
PASS: gst/gststructure
Running suite(s): GstTag
100%: Checks: 4, Failures: 0, Errors: 0
PASS: gst/gsttag
Running suite(s): GstTask
100%: Checks: 5, Failures: 0, Errors: 0
PASS: gst/gsttask
Running suite(s): GstValue
100%: Checks: 21, Failures: 0, Errors: 0
PASS: gst/gstvalue
Running suite(s): GstXML
100%: Checks: 1, Failures: 0, Errors: 0
PASS: gst/gstxml
Running suite(s): states
100%: Checks: 1, Failures: 0, Errors: 0
PASS: generic/states
Running suite(s): Pipelines
0%: Checks: 2, Failures: 2, Errors: 0
pipelines/simple-launch-lines.c:32:F:linear:test_2_elements:0: Assertion
'GST_IS_PIPELINE (pipeline)' failed
pipelines/simple-launch-lines.c:162:F:linear:test_stop_from_app:0: Assertion
'fakesrc && fakesink && pipeline' failed
FAIL: pipelines/simple-launch-lines
Running suite(s): Pipeline cleanup


Unexpected critical/warning: file pipelines/cleanup.c: line 32: assertion
`GST_IS_PIPELINE (pipeline)' failed
0%: Checks: 1, Failures: 1, Errors: 0
gstcheck.c:66:F:linear:test_pipeline_unref:0: Unexpected critical/warning: file
pipelines/cleanup.c: line 32: assertion `GST_IS_PIPELINE (pipeline)' failed
FAIL: pipelines/cleanup
Running suite(s): Parse Launch syntax
40%: Checks: 5, Failures: 3, Errors: 0
pipelines/parse-launch.c:41:F:parselaunch:test_launch_lines:0: Error parsing
pipeline filesrc location=music.mp3 ! identity silent=true ! fakesink
silent=true: no element "filesrc"
pipelines/parse-launch.c:41:F:parselaunch:test_launch_lines2:0: Error parsing
pipeline fakesrc: no element "fakesrc"
pipelines/parse-launch.c:41:F:parselaunch:delayed_link:0: Error parsing
pipeline parsetestelement name=src ! fakesink silent=true name=sink: no element
"parsetestelement"
FAIL: pipelines/parse-launch
Running suite(s): Gst


Unexpected critical/warning: file gstobject.c: line 346: assertion `object !=
NULL' failed
83%: Checks: 6, Failures: 1, Errors: 0
gstcheck.c:66:F:gst tests:test_new_fakesrc:0: Unexpected critical/warning: file
gstobject.c: line 346: assertion `object != NULL' failed
FAIL: gst/gst
Running suite(s): GstBin
20%: Checks: 10, Failures: 8, Errors: 0
gst/gstbin.c:55:F:bin tests:test_interface:0: Could not create filesrc
gst/gstbin.c:521:F:bin tests:test_children_state_change_order_flagged_sink:0:
Could not create fakesrc
gst/gstbin.c:624:F:bin tests:test_children_state_change_order_semi_sink:0:
Could not create fakesrc
gst/gstbin.c:722:F:bin tests:test_children_state_change_order_two_sink:0: Could
not create fakesrc
gst/gstbin.c:169:F:bin tests:test_message_state_changed_child:0: Could not
create fakesrc
gst/gstbin.c:228:F:bin tests:test_message_state_changed_children:0: Could not
create fakesrc
gst/gstbin.c:373:F:bin tests:test_watch_for_state_change:0: Could not create
fakesrc
gst/gstbin.c:432:F:bin tests:test_add_linked:0: Could not create fakesrc
FAIL: gst/gstbin
Running suite(s): GstElement


Unexpected critical/warning: file gstelement.c: line 609: assertion
`GST_IS_ELEMENT (element)' failed


Unexpected critical/warning: file gstelement.c: line 609: assertion
`GST_IS_ELEMENT (element)' failed


Unexpected critical/warning: file gstelement.c: line 2774: assertion
`GST_IS_ELEMENT (element)' failed


Unexpected critical/warning: file gstutils.c: line 1354: assertion
`GST_IS_ELEMENT (src)' failed
16%: Checks: 6, Failures: 5, Errors: 0
gstcheck.c:66:F:element tests:test_add_remove_pad:0: Unexpected
critical/warning: file gstelement.c: line 609: assertion `GST_IS_ELEMENT
(element)' failed
gstcheck.c:66:F:element tests:test_add_pad_unref_element:0: Unexpected
critical/warning: file gstelement.c: line 609: assertion `GST_IS_ELEMENT
(element)' failed
gstcheck.c:66:F:element tests:test_error_no_bus:0: Unexpected critical/warning:
file gstelement.c: line 2774: assertion `GST_IS_ELEMENT (element)' failed
gstcheck.c:66:F:element tests:test_link:0: Unexpected critical/warning: file
gstutils.c: line 1354: assertion `GST_IS_ELEMENT (src)' failed
gst/gstelement.c:176:F:element tests:test_class:0: Failure 'factory == NULL'
occured
FAIL: gst/gstelement
Running suite(s): GstEvent
50%: Checks: 2, Failures: 1, Errors: 0
gst/gstevent.c:379:F:customevents:send_custom_events:0: Failure '(fakesrc =
gst_element_factory_make ("fakesrc", NULL)) == NULL' occured
FAIL: gst/gstevent
Running suite(s): GstGhostPad


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed
20%: Checks: 10, Failures: 7, Errors: 1
gstcheck.c:66:F:ghost pad tests:test_remove1:0: Unexpected critical/warning:
file gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)' failed
gst/gstghostpad.c:82:E:ghost pad tests:test_remove2:0: (after this point)
Received signal 11 (Segmentation fault)
gstcheck.c:66:F:ghost pad tests:test_link:0: Unexpected critical/warning: file
gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)' failed
gstcheck.c:66:F:ghost pad tests:test_ghost_pads:0: Unexpected critical/warning:
file gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:ghost pad tests:test_ghost_pads_bin:0: Unexpected
critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)'
failed
gstcheck.c:66:F:ghost pad tests:test_ghost_pads_notarget:0: Unexpected
critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)'
failed
gstcheck.c:66:F:ghost pad tests:test_ghost_pads_block:0: Unexpected
critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)'
failed
gstcheck.c:66:F:ghost pad tests:test_ghost_pads_probes:0: Unexpected
critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)'
failed
FAIL: gst/gstghostpad
Running suite(s): GstPlugin
25%: Checks: 8, Failures: 5, Errors: 1
gst/gstplugin.c:94:F:general:test_load_coreelements:0: Failed to find
coreelements plugin
gst/gstplugin.c:117:E:general:test_registry_get_plugin_list:0: (after this
point) Received signal 11 (Segmentation fault)
gst/gstplugin.c:147:F:general:test_find_plugin:0: Failed to find coreelements
plugin
gst/gstplugin.c:168:F:general:test_find_feature:0: Failed to find identity
element factory
gst/gstplugin.c:186:F:general:test_find_element:0: Failed to find identity
element factory
gst/gstplugin.c:252:F:general:test_version_checks:0: Unexpected version check
result
FAIL: gst/gstplugin
Running suite(s): GstQuery
50%: Checks: 2, Failures: 1, Errors: 0
gst/gstquery.c:190:F:queries:test_queries:0: Could not create fakesrc
FAIL: gst/gstquery
Running suite(s): GstUtils


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed

** ERROR **: ERROR in gst_parse_bin_from_description (identity): no element
"identity"
aborting...


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gstutils.c: line 1603: assertion
`GST_IS_ELEMENT (src)' failed
54%: Checks: 11, Failures: 4, Errors: 1
gstcheck.c:66:F:general:test_buffer_probe_n_times:0: Unexpected
critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT (object)'
failed
gstcheck.c:66:F:general:test_buffer_probe_once:0: Unexpected critical/warning:
file gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gst/gstutils.c:337:E:general:test_parse_bin_from_description:0: (after this
point) Received signal 6 (Aborted)
gstcheck.c:66:F:general:test_element_found_tags:0: Unexpected critical/warning:
file gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:test_element_unlink:0: Unexpected critical/warning:
file gstutils.c: line 1603: assertion `GST_IS_ELEMENT (src)' failed
FAIL: gst/gstutils
Running suite(s): Sinks


Unexpected critical/warning: file gstelement.c: line 2099: assertion
`GST_IS_ELEMENT (element)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gstbin.c: line 868: assertion `GST_IS_ELEMENT
(element)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed


Unexpected critical/warning: file gobject.c: line 1201: assertion `G_IS_OBJECT
(object)' failed
0%: Checks: 7, Failures: 7, Errors: 0
gstcheck.c:66:F:general:test_sink:0: Unexpected critical/warning: file
gstelement.c: line 2099: assertion `GST_IS_ELEMENT (element)' failed
gstcheck.c:66:F:general:test_sink_completion:0: Unexpected critical/warning:
file gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:test_src_sink:0: Unexpected critical/warning: file
gstbin.c: line 868: assertion `GST_IS_ELEMENT (element)' failed
gstcheck.c:66:F:general:test_livesrc_remove:0: Unexpected critical/warning:
file gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:test_livesrc_sink:0: Unexpected critical/warning: file
gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:test_livesrc2_sink:0: Unexpected critical/warning: file
gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:test_livesrc3_sink:0: Unexpected critical/warning: file
gobject.c: line 1201: assertion `G_IS_OBJECT (object)' failed
FAIL: generic/sinks
Running suite(s): fakesink
0%: Checks: 2, Failures: 2, Errors: 0
elements/fakesink.c:88:F:general:test_clipping:0: Failure 'sink == NULL'
occured
elements/fakesink.c:231:F:general:test_preroll_sync:0: Failure 'sink == NULL'
occured
FAIL: elements/fakesink
Running suite(s): fakesrc
0%: Checks: 5, Failures: 5, Errors: 0
gstcheck.c:145:F:general:test_num_buffers:0: Could not create a fakesrc
gstcheck.c:145:F:general:test_sizetype_empty:0: Could not create a fakesrc
gstcheck.c:145:F:general:test_sizetype_fixed:0: Could not create a fakesrc
gstcheck.c:145:F:general:test_sizetype_random:0: Could not create a fakesrc
gstcheck.c:145:F:general:test_no_preroll:0: Could not create a fakesrc
FAIL: elements/fakesrc
Running suite(s): fdsrc
0%: Checks: 3, Failures: 3, Errors: 0
gstcheck.c:145:F:general:test_num_buffers:0: Could not create a fdsrc
gstcheck.c:145:F:general:test_nonseeking:0: Could not create a fdsrc
gstcheck.c:145:F:general:test_seeking:0: Could not create a fdsrc
FAIL: elements/fdsrc
Running suite(s): filesrc
0%: Checks: 3, Failures: 3, Errors: 0
gstcheck.c:145:F:general:test_seeking:0: Could not create a filesrc
gstcheck.c:145:F:general:test_pull:0: Could not create a filesrc
gstcheck.c:145:F:general:test_coverage:0: Could not create a filesrc
FAIL: elements/filesrc
Running suite(s): identity
0%: Checks: 1, Failures: 1, Errors: 0
gstcheck.c:145:F:general:test_one_buffer:0: Could not create a identity
FAIL: elements/identity
Running suite(s): GstBaseSrc

** ERROR **: file libs/basesrc.c: line 279: assertion failed: (sink != NULL)
aborting...

** ERROR **: file libs/basesrc.c: line 140: assertion failed: (sink != NULL)
aborting...

** ERROR **: file libs/basesrc.c: line 61: assertion failed: (sink != NULL)
aborting...

** ERROR **: file libs/basesrc.c: line 208: assertion failed: (sink != NULL)
aborting...
0%: Checks: 4, Failures: 0, Errors: 4
libs/basesrc.c:265:E:general:basesrc_eos_events_pull:0: (after this point)
Received signal 6 (Aborted)
libs/basesrc.c:126:E:general:basesrc_eos_events_push:0: (after this point)
Received signal 6 (Aborted)
libs/basesrc.c:47:E:general:basesrc_eos_events_push_live_op:0: (after this
point) Received signal 6 (Aborted)
libs/basesrc.c:196:E:general:basesrc_eos_events_pull_live_op:0: (after this
point) Received signal 6 (Aborted)
FAIL: libs/basesrc
Running suite(s): Controller


Unexpected critical/warning: file gstcontroller.c: line 532: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstobject.c: line 346: assertion `object !=
NULL' failed


Unexpected critical/warning: file gstobject.c: line 346: assertion `object !=
NULL' failed


Unexpected critical/warning: file gstobject.c: line 346: assertion `object !=
NULL' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed


Unexpected critical/warning: file gstcontroller.c: line 590: assertion
`G_IS_OBJECT (object)' failed
10%: Checks: 20, Failures: 18, Errors: 0
gstcheck.c:66:F:general:controller_refcount_new_list:0: Unexpected
critical/warning: file gstcontroller.c: line 532: assertion `G_IS_OBJECT
(object)' failed
gstcheck.c:66:F:general:controller_new_fail1:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_new_fail2:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_new_fail3:0: Unexpected critical/warning:
file gstobject.c: line 346: assertion `object != NULL' failed
gstcheck.c:66:F:general:controller_new_fail4:0: Unexpected critical/warning:
file gstobject.c: line 346: assertion `object != NULL' failed
gstcheck.c:66:F:general:controller_new_fail5:0: Unexpected critical/warning:
file gstobject.c: line 346: assertion `object != NULL' failed
gstcheck.c:66:F:general:controller_new_okay1:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_new_okay2:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_new_okay3:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_param_twice:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_finalize:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_interpolate_none:0: Unexpected
critical/warning: file gstcontroller.c: line 590: assertion `G_IS_OBJECT
(object)' failed
gstcheck.c:66:F:general:controller_interpolate_trigger:0: Unexpected
critical/warning: file gstcontroller.c: line 590: assertion `G_IS_OBJECT
(object)' failed
gstcheck.c:66:F:general:controller_interpolate_linear:0: Unexpected
critical/warning: file gstcontroller.c: line 590: assertion `G_IS_OBJECT
(object)' failed
gstcheck.c:66:F:general:controller_unset:0: Unexpected critical/warning: file
gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_unset_all:0: Unexpected critical/warning:
file gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_live:0: Unexpected critical/warning: file
gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
gstcheck.c:66:F:general:controller_misc:0: Unexpected critical/warning: file
gstcontroller.c: line 590: assertion `G_IS_OBJECT (object)' failed
FAIL: libs/controller
Running suite(s): typefindhelper
0%: Checks: 1, Failures: 1, Errors: 0
libs/typefindhelper.c:54:F:general:test_buffer_range:0: Assertion 'caps !=
NULL' failed
FAIL: libs/typefindhelper
Running suite(s): stress


Unexpected critical/warning: file pipelines/stress.c: line 33: assertion
`fakesrc && fakesink && pipeline' failed
0%: Checks: 1, Failures: 1, Errors: 0
gstcheck.c:66:F:linear:test_stress:0: Unexpected critical/warning: file
pipelines/stress.c: line 33: assertion `fakesrc && fakesink && pipeline' failed
FAIL: pipelines/stress
Running suite(s): LibsABI
No structure size list was generated for this architecture.
Run with GST_ABI environment variable set to output header.
100%: Checks: 1, Failures: 0, Errors: 0
PASS: libs/libsabi
Running suite(s): data protocol
100%: Checks: 5, Failures: 0, Errors: 0
PASS: libs/gdp
Running suite(s): adapter
100%: Checks: 8, Failures: 0, Errors: 0
PASS: libs/adapter
Running suite(s): GstNetClientClock
100%: Checks: 2, Failures: 0, Errors: 0
PASS: libs/gstnetclientclock
Running suite(s): GstNetTimeProvider
100%: Checks: 2, Failures: 0, Errors: 0
PASS: libs/gstnettimeprovider
==========================================================================
21 of 44 tests failed
Please report to http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer
==========================================================================
gmake[3]: *** [check-TESTS] Error 1
gmake[3]: Leaving directory `/work/build/gstreamer-0.10.11/tests/check'
gmake[2]: *** [check-am] Error 2
gmake[2]: Leaving directory `/work/build/gstreamer-0.10.11/tests/check'
gmake[1]: *** [check-recursive] Error 1
gmake[1]: Leaving directory `/work/build/gstreamer-0.10.11/tests'
gmake: *** [check-recursive] Error 1


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email




More information about the Gstreamer-bugs mailing list