~fginther/geis/geis-2.2.9.1-precise

« back to all changes in this revision

Viewing changes to testsuite/libgeis/check_filter.c

  • Committer: Francis Ginther
  • Date: 2012-08-16 13:43:15 UTC
  • mfrom: (49.1.37)
  • Revision ID: francis.ginther@canonical.com-20120816134315-ex9m75nqcv0uryim
* New upstream release.
  - fixes pinch radius and drag delta calculations (lp: #985916)
    (lp: #986215)
  - changes type of geisSubscriptionFlags (lp: #813819)
  - changes direct devices to use window coordinates (lp: #984069)
  - reports device axis extents, if available (lp: #987539)
  - removes XCB back end
  - removes overlapping events when a gesture is accepted (lp: #1001365)
  - avoids trying to start a DBus session if there is none already
    (lp: #997630)
  - detect added devices properly (LP: #1009270)
  - fix crash when accepting a gesture (LP: #1015775)
  - fix result value of geis_subscription_deactivate() (LP: #1021448)
  - upstream project renamed to just 'geis'

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
static void
18
18
construct_bag()
19
19
{
20
 
  g_geis = geis_new(GEIS_INIT_UTOUCH_MOCK_BACKEND, NULL);
 
20
  g_geis = geis_new(GEIS_INIT_MOCK_BACKEND, NULL);
21
21
  g_filter_bag = geis_filter_bag_new();
22
22
}
23
23
 
85
85
Suite *
86
86
make_filter_suite()
87
87
{
88
 
  Suite *s = suite_create("utouch-geis2-filter");
 
88
  Suite *s = suite_create("geis2-filter");
89
89
 
90
90
  TCase *create = tcase_create("filter-bag-creation");
91
91
  tcase_add_test(create, construct);