mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
add missing file, cvsignore updates
Original commit message from CVS: add missing file, cvsignore updates
This commit is contained in:
parent
9ffa8aff27
commit
a3d8e2c9d8
4 changed files with 128 additions and 0 deletions
2
check/gst/.gitignore
vendored
2
check/gst/.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
gstobject
|
gstobject
|
||||||
|
gstcaps
|
||||||
|
gstdata
|
||||||
|
|
62
check/gst/gstcaps.c
Normal file
62
check/gst/gstcaps.c
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
/* GStreamer
|
||||||
|
* Copyright (C) 2005 Andy Wingo <wingo@pobox.com>
|
||||||
|
*
|
||||||
|
* gstcaps.c: Unit test for GstCaps
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "../gstcheck.h"
|
||||||
|
|
||||||
|
|
||||||
|
START_TEST (test_fail_double_append)
|
||||||
|
{
|
||||||
|
GstStructure *s1;
|
||||||
|
GstCaps *c1;
|
||||||
|
|
||||||
|
c1 = gst_caps_new_any ();
|
||||||
|
s1 = gst_structure_from_string ("audio/x-raw-int,rate=44100", NULL);
|
||||||
|
gst_caps_append_structure (c1, s1);
|
||||||
|
ASSERT_CRITICAL (gst_caps_append_structure (c1, s1));
|
||||||
|
}
|
||||||
|
END_TEST Suite * gst_caps_suite (void)
|
||||||
|
{
|
||||||
|
Suite *s = suite_create ("GstCaps");
|
||||||
|
TCase *tc_chain = tcase_create ("mutability");
|
||||||
|
|
||||||
|
suite_add_tcase (s, tc_chain);
|
||||||
|
tcase_add_test (tc_chain, test_fail_double_append);
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
int nf;
|
||||||
|
|
||||||
|
Suite *s = gst_caps_suite ();
|
||||||
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
|
gst_check_init (&argc, &argv);
|
||||||
|
|
||||||
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
|
nf = srunner_ntests_failed (sr);
|
||||||
|
srunner_free (sr);
|
||||||
|
|
||||||
|
return nf;
|
||||||
|
}
|
2
tests/check/gst/.gitignore
vendored
2
tests/check/gst/.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
gstobject
|
gstobject
|
||||||
|
gstcaps
|
||||||
|
gstdata
|
||||||
|
|
62
tests/check/gst/gstcaps.c
Normal file
62
tests/check/gst/gstcaps.c
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
/* GStreamer
|
||||||
|
* Copyright (C) 2005 Andy Wingo <wingo@pobox.com>
|
||||||
|
*
|
||||||
|
* gstcaps.c: Unit test for GstCaps
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "../gstcheck.h"
|
||||||
|
|
||||||
|
|
||||||
|
START_TEST (test_fail_double_append)
|
||||||
|
{
|
||||||
|
GstStructure *s1;
|
||||||
|
GstCaps *c1;
|
||||||
|
|
||||||
|
c1 = gst_caps_new_any ();
|
||||||
|
s1 = gst_structure_from_string ("audio/x-raw-int,rate=44100", NULL);
|
||||||
|
gst_caps_append_structure (c1, s1);
|
||||||
|
ASSERT_CRITICAL (gst_caps_append_structure (c1, s1));
|
||||||
|
}
|
||||||
|
END_TEST Suite * gst_caps_suite (void)
|
||||||
|
{
|
||||||
|
Suite *s = suite_create ("GstCaps");
|
||||||
|
TCase *tc_chain = tcase_create ("mutability");
|
||||||
|
|
||||||
|
suite_add_tcase (s, tc_chain);
|
||||||
|
tcase_add_test (tc_chain, test_fail_double_append);
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
int nf;
|
||||||
|
|
||||||
|
Suite *s = gst_caps_suite ();
|
||||||
|
SRunner *sr = srunner_create (s);
|
||||||
|
|
||||||
|
gst_check_init (&argc, &argv);
|
||||||
|
|
||||||
|
srunner_run_all (sr, CK_NORMAL);
|
||||||
|
nf = srunner_ntests_failed (sr);
|
||||||
|
srunner_free (sr);
|
||||||
|
|
||||||
|
return nf;
|
||||||
|
}
|
Loading…
Reference in a new issue