From d9da603db6e4656ce9f1fd3007987d4a62eece5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 24 Sep 2016 21:11:32 +0100 Subject: [PATCH] tests: videotimecode: fix floating point comparisons Comparing floats for equality is not necessarily going to work reliably, so use fail_unless_equals_float() for this. Test would fail on x86 (Intel Atom x5-Z8300). --- tests/check/libs/videotimecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/libs/videotimecode.c b/tests/check/libs/videotimecode.c index c403db8df7..23d6b5024e 100644 --- a/tests/check/libs/videotimecode.c +++ b/tests/check/libs/videotimecode.c @@ -332,7 +332,7 @@ GST_START_TEST (videotimecode_dailyjam_todatetime) fail_unless (g_date_time_get_day_of_month (dt2) == 29); fail_unless (g_date_time_get_hour (dt2) == 11); fail_unless (g_date_time_get_minute (dt2) == 36); - fail_unless (g_date_time_get_seconds (dt2) == 53.04); + fail_unless_equals_float (g_date_time_get_seconds (dt2), 53.04); gst_video_time_code_free (tc1); g_date_time_unref (dt2);