~ubuntu-branches/ubuntu/natty/gst-entrans/natty

« back to all changes in this revision

Viewing changes to tests/check/elements/cshift.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2010-09-13 19:49:29 UTC
  • Revision ID: james.westby@ubuntu.com-20100913194929-qz90a14xyxln9yfz
Tags: upstream-0.10.2
ImportĀ upstreamĀ versionĀ 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 *
 
3
 * unit test for videofilter elements
 
4
 *
 
5
 * Copyright (C) <2006> Mark Nauwelaerts <mnauw@users.sourceforge.net>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#include <unistd.h>
 
24
 
 
25
#include <gst/check/gstcheck.h>
 
26
 
 
27
#include "videofilter.h"
 
28
 
 
29
static RunInfo ri;
 
30
 
 
31
 
 
32
GST_START_TEST (test_cshift)
 
33
{
 
34
  INIT_RUNINFO_YUV (&ri, 2);
 
35
  check_filter ("cshift", &ri, "shift", 40, NULL);
 
36
}
 
37
GST_END_TEST;
 
38
 
 
39
Suite *
 
40
cshift_suite ()
 
41
{
 
42
  Suite *s = suite_create ("cshift");
 
43
  TCase *tc_chain = tcase_create ("general");
 
44
 
 
45
  suite_add_tcase (s, tc_chain);
 
46
  tcase_add_test (tc_chain, test_cshift);
 
47
 
 
48
  return s;
 
49
}
 
50
 
 
51
int
 
52
main (int argc, char **argv)
 
53
{
 
54
  int nf;
 
55
 
 
56
  Suite *s = cshift_suite ();
 
57
  SRunner *sr = srunner_create (s);
 
58
 
 
59
  gst_check_init (&argc, &argv);
 
60
 
 
61
  srunner_run_all (sr, CK_NORMAL);
 
62
  nf = srunner_ntests_failed (sr);
 
63
  srunner_free (sr);
 
64
 
 
65
  return nf;
 
66
}