projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4539db
)
check: testclock: don't put code with side-effects in g_assert()
author
Tim-Philipp Müller
<tim@centricular.net>
Thu, 19 Sep 2013 15:43:18 +0000
(16:43 +0100)
committer
Tim-Philipp Müller
<tim@centricular.net>
Thu, 19 Sep 2013 15:43:18 +0000
(16:43 +0100)
Fixes unit test failures when -DG_DISABLE_ASSERT is used.
https://bugzilla.gnome.org/show_bug.cgi?id=706551
libs/gst/check/gsttestclock.c
patch
|
blob
|
history
diff --git
a/libs/gst/check/gsttestclock.c
b/libs/gst/check/gsttestclock.c
index e103da80ee28b72b9d7a6cc191cc98229fe01b36..22f26ae38e30915157f57cfc25ff031838aa7b47 100644
(file)
--- a/
libs/gst/check/gsttestclock.c
+++ b/
libs/gst/check/gsttestclock.c
@@
-785,8
+785,8
@@
gst_test_clock_wait_for_next_pending_id (GstTestClock * test_clock,
while (priv->entry_contexts == NULL)
g_cond_wait (&priv->entry_added_cond, GST_OBJECT_GET_LOCK (test_clock));
- g_assert (gst_test_clock_peek_next_pending_id_unlocked (test_clock,
-
pending_id)
);
+ if (!gst_test_clock_peek_next_pending_id_unlocked (test_clock, pending_id))
+
g_assert_not_reached (
);
GST_OBJECT_UNLOCK (test_clock);
}