From f05ea1e6a62e12d166b6a2f2d0e4b59018515d47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 6 Apr 2016 17:57:28 +0100 Subject: [PATCH] tests: libscpp: test RTP/RTCP buffer init macros with C++ compiler --- tests/check/libs/gstlibscpp.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/check/libs/gstlibscpp.cc b/tests/check/libs/gstlibscpp.cc index eaf7dbb..5a84ea3 100644 --- a/tests/check/libs/gstlibscpp.cc +++ b/tests/check/libs/gstlibscpp.cc @@ -102,6 +102,17 @@ GST_START_TEST (test_nothing) GST_END_TEST; +GST_START_TEST (test_init_macros) +{ + GstRTCPBuffer rtcp = GST_RTCP_BUFFER_INIT; + GstRTPBuffer rtp = GST_RTP_BUFFER_INIT; + + fail_unless_equals_int (rtp.size[0], 0) + fail_unless_equals_int (rtcp.map.size, 0); +} + +GST_END_TEST; + static Suite * libscpp_suite (void) { @@ -110,6 +121,7 @@ libscpp_suite (void) suite_add_tcase (s, tc_chain); tcase_add_test (tc_chain, test_nothing); + tcase_add_test (tc_chain, test_init_macros); return s; } -- 2.7.4