~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to tests/libecal/client/test-client-get-view.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        const GSList *l;
40
40
 
41
41
        for (l = objects; l; l = l->next)
42
 
                g_print ("Object added %s (%s)\n", icalcomponent_get_uid (l->data), icalcomponent_get_summary (l->data));
 
42
                g_print ("Object added %s (%s)\n", icalcomponent_get_uid (l->data), icalcomponent_get_summary (l->data));
43
43
 
44
44
        subtest_passed (SUBTEST_OBJECTS_ADDED);
45
45
}
52
52
        const GSList *l;
53
53
 
54
54
        for (l = objects; l; l = l->next)
55
 
                g_print ("Object modified %s (%s)\n", icalcomponent_get_uid (l->data), icalcomponent_get_summary (l->data));
 
55
                g_print ("Object modified %s (%s)\n", icalcomponent_get_uid (l->data), icalcomponent_get_summary (l->data));
56
56
 
57
57
        subtest_passed (SUBTEST_OBJECTS_MODIFIED);
58
58
}
67
67
        for (l = objects; l; l = l->next) {
68
68
                ECalComponentId *id = l->data;
69
69
 
70
 
                g_print ("Object removed: uid: %s, rid: %s\n", id->uid, id->rid);
 
70
                g_print ("Object removed: uid: %s, rid: %s\n", id->uid, id->rid);
71
71
        }
72
72
 
73
73
        subtest_passed (SUBTEST_OBJECTS_REMOVED);
78
78
             const GError *error,
79
79
             gpointer data)
80
80
{
81
 
        g_print ("View complete (status: %d, error_msg:%s)\n", error ? error->code : 0, error ? error->message : "NULL");
 
81
        g_print ("View complete (status: %d, error_msg:%s)\n", error ? error->code : 0, error ? error->message : "NULL");
82
82
 
83
83
        subtest_passed (SUBTEST_VIEW_DONE);
84
84
}