runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 1.3s / 1633.1s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 0.4s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/testing-amd64/home/googlecalendar/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/googlecalendar/data runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) === starting googlecalendar === runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) result dir: /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/13-googlecalendar, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/13-googlecalendar runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) changing into directory /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/googlecalendar (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/googlecalendar) runtests.py-17077 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/googlecalendar; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/googlecalendar' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r googlecalendar -- env 'CLIENT_TEST_WEBDAV=google caldav testcases=testcases/google_event.ics' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_UNIQUE_UID=2 CLIENT_TEST_MODE=server CLIENT_TEST_FAILURES=Client::Source::google_caldav::LinkedItems.*::testLinkedItemsChildParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsChildChangesParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsInsertBothUpdateParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsRemoveParentFirst,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsRemoveNormal,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChildNoIDs,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs, SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale schroot -d /data/runtests/work/testing-amd64/tests/googlecalendar -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['googlecalendar'] === Fri Jan 5 15:56:20 2018 UTC (+ 0.1s / 0.1s) property changed: status = acquired Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 16:13:12 2018 UTC (+ 1011.9s / 1012.0s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 32 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 ** Message: couldn't access control socket: /tmp/tmp.xUi6GqymOc/keyring/control: No such file or directory wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 26 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 24 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 43: shift wrappercheck-21 line 44: DAEMON_SLEEP=5 wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 22 -gt 1 ']' wrappercheck-21 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 35: shift wrappercheck-21 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 20 -gt 1 ']' wrappercheck-21 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 20 -gt 1 ']' wrappercheck-21 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 19 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' evolution-source-registry.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-21 line 72: BACKGROUND_PID=27 wrappercheck-21 line 73: PIDS+=27 wrappercheck-21 line 70: set -x wrappercheck-21 line 75: '[' evolution-source-registry.log ']' wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 70: exec wrappercheck-21 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-21 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-21 line 93: kill -0 27 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' 5 ']' wrappercheck-21 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-21 line 97: sleep 5 wrappercheck-21 line 99: set -x wrappercheck-21 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-79 line 16: PIDS= wrappercheck-79 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-79 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-79 line 21: DAEMON_LOG= wrappercheck-79 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-79 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-79 line 25: declare -a BACKGROUND wrappercheck-79 line 26: declare -a ENV wrappercheck-79 line 28: '[' 17 -gt 1 ']' wrappercheck-79 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 31: shift wrappercheck-79 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-79 line 53: shift wrappercheck-79 line 28: '[' 15 -gt 1 ']' wrappercheck-79 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 35: shift wrappercheck-79 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-79 line 53: shift wrappercheck-79 line 28: '[' 13 -gt 1 ']' wrappercheck-79 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 50: break wrappercheck-79 line 56: '[' 13 -gt 1 ']' wrappercheck-79 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-79 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-79 line 58: shift wrappercheck-79 line 56: '[' 12 -gt 1 ']' wrappercheck-79 line 56: '[' --keep-running '!=' -- ']' wrappercheck-79 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-79 line 58: shift wrappercheck-79 line 56: '[' 11 -gt 1 ']' wrappercheck-79 line 56: '[' -- '!=' -- ']' wrappercheck-79 line 60: shift wrappercheck-79 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-79 line 62: '[' '' ']' wrappercheck-79 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-79 line 72: BACKGROUND_PID=81 wrappercheck-79 line 73: PIDS+=81 wrappercheck-79 line 70: set -x wrappercheck-79 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-79 line 70: exec wrappercheck-79 line 75: '[' '' ']' wrappercheck-79 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-79 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-79 line 93: kill -0 81 wrappercheck-79 line 94: set +e wrappercheck-79 line 95: '[' '' ']' wrappercheck-79 line 99: set -x wrappercheck-79 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-99 line 16: PIDS= wrappercheck-99 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-99 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-99 line 21: DAEMON_LOG= wrappercheck-99 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-99 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-99 line 25: declare -a BACKGROUND wrappercheck-99 line 26: declare -a ENV wrappercheck-99 line 28: '[' 9 -gt 1 ']' wrappercheck-99 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-99 line 29: case "$1" in wrappercheck-99 line 31: shift wrappercheck-99 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-99 line 53: shift wrappercheck-99 line 28: '[' 7 -gt 1 ']' wrappercheck-99 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-99 line 29: case "$1" in wrappercheck-99 line 50: break wrappercheck-99 line 56: '[' 7 -gt 1 ']' wrappercheck-99 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-99 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-99 line 58: shift wrappercheck-99 line 56: '[' 6 -gt 1 ']' wrappercheck-99 line 56: '[' --keep-running '!=' -- ']' wrappercheck-99 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-99 line 58: shift wrappercheck-99 line 56: '[' 5 -gt 1 ']' wrappercheck-99 line 56: '[' -- '!=' -- ']' wrappercheck-99 line 60: shift wrappercheck-99 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-99 line 62: '[' '' ']' wrappercheck-99 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-99 line 72: BACKGROUND_PID=101 wrappercheck-99 line 73: PIDS+=101 wrappercheck-99 line 70: set -x wrappercheck-99 line 70: exec wrappercheck-99 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-99 line 75: '[' '' ']' wrappercheck-99 line 84: '[' '' ']' wrappercheck-99 line 93: kill -0 101 wrappercheck-99 line 94: set +e wrappercheck-99 line 95: '[' '' ']' wrappercheck-99 line 99: set -x wrappercheck-99 line 99: env /home/nightly/testing/setup-syncevolution.sh googlecalendar ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/googlecalendar/.sync4j/evolution/googlecalendar_[12]' '/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/googlecalendar_[12]' '/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-[12]/peers/googlecalendar_[12]' '/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=googlecalendar_1@client-test-googlecalendar-1 ++ credentials googlecalendar_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-googlecalendar calendar/uri=caldav' + ./syncevolution --daemon=no --configure --template googlecalendar --template SyncEvolution_Client username= password= syncURL=local://@client-test-googlecalendar calendar/uri=caldav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 googlecalendar_1@client-test-googlecalendar-1 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/addressbook /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/calendar /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/todo /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/memo /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-1/peers/googlecalendar_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 googlecalendar_1@client-test-googlecalendar-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 googlecalendar_1@client-test-googlecalendar-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 googlecalendar_1@client-test-googlecalendar-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 googlecalendar_1@client-test-googlecalendar-1 eds_memo + case $TEST in + case $TEST in + case $TEST in ++ SYNCEVOLUTION_DEBUG=1 ++ ./syncevolution --print-databases --daemon=no loglevel=4 'syncURL=https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google' username=goa:syncevolution.list@gmail.com backend=caldav [DEBUG 00:00:00] using username 'goa:syncevolution.list@gmail.com' from context for WebDAV, password not set [DEBUG 00:00:00] looking for identity provider for goa:syncevolution.list@gmail.com [DEBUG 00:00:00] Looking up all accounts in GNOME Online Accounts, searching for 'syncevolution.list@gmail.com'. [DEBUG 00:00:00] GOA object /org/gnome/OnlineAccounts/Accounts/account_1379073187 implements org.gnome.OnlineAccounts.Account, org.gnome.OnlineAccounts.Calendar, org.gnome.OnlineAccounts.Chat, org.gnome.OnlineAccounts.Contacts, org.gnome.OnlineAccounts.Documents, org.gnome.OnlineAccounts.Mail, org.gnome.OnlineAccounts.OAuth2Based [DEBUG 00:00:00] GOA account Google, syncevolution.list@gmail.com = account_1379073187 [DEBUG 00:00:00] found matching GNOME Online Account for 'syncevolution.list@gmail.com': Google, syncevolution.list@gmail.com = account_1379073187 [DEBUG 00:00:00] GOA object /org/gnome/OnlineAccounts/Manager implements org.gnome.OnlineAccounts.Manager [DEBUG 00:00:00] timout 300s, retry 5s => resending allowed HTTP session to https://apidata.googleusercontent.com:443 begins. [DEBUG 00:00:00] client cert is missing [INFO 00:00:00] start database search at https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google, from sync config '@default', syncURL='https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google' [DEBUG 00:00:00] testing https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] starting PROPFIND, credentials unverified, no deadline [DEBUG 00:00:00] got new OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' for next request ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Doing DNS lookup on proxy.vlan13.01.org... req: Connecting to 10.0.13.1:3128 Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: CONNECT apidata.googleusercontent.com:443 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Request sent; retry is 0. [status-line] < HTTP/1.1 200 Connection established [hdr] End of headers. Running post_headers hooks Running post_send hooks Request ends, status 200 class 2xx, error line: 200 Connection established Running destroy hooks. Request ends. Sending request body: Body block (84 bytes): [ ] Request sent; retry is 0. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:20 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:20 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:20 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:20 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 201 Got chunk size: 513 Reading 513 bytes of response body. Got 513 bytes. Read block (513 bytes): [ /caldav/v2 HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:00] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:00] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] starting PROPFIND, credentials okay, deadline in 299.5s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4e0 Got chunk size: 1248 Reading 1248 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2 HTTP/1.1 200 OK /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.] Reading 600 bytes of response body. Got 600 bytes. Read block (600 bytes): [1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:00] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:00] follow current-user-prinicipal to https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] DAV: 1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy Header Name: [dav], Value: [1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy] [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 29c Got chunk size: 668 Reading 668 bytes of response body. Got 564 bytes. Read block (564 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing ] Reading 104 bytes of response body. Got 104 bytes. Read block (104 bytes): [ ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:01] starting PROPFIND, credentials okay, deadline in 298.8s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] DAV: 1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy Header Name: [dav], Value: [1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy] [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:21 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:21 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 783 Got chunk size: 1923 Reading 1923 bytes of response body. Got 564 bytes. Read block (564 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ /caldav/v2/syncevolution.list@gmail.com/user /caldav/v2/patrick.ohly@googlemail.com/user/calendar-proxy-read/ /caldav/v2/patrick.ohly.estamos@googlemail.com/user/calendar-proxy-read/ /caldav/v2/929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com/user/calendar-proxy-write/ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg@virtual/user/calendar-proxy-read/ HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] follow home-set property to https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] skipping listing because we don't know whether collection contains relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:01] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 24b Got chunk size: 587 Reading 587 bytes of response body. Got 587 bytes. Read block (587 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] starting PROPFIND, credentials okay, deadline in 298.2s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4c6 Got chunk size: 1222 Reading 1222 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:02] list items in https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, deadline in 298.0s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 1 Content-Length: 399 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (399 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:22 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:22 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 1d41 Got chunk size: 7489 Reading 7489 bytes of response body. Got 647 bytes. Read block (647 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD ] Reading 5655 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/inbox/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/outbox/ HTTP/1.1 200 OK HTTP/1.1 404 N] Reading 3281 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ot Found /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025] Reading 2094 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing ] Reading 907 bytes of response body. Got 907 bytes. Read block (907 bytes): [Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] new sub candidate: /caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:02] skipping because of wrong type: /caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:02] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/inbox/ [DEBUG 00:00:02] [DEBUG 00:00:02] [DEBUG 00:00:02] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/outbox/ [DEBUG 00:00:02] [DEBUG 00:00:02] [DEBUG 00:00:02] new sub candidate: /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:02] new sub candidate: /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:02] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 24b Got chunk size: 587 Reading 587 bytes of response body. Got 587 bytes. Read block (587 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, deadline in 297.3s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4c6 Got chunk size: 1222 Reading 1222 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] empty current-user-prinicipal: ignore it [DEBUG 00:00:02] list items in https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, deadline in 297.0s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 1 Content-Length: 399 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (399 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:23 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:23 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 1d41 Got chunk size: 7489 Reading 7489 bytes of response body. Got 647 bytes. Read block (647 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD ] Reading 5655 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/inbox/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/outbox/ HTTP/1.1 200 OK HTTP/1.1 404 N] Reading 3281 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ot Found /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025] Reading 2094 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing ] Reading 907 bytes of response body. Got 907 bytes. Read block (907 bytes): [Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:03] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] skipping because of wrong type: /caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:03] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/inbox/ [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/outbox/ [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] skipping because already checked: /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:03] skipping because already checked: /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:03] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3b2 Got chunk size: 946 Reading 946 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com text/calendar; component=vevent 63650850186 ] Reading 298 bytes of response body. Got 298 bytes. Read block (298 bytes): [ #2952A3FF syncevolution.list@gmail.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, deadline in 296.3s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a04 Got chunk size: 2564 Reading 2564 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com ] Reading 1916 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] current-user-privilege-set: [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] found syncevolution@lists.intel.com = https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google [DEBUG 00:00:03] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:03] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3b2 Got chunk size: 946 Reading 946 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com text/calendar; component=vevent 63650850186 ] Reading 298 bytes of response body. Got 298 bytes. Read block (298 bytes): [ #2952A3FF syncevolution.list@gmail.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, deadline in 295.9s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a04 Got chunk size: 2564 Reading 2564 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com ] Reading 1916 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] current-user-privilege-set: [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] found syncevolution@lists.intel.com = https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google [DEBUG 00:00:04] empty current-user-prinicipal: ignore it [DEBUG 00:00:04] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:04] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] testing https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:24 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:24 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fe Got chunk size: 1022 Reading 1022 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States text/calendar; component=vevent 63650750522 #2F6309FF en.usa#holiday@group.v.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, deadline in 295.5s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 93c Got chunk size: 2364 Reading 2364 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States ] Reading 1716 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] current-user-privilege-set: [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] found Holidays in United States = https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google [DEBUG 00:00:04] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:04] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] testing https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fe Got chunk size: 1022 Reading 1022 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States text/calendar; component=vevent 63650750522 #2F6309FF en.usa#holiday@group.v.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, deadline in 295.0s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 93c Got chunk size: 2364 Reading 2364 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States ] Reading 1716 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] current-user-privilege-set: [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] found Holidays in United States = https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google [DEBUG 00:00:05] empty current-user-prinicipal: ignore it [DEBUG 00:00:05] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] testing https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:25 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:25 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fc Got chunk size: 1020 Reading 1020 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation text/calendar; component=vevent 63648798156 #2F6309FF 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, deadline in 294.6s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a65 Got chunk size: 2661 Reading 2661 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:] Reading 826 bytes of response body. Got 826 bytes. Read block (826 bytes): [STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] current-user-privilege-set: [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] found SyncEvolution Testing Next Generation = https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google [DEBUG 00:00:05] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:05] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] testing https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fc Got chunk size: 1020 Reading 1020 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation text/calendar; component=vevent 63648798156 #2F6309FF 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:06] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:06] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:06] starting PROPFIND, credentials okay, deadline in 294.0s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:06] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:26 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:26 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a65 Got chunk size: 2661 Reading 2661 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:] Reading 826 bytes of response body. Got 826 bytes. Read block (826 bytes): [STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:06] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:06] current-user-privilege-set: [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] found SyncEvolution Testing Next Generation = https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google [DEBUG 00:00:06] empty current-user-prinicipal: ignore it [DEBUG 00:00:06] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ sess: Destroying session. + databases='caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google)' + echo 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google)' caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) ++ pick_default 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google)' ++ echo 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google)' ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' ++ '[' 0 -ne 0 ']' + database='https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google' + ./syncevolution --configure --daemon=no 'database=https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google' databaseUser=goa:syncevolution.list@gmail.com backend=caldav googlecalendar_1@client-test-googlecalendar-1 google_caldav + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=googlecalendar_2@client-test-googlecalendar-2 ++ credentials googlecalendar_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-googlecalendar calendar/uri=caldav' + ./syncevolution --daemon=no --configure --template googlecalendar --template SyncEvolution_Client username= password= syncURL=local://@client-test-googlecalendar calendar/uri=caldav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 googlecalendar_2@client-test-googlecalendar-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/addressbook /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/calendar /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/todo /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/memo /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar-2/peers/googlecalendar_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 googlecalendar_2@client-test-googlecalendar-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 googlecalendar_2@client-test-googlecalendar-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 googlecalendar_2@client-test-googlecalendar-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 googlecalendar_2@client-test-googlecalendar-2 eds_memo + case $TEST in + case $TEST in + case $TEST in ++ SYNCEVOLUTION_DEBUG=1 ++ ./syncevolution --print-databases --daemon=no loglevel=4 'syncURL=https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google' username=goa:syncevolution.list@gmail.com backend=caldav [DEBUG 00:00:00] using username 'goa:syncevolution.list@gmail.com' from context for WebDAV, password not set [DEBUG 00:00:00] looking for identity provider for goa:syncevolution.list@gmail.com [DEBUG 00:00:00] Looking up all accounts in GNOME Online Accounts, searching for 'syncevolution.list@gmail.com'. [DEBUG 00:00:00] GOA object /org/gnome/OnlineAccounts/Accounts/account_1379073187 implements org.gnome.OnlineAccounts.Account, org.gnome.OnlineAccounts.Calendar, org.gnome.OnlineAccounts.Chat, org.gnome.OnlineAccounts.Contacts, org.gnome.OnlineAccounts.Documents, org.gnome.OnlineAccounts.Mail, org.gnome.OnlineAccounts.OAuth2Based [DEBUG 00:00:00] GOA account Google, syncevolution.list@gmail.com = account_1379073187 [DEBUG 00:00:00] found matching GNOME Online Account for 'syncevolution.list@gmail.com': Google, syncevolution.list@gmail.com = account_1379073187 [DEBUG 00:00:00] GOA object /org/gnome/OnlineAccounts/Manager implements org.gnome.OnlineAccounts.Manager [DEBUG 00:00:00] timout 300s, retry 5s => resending allowed HTTP session to https://apidata.googleusercontent.com:443 begins. [DEBUG 00:00:00] client cert is missing [INFO 00:00:00] start database search at https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google, from sync config '@default', syncURL='https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google' [DEBUG 00:00:00] testing https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] starting PROPFIND, credentials unverified, no deadline [DEBUG 00:00:00] got new OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' for next request ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Doing DNS lookup on proxy.vlan13.01.org... req: Connecting to 10.0.13.1:3128 Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: CONNECT apidata.googleusercontent.com:443 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Request sent; retry is 0. [status-line] < HTTP/1.1 200 Connection established [hdr] End of headers. Running post_headers hooks Running post_send hooks Request ends, status 200 class 2xx, error line: 200 Connection established Running destroy hooks. Request ends. Sending request body: Body block (84 bytes): [ ] Request sent; retry is 0. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:27 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:27 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:27 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:27 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 201 Got chunk size: 513 Reading 513 bytes of response body. Got 513 bytes. Read block (513 bytes): [ /caldav/v2 HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:00] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:00] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2?SyncEvolution=Google [DEBUG 00:00:00] starting PROPFIND, credentials okay, deadline in 299.6s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2 HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4e0 Got chunk size: 1248 Reading 1248 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2 HTTP/1.1 200 OK /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.] Reading 600 bytes of response body. Got 600 bytes. Read block (600 bytes): [1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:00] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:00] follow current-user-prinicipal to https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:00] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:00] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] DAV: 1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy Header Name: [dav], Value: [1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy] [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 29c Got chunk size: 668 Reading 668 bytes of response body. Got 564 bytes. Read block (564 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing ] Reading 104 bytes of response body. Got 104 bytes. Read block (104 bytes): [ ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:01] starting PROPFIND, credentials okay, deadline in 299.0s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] DAV: 1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy Header Name: [dav], Value: [1, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-proxy] [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:28 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:28 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 783 Got chunk size: 1923 Reading 1923 bytes of response body. Got 564 bytes. Read block (564 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ /caldav/v2/syncevolution.list@gmail.com/user /caldav/v2/patrick.ohly@googlemail.com/user/calendar-proxy-read/ /caldav/v2/patrick.ohly.estamos@googlemail.com/user/calendar-proxy-read/ /caldav/v2/929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com/user/calendar-proxy-write/ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg@virtual/user/calendar-proxy-read/ HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] follow home-set property to https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] skipping listing because we don't know whether collection contains relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:01] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 24b Got chunk size: 587 Reading 587 bytes of response body. Got 587 bytes. Read block (587 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] starting PROPFIND, credentials okay, deadline in 298.4s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4c6 Got chunk size: 1222 Reading 1222 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:01] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:01] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:01] list items in https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:01] starting PROPFIND, credentials okay, deadline in 298.2s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:01] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 1 Content-Length: 399 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (399 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:29 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:29 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 1d41 Got chunk size: 7489 Reading 7489 bytes of response body. Got 647 bytes. Read block (647 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD ] Reading 5655 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/inbox/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/outbox/ HTTP/1.1 200 OK HTTP/1.1 404 N] Reading 3281 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ot Found /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD T] Reading 2094 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN V] Reading 907 bytes of response body. Got 907 bytes. Read block (907 bytes): [ERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] new sub candidate: /caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:02] skipping because of wrong type: /caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:02] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/inbox/ [DEBUG 00:00:02] [DEBUG 00:00:02] [DEBUG 00:00:02] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/outbox/ [DEBUG 00:00:02] [DEBUG 00:00:02] [DEBUG 00:00:02] new sub candidate: /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:02] new sub candidate: /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:02] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 24b Got chunk size: 587 Reading 587 bytes of response body. Got 587 bytes. Read block (587 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, deadline in 297.4s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 4c6 Got chunk size: 1222 Reading 1222 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:02] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:02] empty current-user-prinicipal: ignore it [DEBUG 00:00:02] list items in https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:02] starting PROPFIND, credentials okay, deadline in 297.1s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:02] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 1 Content-Length: 399 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (399 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:30 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:30 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 1d41 Got chunk size: 7489 Reading 7489 bytes of response body. Got 647 bytes. Read block (647 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD ] Reading 5655 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/user HTTP/1.1 200 OK SyncEvolution Testing /caldav/v2/syncevolution.list%40gmail.com/ HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/inbox/ HTTP/1.1 200 OK HTTP/1.1 404 Not Found /caldav/v2/syncevolution.list%40gmail.com/outbox/ HTTP/1.1 200 OK HTTP/1.1 404 N] Reading 3281 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ot Found /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025] Reading 2094 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing ] Reading 907 bytes of response body. Got 907 bytes. Read block (907 bytes): [Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/ [DEBUG 00:00:03] skipping because already checked: /caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] skipping because of wrong type: /caldav/v2/syncevolution.list%40gmail.com/user [DEBUG 00:00:03] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/inbox/ [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] skipping because of wrong resourcetype: /caldav/v2/syncevolution.list%40gmail.com/outbox/ [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] skipping because already checked: /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:03] skipping because already checked: /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:03] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3b2 Got chunk size: 946 Reading 946 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com text/calendar; component=vevent 63650850186 ] Reading 298 bytes of response body. Got 298 bytes. Read block (298 bytes): [ #2952A3FF syncevolution.list@gmail.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, deadline in 296.4s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a04 Got chunk size: 2564 Reading 2564 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com ] Reading 1916 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:03] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:03] current-user-privilege-set: [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] [DEBUG 00:00:03] found syncevolution@lists.intel.com = https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google [DEBUG 00:00:03] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:03] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] testing https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:03] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:03] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3b2 Got chunk size: 946 Reading 946 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com text/calendar; component=vevent 63650850186 ] Reading 298 bytes of response body. Got 298 bytes. Read block (298 bytes): [ #2952A3FF syncevolution.list@gmail.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, deadline in 295.9s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:31 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:31 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a04 Got chunk size: 2564 Reading 2564 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/syncevolution.list%40gmail.com/events/ HTTP/1.1 200 OK syncevolution@lists.intel.com ] Reading 1916 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ syncevolution.list@gmail.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:syncevolution@lists.intel.com X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] current-user-privilege-set: [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] found syncevolution@lists.intel.com = https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google [DEBUG 00:00:04] empty current-user-prinicipal: ignore it [DEBUG 00:00:04] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/ [DEBUG 00:00:04] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] testing https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fc Got chunk size: 1020 Reading 1020 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation text/calendar; component=vevent 63648798156 #2F6309FF 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, deadline in 295.4s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a65 Got chunk size: 2661 Reading 2661 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:] Reading 826 bytes of response body. Got 826 bytes. Read block (826 bytes): [STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:04] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:04] current-user-privilege-set: [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] [DEBUG 00:00:04] found SyncEvolution Testing Next Generation = https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google [DEBUG 00:00:04] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:04] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] testing https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:04] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:04] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:32 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:32 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fc Got chunk size: 1020 Reading 1020 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation text/calendar; component=vevent 63648798156 #2F6309FF 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, deadline in 294.8s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < a65 Got chunk size: 2661 Reading 2661 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ HTTP/1.1 200 OK SyncEvolution Testing Next Generation 929rvqhrjneodq60ir6joc7tgg@group.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-CALNAME:SyncEvolution Testing Next Generation X-WR-TIMEZONE:Europe/Berlin X-WR-CALDESC: BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:] Reading 826 bytes of response body. Got 826 bytes. Read block (826 bytes): [STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] current-user-privilege-set: [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] found SyncEvolution Testing Next Generation = https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google [DEBUG 00:00:05] empty current-user-prinicipal: ignore it [DEBUG 00:00:05] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/ [DEBUG 00:00:05] follow candidate https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] testing https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fe Got chunk size: 1022 Reading 1022 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States text/calendar; component=vevent 63650750522 #2F6309FF en.usa#holiday@group.v.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, deadline in 294.2s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 93c Got chunk size: 2364 Reading 2364 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States ] Reading 1716 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:05] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:05] current-user-privilege-set: [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] [DEBUG 00:00:05] found Holidays in United States = https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google [DEBUG 00:00:05] empty current-user-prinicipal: retry current URL with authentication [DEBUG 00:00:05] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] testing https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] debugging: read all WebDAV properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:05] starting PROPFIND, credentials okay, no deadline ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:05] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 84 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (84 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 3fe Got chunk size: 1022 Reading 1022 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States text/calendar; component=vevent 63650750522 #2F6309FF en.usa#holiday@group.v.calendar.google.com ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:06] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:06] read relevant properties of https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ [DEBUG 00:00:06] starting PROPFIND, credentials okay, deadline in 293.8s ah_create, for WWW-Authenticate Running pre_send hooks [DEBUG 00:00:06] using OAuth2 token 'ya29.Glw5BY8PhpXukOFLyE2pMYZo85-yUKmum_opQgKJm0FAMgliDPuK6cNmMFshQTBtG2RIPch7ZjFwa-U9wygUSjtBGJYEdO3EME5TcKmpsXDwJQ6JvmL8sReGsiev9Q' to authenticate Sending request headers: PROPFIND /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 Connection: TE TE: trailers Host: apidata.googleusercontent.com Depth: 0 Content-Length: 968 Content-Type: application/xml User-Agent: SyncEvolution Authorization: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Sending request-line and headers: Sending request body: Body block (968 bytes): [ ] Request sent; retry is 1. [status-line] < HTTP/1.1 207 Multi-Status [hdr] Vary: X-Origin Header Name: [vary], Value: [X-Origin] [hdr] Content-Type: text/xml; charset=UTF-8 Header Name: [content-type], Value: [text/xml; charset=UTF-8] [hdr] Date: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [date], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Expires: Fri, 05 Jan 2018 16:13:33 GMT Header Name: [expires], Value: [Fri, 05 Jan 2018 16:13:33 GMT] [hdr] Cache-Control: private, max-age=0 Header Name: [cache-control], Value: [private, max-age=0] [hdr] X-Content-Type-Options: nosniff Header Name: [x-content-type-options], Value: [nosniff] [hdr] X-Frame-Options: SAMEORIGIN Header Name: [x-frame-options], Value: [SAMEORIGIN] [hdr] X-XSS-Protection: 1; mode=block Header Name: [x-xss-protection], Value: [1; mode=block] [hdr] Server: GSE Header Name: [server], Value: [GSE] [hdr] Alt-Svc: hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35" Header Name: [alt-svc], Value: [hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"] [hdr] Accept-Ranges: none Header Name: [accept-ranges], Value: [none] [hdr] Vary: Origin,Accept-Encoding Header Name: [vary], Value: [Origin,Accept-Encoding] [hdr] Transfer-Encoding: chunked Header Name: [transfer-encoding], Value: [chunked] [hdr] End of headers. Running post_headers hooks [chunk] < 93c Got chunk size: 2364 Reading 2364 bytes of response body. Got 648 bytes. Read block (648 bytes): [ /caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ HTTP/1.1 200 OK Holidays in United States ] Reading 1716 bytes of response body. Got 1187 bytes. Read block (1187 bytes): [ en.usa#holiday@group.v.calendar.google.com BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN X-WR-TIMEZONE:Europe/Berlin BEGIN:VTIMEZONE TZID:Europe/Berlin X-LIC-LOCATION:Europe/Berlin BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:19700329T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:19701025T030000 RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU END:STANDARD END:VTIMEZONE END:VCALENDAR HTTP/1.1 404 Not Found ] [chunk] < 0 Got chunk size: 0 [hdr] End of headers. Running post_send hooks ah_post_send (#0), code is 207 (want 401), WWW-Authenticate is (none) Request ends, status 207 class 2xx, error line: 207 Multi-Status [DEBUG 00:00:06] credentials accepted Running destroy hooks. Request ends. [DEBUG 00:00:06] current-user-privilege-set: [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] [DEBUG 00:00:06] found Holidays in United States = https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google [DEBUG 00:00:06] empty current-user-prinicipal: ignore it [DEBUG 00:00:06] skipping listing because collection cannot contain other relevant collections: https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/ sess: Destroying session. + databases='caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google)' + echo 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google)' caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google) ++ pick_default 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google)' ++ echo 'caldav: syncevolution@lists.intel.com (https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google) SyncEvolution Testing Next Generation (https://apidata.googleusercontent.com:443/caldav/v2/929rvqhrjneodq60ir6joc7tgg%40group.calendar.google.com/events/?SyncEvolution=Google) Holidays in United States (https://apidata.googleusercontent.com:443/caldav/v2/cln2stbjc4hmgrrcd5i62ua0ctp6utbg5pr2sor1dhimsp31e8n6errfctm6abj3dtmg%40virtual/events/?SyncEvolution=Google)' ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' ++ '[' 0 -ne 0 ']' + database='https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google' + ./syncevolution --configure --daemon=no 'database=https://apidata.googleusercontent.com:443/caldav/v2/syncevolution.list%40gmail.com/events/?SyncEvolution=Google' databaseUser=goa:syncevolution.list@gmail.com backend=caldav googlecalendar_2@client-test-googlecalendar-2 google_caldav + case $TEST in + rm -rf /data/runtests/work/testing-amd64/home/googlecalendar/config/syncevolution/client-test-googlecalendar + ./syncevolution --configure --daemon=no 'syncURL=https://apidata.googleusercontent.com/caldav/v2?SyncEvolution=Google' proxyHost=http://proxy.vlan13.01.org:3128 useProxy=1 username=goa:syncevolution.list@gmail.com loglevel=4 backend=caldav printChanges=0 dumpData=0 target-config@client-test-googlecalendar caldav [INFO] caldav: configuring datastore with sync mode 'two-way' + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-99 line 100: RET=0 wrappercheck-99 line 101: set -e wrappercheck-99 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-99 line 108: kill -INT -101 wrappercheck-99 line 108: kill -TERM -101 wrappercheck-99 line 108: kill -TERM 101 wrappercheck-99 line 110: KILL_PID=347 wrappercheck-99 line 109: perl -e 'sleep(60); kill(9, -101);' wrappercheck-99 line 115: set +e wrappercheck-99 line 116: wait 101 wrappercheck-99 line 117: SUBRET=143 wrappercheck-99 line 118: case $SUBRET in wrappercheck-99 line 118: SUBRET=0 wrappercheck-99 line 120: SUBRET=0 wrappercheck-99 line 121: '[' 347 ']' wwrappercheck-99 line 122: LC_ALL=C wwrappercheck-99 line 122: kill -KILL 347 wrappercheck-99 line 122: msg= wrappercheck-99 line 123: grep -q 'No such process' wrappercheck-99 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 347 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-99 line 127: echo '' wrappercheck-99 line 129: wait 347 wrappercheck-99 line 131: set -e wrappercheck-99 line 132: '[' 0 = 0 ']' wrappercheck-99 line 133: RET=0 wrappercheck-99 line 136: exit 0 wrappercheck-79 line 100: RET=0 wrappercheck-79 line 101: set -e wrappercheck-79 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-79 line 108: kill -INT -81 wrappercheck-79 line 108: kill -TERM -81 wrappercheck-79 line 108: kill -TERM 81 wrappercheck-79 line 110: KILL_PID=352 wrappercheck-79 line 109: perl -e 'sleep(60); kill(9, -81);' wrappercheck-79 line 115: set +e wrappercheck-79 line 116: wait 81 wrappercheck-79 line 117: SUBRET=143 wrappercheck-79 line 118: case $SUBRET in wrappercheck-79 line 118: SUBRET=0 wrappercheck-79 line 120: SUBRET=0 wrappercheck-79 line 121: '[' 352 ']' wwrappercheck-79 line 122: LC_ALL=C wwrappercheck-79 line 122: kill -KILL 352 wrappercheck-79 line 122: msg= wrappercheck-79 line 123: echo '' wrappercheck-79 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 352 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-79 line 127: echo '' wrappercheck-79 line 129: wait 352 wrappercheck-79 line 131: set -e wrappercheck-79 line 132: '[' 0 = 0 ']' wrappercheck-79 line 133: RET=0 wrappercheck-79 line 136: exit 0 wrappercheck-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-21 line 108: kill -INT -27 wrappercheck-21 line 108: kill -TERM -27 wrappercheck-21 line 108: kill -TERM 27 wrappercheck-21 line 110: KILL_PID=357 wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 27 wrappercheck-21 line 109: perl -e 'sleep(60); kill(9, -27);' wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 357 ']' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 357 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: echo '' wrappercheck-21 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 357 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 357 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=362 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 362 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 362 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: echo '' wrappercheck-15 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 362 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 362 wrappercheck-15 line 131: set -e wrappercheck-15 line 132: '[' 0 = 0 ']' wrappercheck-15 line 133: RET=0 wrappercheck-15 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.xUi6GqymOc Fri Jan 5 16:13:34 2018 UTC (+ 22.4s / 1034.3s) === cleaning up === runtests.py-17077 Fri Jan 5 16:13:34 2018 UTC (+ 1034.4s / 2667.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/googlecalendar; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/googlecalendar' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/googlecalendar/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r googlecalendar -- env VALGRIND_LEAK_CHECK_SKIP=akonadi_control,.bin.sh.-c. VALGRIND_LEAK_CHECK_ONLY_FIRST=1 'VALGRIND_ARGS=--show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=googlecalendar CLIENT_TEST_SOURCES=google_caldav,eds_event SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=google caldav testcases=testcases/google_event.ics' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_UNIQUE_UID=2 CLIENT_TEST_MODE=server CLIENT_TEST_FAILURES=Client::Source::google_caldav::LinkedItems.*::testLinkedItemsChildParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsChildChangesParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsInsertBothUpdateParent,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsRemoveParentFirst,Client::Source::google_caldav::LinkedItems.*::testLinkedItemsRemoveNormal,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChildNoIDs,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild,Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs, SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/testing-amd64/tests/googlecalendar -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav ) Fri Jan 5 16:13:34 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['googlecalendar'] === Fri Jan 5 16:13:34 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 16:13:34 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 16:13:34 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 16:14:09 2018 UTC (+ 34.2s / 34.2s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.4rdRXUkXu6/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 35 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 33 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 33 -gt 1 ']' wrappercheck-19 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 32 -gt 1 ']' wrappercheck-19 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 31 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 line 70: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav wrappercheck-19 line 70: exec + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-24 line 16: PIDS= wrappercheck-24 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-24 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-24 line 21: DAEMON_LOG= wrappercheck-24 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-24 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-24 line 25: declare -a BACKGROUND wrappercheck-24 line 26: declare -a ENV wrappercheck-24 line 28: '[' 29 -gt 1 ']' wrappercheck-24 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-24 line 29: case "$1" in wrappercheck-24 line 31: shift wrappercheck-24 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-24 line 53: shift wrappercheck-24 line 28: '[' 27 -gt 1 ']' wrappercheck-24 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-24 line 29: case "$1" in wrappercheck-24 line 43: shift wrappercheck-24 line 44: DAEMON_SLEEP=5 wrappercheck-24 line 53: shift wrappercheck-24 line 28: '[' 25 -gt 1 ']' wrappercheck-24 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-24 line 29: case "$1" in wrappercheck-24 line 35: shift wrappercheck-24 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-24 line 53: shift wrappercheck-24 line 28: '[' 23 -gt 1 ']' wrappercheck-24 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-24 line 29: case "$1" in wrappercheck-24 line 50: break wrappercheck-24 line 56: '[' 23 -gt 1 ']' wrappercheck-24 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-24 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-24 line 58: shift wrappercheck-24 line 56: '[' 22 -gt 1 ']' wrappercheck-24 line 56: '[' -- '!=' -- ']' wrappercheck-24 line 60: shift wrappercheck-24 line 62: '[' evolution-source-registry.log ']' wrappercheck-24 line 62: '[' '' ']' wrappercheck-24 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-24 line 72: BACKGROUND_PID=28 wrappercheck-24 line 73: PIDS+=28 wrappercheck-24 line 75: '[' evolution-source-registry.log ']' wrappercheck-24 line 75: '[' '' ']' wrappercheck-24 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-24 line 70: set -x wrappercheck-24 line 70: exec wrappercheck-24 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-24 line 93: kill -0 28 wrappercheck-24 line 94: set +e wrappercheck-24 line 95: '[' 5 ']' wrappercheck-24 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-24 line 97: sleep 5 wrappercheck-24 line 99: set -x wrappercheck-24 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 20 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 18 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 16 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 16 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 15 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 14 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 70: exec wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 12 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 10 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 10 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 9 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 8 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 70: set -x wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 70: exec wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp --gen-suppressions=all --log-file=/data/runtests/work/testing-amd64/tests/googlecalendar/valgrind.p107.c%p.out ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav Client::Source::google_caldav::testOpen okay Client::Source::google_caldav::testIterateTwice okay sess: Destroying session. Client::Source::google_caldav::testDelete404 okay sess: Destroying session. Client::Source::google_caldav::testReadItem404 okay sess: Destroying session. Client::Source::google_caldav::testSimpleInsert okay sess: Destroying session. Client::Source::google_caldav::testLocalDeleteAll okay sess: Destroying session. Client::Source::google_caldav::testComplexInsert okay sess: Destroying session. Client::Source::google_caldav::testInsertTwice okay sess: Destroying session. Client::Source::google_caldav::testLocalUpdate okay sess: Destroying session. Client::Source::google_caldav::testChanges okay sess: Destroying session. Client::Source::google_caldav::testChangesMultiCycles okay sess: Destroying session. Client::Source::google_caldav::testImport ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/7, but it's already registered okay sess: Destroying session. Client::Source::google_caldav::testImportDelete okay sess: Destroying session. Client::Source::google_caldav::testRemoveProperties okay sess: Destroying session. Client::Source::google_caldav::testManyChanges okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1820 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildParent *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildParent assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1950 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1997 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2077 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2166 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2281 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2398 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs *** failure ignored *** CalDAVSource.cpp:664:Assertion Test name: Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs event not found - ClientTest.cpp:728 - ClientTest.cpp:2614 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsSingle404 okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsMany404 okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1820 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1950 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:1997 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2077 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2166 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2281 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2398 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs *** failure ignored *** CalDAVSource.cpp:664:Assertion Test name: Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs event not found - ClientTest.cpp:728 - ClientTest.cpp:2614 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildChangesParent okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveParentFirst *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveParentFirst assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2077 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveNormal *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveNormal assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:2166 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChildNoIDs okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Sync::eds_event::testItems okay OKvalgrindcheck (107): './client-test Client::Sync::eds_event::testItems Client::Source::google_caldav' (111): returned 0 ==1008== Memcheck, a memory error detector ==1008== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1008== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1008== Command: ./syncevo-local-sync ==1008== Parent PID: 961 ==1008== ==1008== ==1008== HEAP SUMMARY: ==1008== in use at exit: 3,246,465 bytes in 27,989 blocks ==1008== total heap usage: 215,057 allocs, 187,068 frees, 41,417,505 bytes allocated ==1008== ==1008== LEAK SUMMARY: ==1008== definitely lost: 0 bytes in 0 blocks ==1008== indirectly lost: 0 bytes in 0 blocks ==1008== possibly lost: 528 bytes in 2 blocks ==1008== still reachable: 2,960,654 bytes in 23,612 blocks ==1008== of which reachable via heuristic: ==1008== length64 : 896 bytes in 17 blocks ==1008== newarray : 12,912 bytes in 223 blocks ==1008== suppressed: 273,131 bytes in 4,282 blocks ==1008== Reachable blocks (those to which a pointer was found) are not shown. ==1008== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1008== ==1008== For counts of detected and suppressed errors, rerun with: -v ==1008== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1036== Memcheck, a memory error detector ==1036== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1036== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1036== Command: ./client-test Client::Sync::eds_event::testItems ==1036== Parent PID: 961 ==1036== ==1044== Memcheck, a memory error detector ==1044== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1044== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1044== Command: ./syncevo-local-sync ==1044== Parent PID: 961 ==1044== ==1044== ==1044== HEAP SUMMARY: ==1044== in use at exit: 2,520,826 bytes in 25,671 blocks ==1044== total heap usage: 408,938 allocs, 383,267 frees, 73,550,611 bytes allocated ==1044== ==1044== LEAK SUMMARY: ==1044== definitely lost: 0 bytes in 0 blocks ==1044== indirectly lost: 0 bytes in 0 blocks ==1044== possibly lost: 528 bytes in 2 blocks ==1044== still reachable: 2,235,015 bytes in 21,294 blocks ==1044== of which reachable via heuristic: ==1044== length64 : 896 bytes in 17 blocks ==1044== newarray : 5,976 bytes in 28 blocks ==1044== suppressed: 273,131 bytes in 4,282 blocks ==1044== Reachable blocks (those to which a pointer was found) are not shown. ==1044== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1044== ==1044== For counts of detected and suppressed errors, rerun with: -v ==1044== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1055== Memcheck, a memory error detector ==1055== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1055== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1055== Command: ./syncevo-local-sync ==1055== Parent PID: 961 ==1055== ==1055== ==1055== HEAP SUMMARY: ==1055== in use at exit: 2,599,146 bytes in 25,898 blocks ==1055== total heap usage: 348,259 allocs, 322,361 frees, 64,438,857 bytes allocated ==1055== ==1055== LEAK SUMMARY: ==1055== definitely lost: 0 bytes in 0 blocks ==1055== indirectly lost: 0 bytes in 0 blocks ==1055== possibly lost: 528 bytes in 2 blocks ==1055== still reachable: 2,313,391 bytes in 21,523 blocks ==1055== of which reachable via heuristic: ==1055== length64 : 896 bytes in 17 blocks ==1055== newarray : 5,976 bytes in 28 blocks ==1055== suppressed: 273,075 bytes in 4,280 blocks ==1055== Reachable blocks (those to which a pointer was found) are not shown. ==1055== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1055== ==1055== For counts of detected and suppressed errors, rerun with: -v ==1055== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1078== Memcheck, a memory error detector ==1078== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1078== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1078== Command: ./client-test Client::Sync::eds_event::testItems ==1078== Parent PID: 961 ==1078== ==111== Memcheck, a memory error detector ==111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==111== Command: ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav ==111== Parent PID: 107 ==111== ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 261,860 bytes in 3,725 blocks ==111== total heap usage: 85,466 allocs, 81,741 frees, 15,387,391 bytes allocated ==111== ==111== LEAK SUMMARY: ==111== definitely lost: 0 bytes in 0 blocks ==111== indirectly lost: 0 bytes in 0 blocks ==111== possibly lost: 96 bytes in 1 blocks ==111== still reachable: 44,695 bytes in 277 blocks ==111== of which reachable via heuristic: ==111== newarray : 5,800 bytes in 17 blocks ==111== suppressed: 217,069 bytes in 3,447 blocks ==111== Reachable blocks (those to which a pointer was found) are not shown. ==111== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==111== ==111== For counts of detected and suppressed errors, rerun with: -v ==111== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==119== Memcheck, a memory error detector ==119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==119== Command: ./client-test Client::Source::google_caldav::testOpen ==119== Parent PID: 111 ==119== ==119== ==119== HEAP SUMMARY: ==119== in use at exit: 261,892 bytes in 3,726 blocks ==119== total heap usage: 71,845 allocs, 68,119 frees, 11,316,415 bytes allocated ==119== ==119== LEAK SUMMARY: ==119== definitely lost: 0 bytes in 0 blocks ==119== indirectly lost: 0 bytes in 0 blocks ==119== possibly lost: 96 bytes in 1 blocks ==119== still reachable: 44,743 bytes in 278 blocks ==119== of which reachable via heuristic: ==119== newarray : 5,800 bytes in 17 blocks ==119== suppressed: 217,053 bytes in 3,447 blocks ==119== Reachable blocks (those to which a pointer was found) are not shown. ==119== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==119== ==119== For counts of detected and suppressed errors, rerun with: -v ==119== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==120== Memcheck, a memory error detector ==120== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==120== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==120== Command: ./client-test Client::Source::google_caldav::testIterateTwice ==120== Parent PID: 111 ==120== ==120== ==120== HEAP SUMMARY: ==120== in use at exit: 497,811 bytes in 5,344 blocks ==120== total heap usage: 197,463 allocs, 192,119 frees, 43,502,620 bytes allocated ==120== ==120== LEAK SUMMARY: ==120== definitely lost: 0 bytes in 0 blocks ==120== indirectly lost: 0 bytes in 0 blocks ==120== possibly lost: 960 bytes in 3 blocks ==120== still reachable: 215,668 bytes in 1,103 blocks ==120== of which reachable via heuristic: ==120== length64 : 728 bytes in 14 blocks ==120== newarray : 5,992 bytes in 29 blocks ==120== suppressed: 270,199 bytes in 4,156 blocks ==120== Reachable blocks (those to which a pointer was found) are not shown. ==120== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==120== ==120== For counts of detected and suppressed errors, rerun with: -v ==120== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==125== Memcheck, a memory error detector ==125== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==125== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==125== Command: ./client-test Client::Source::google_caldav::testDelete404 ==125== Parent PID: 111 ==125== ==125== ==125== HEAP SUMMARY: ==125== in use at exit: 497,723 bytes in 5,342 blocks ==125== total heap usage: 198,150 allocs, 192,808 frees, 43,581,554 bytes allocated ==125== ==125== LEAK SUMMARY: ==125== definitely lost: 0 bytes in 0 blocks ==125== indirectly lost: 0 bytes in 0 blocks ==125== possibly lost: 960 bytes in 3 blocks ==125== still reachable: 215,668 bytes in 1,103 blocks ==125== of which reachable via heuristic: ==125== length64 : 728 bytes in 14 blocks ==125== newarray : 5,992 bytes in 29 blocks ==125== suppressed: 270,111 bytes in 4,154 blocks ==125== Reachable blocks (those to which a pointer was found) are not shown. ==125== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==125== ==125== For counts of detected and suppressed errors, rerun with: -v ==125== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==130== Memcheck, a memory error detector ==130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==130== Command: ./client-test Client::Source::google_caldav::testReadItem404 ==130== Parent PID: 111 ==130== ==130== ==130== HEAP SUMMARY: ==130== in use at exit: 497,771 bytes in 5,344 blocks ==130== total heap usage: 198,153 allocs, 192,809 frees, 43,581,692 bytes allocated ==130== ==130== LEAK SUMMARY: ==130== definitely lost: 0 bytes in 0 blocks ==130== indirectly lost: 0 bytes in 0 blocks ==130== possibly lost: 960 bytes in 3 blocks ==130== still reachable: 215,668 bytes in 1,103 blocks ==130== of which reachable via heuristic: ==130== length64 : 728 bytes in 14 blocks ==130== newarray : 5,992 bytes in 29 blocks ==130== suppressed: 270,159 bytes in 4,156 blocks ==130== Reachable blocks (those to which a pointer was found) are not shown. ==130== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==130== ==130== For counts of detected and suppressed errors, rerun with: -v ==130== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==135== Memcheck, a memory error detector ==135== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==135== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==135== Command: ./client-test Client::Source::google_caldav::testSimpleInsert ==135== Parent PID: 111 ==135== ==135== ==135== HEAP SUMMARY: ==135== in use at exit: 497,795 bytes in 5,344 blocks ==135== total heap usage: 211,952 allocs, 206,608 frees, 45,560,620 bytes allocated ==135== ==135== LEAK SUMMARY: ==135== definitely lost: 0 bytes in 0 blocks ==135== indirectly lost: 0 bytes in 0 blocks ==135== possibly lost: 960 bytes in 3 blocks ==135== still reachable: 215,668 bytes in 1,103 blocks ==135== of which reachable via heuristic: ==135== length64 : 728 bytes in 14 blocks ==135== newarray : 5,992 bytes in 29 blocks ==135== suppressed: 270,183 bytes in 4,156 blocks ==135== Reachable blocks (those to which a pointer was found) are not shown. ==135== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==135== ==135== For counts of detected and suppressed errors, rerun with: -v ==135== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==140== Memcheck, a memory error detector ==140== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==140== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==140== Command: ./client-test Client::Source::google_caldav::testLocalDeleteAll ==140== Parent PID: 111 ==140== ==140== ==140== HEAP SUMMARY: ==140== in use at exit: 501,275 bytes in 5,357 blocks ==140== total heap usage: 241,797 allocs, 236,440 frees, 50,366,865 bytes allocated ==140== ==140== LEAK SUMMARY: ==140== definitely lost: 0 bytes in 0 blocks ==140== indirectly lost: 0 bytes in 0 blocks ==140== possibly lost: 960 bytes in 3 blocks ==140== still reachable: 219,220 bytes in 1,117 blocks ==140== of which reachable via heuristic: ==140== length64 : 728 bytes in 14 blocks ==140== newarray : 5,992 bytes in 29 blocks ==140== suppressed: 270,111 bytes in 4,155 blocks ==140== Reachable blocks (those to which a pointer was found) are not shown. ==140== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==140== ==140== For counts of detected and suppressed errors, rerun with: -v ==140== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==145== Memcheck, a memory error detector ==145== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==145== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==145== Command: ./client-test Client::Source::google_caldav::testComplexInsert ==145== Parent PID: 111 ==145== ==145== ==145== HEAP SUMMARY: ==145== in use at exit: 419,563 bytes in 5,115 blocks ==145== total heap usage: 233,856 allocs, 228,741 frees, 46,711,982 bytes allocated ==145== ==145== LEAK SUMMARY: ==145== definitely lost: 0 bytes in 0 blocks ==145== indirectly lost: 0 bytes in 0 blocks ==145== possibly lost: 960 bytes in 3 blocks ==145== still reachable: 137,516 bytes in 875 blocks ==145== of which reachable via heuristic: ==145== length64 : 728 bytes in 14 blocks ==145== newarray : 5,992 bytes in 29 blocks ==145== suppressed: 270,103 bytes in 4,155 blocks ==145== Reachable blocks (those to which a pointer was found) are not shown. ==145== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==145== ==145== For counts of detected and suppressed errors, rerun with: -v ==145== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==150== Memcheck, a memory error detector ==150== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==150== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==150== Command: ./client-test Client::Source::google_caldav::testInsertTwice ==150== Parent PID: 111 ==150== ==150== ==150== HEAP SUMMARY: ==150== in use at exit: 442,899 bytes in 5,129 blocks ==150== total heap usage: 213,798 allocs, 208,669 frees, 44,397,053 bytes allocated ==150== ==150== LEAK SUMMARY: ==150== definitely lost: 0 bytes in 0 blocks ==150== indirectly lost: 0 bytes in 0 blocks ==150== possibly lost: 960 bytes in 3 blocks ==150== still reachable: 160,852 bytes in 889 blocks ==150== of which reachable via heuristic: ==150== length64 : 728 bytes in 14 blocks ==150== newarray : 5,992 bytes in 29 blocks ==150== suppressed: 270,103 bytes in 4,155 blocks ==150== Reachable blocks (those to which a pointer was found) are not shown. ==150== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==150== ==150== For counts of detected and suppressed errors, rerun with: -v ==150== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==155== Memcheck, a memory error detector ==155== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==155== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==155== Command: ./client-test Client::Source::google_caldav::testLocalUpdate ==155== Parent PID: 111 ==155== ==155== ==155== HEAP SUMMARY: ==155== in use at exit: 446,251 bytes in 5,142 blocks ==155== total heap usage: 248,394 allocs, 243,252 frees, 49,067,479 bytes allocated ==155== ==155== LEAK SUMMARY: ==155== definitely lost: 0 bytes in 0 blocks ==155== indirectly lost: 0 bytes in 0 blocks ==155== possibly lost: 960 bytes in 3 blocks ==155== still reachable: 164,180 bytes in 902 blocks ==155== of which reachable via heuristic: ==155== length64 : 728 bytes in 14 blocks ==155== newarray : 5,992 bytes in 29 blocks ==155== suppressed: 270,127 bytes in 4,155 blocks ==155== Reachable blocks (those to which a pointer was found) are not shown. ==155== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==155== ==155== For counts of detected and suppressed errors, rerun with: -v ==155== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==160== Memcheck, a memory error detector ==160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==160== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==160== Command: ./client-test Client::Source::google_caldav::testChanges ==160== Parent PID: 111 ==160== ==160== ==160== HEAP SUMMARY: ==160== in use at exit: 469,531 bytes in 5,233 blocks ==160== total heap usage: 1,186,059 allocs, 1,180,826 frees, 279,618,111 bytes allocated ==160== ==160== LEAK SUMMARY: ==160== definitely lost: 0 bytes in 0 blocks ==160== indirectly lost: 0 bytes in 0 blocks ==160== possibly lost: 960 bytes in 3 blocks ==160== still reachable: 187,476 bytes in 993 blocks ==160== of which reachable via heuristic: ==160== length64 : 728 bytes in 14 blocks ==160== newarray : 5,992 bytes in 29 blocks ==160== suppressed: 270,111 bytes in 4,155 blocks ==160== Reachable blocks (those to which a pointer was found) are not shown. ==160== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==160== ==160== For counts of detected and suppressed errors, rerun with: -v ==160== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==165== Memcheck, a memory error detector ==165== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==165== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==165== Command: ./client-test Client::Source::google_caldav::testChangesMultiCycles ==165== Parent PID: 111 ==165== ==165== ==165== HEAP SUMMARY: ==165== in use at exit: 466,203 bytes in 5,220 blocks ==165== total heap usage: 978,506 allocs, 973,286 frees, 239,185,024 bytes allocated ==165== ==165== LEAK SUMMARY: ==165== definitely lost: 0 bytes in 0 blocks ==165== indirectly lost: 0 bytes in 0 blocks ==165== possibly lost: 960 bytes in 3 blocks ==165== still reachable: 184,148 bytes in 980 blocks ==165== of which reachable via heuristic: ==165== length64 : 728 bytes in 14 blocks ==165== newarray : 5,992 bytes in 29 blocks ==165== suppressed: 270,111 bytes in 4,155 blocks ==165== Reachable blocks (those to which a pointer was found) are not shown. ==165== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==165== ==165== For counts of detected and suppressed errors, rerun with: -v ==165== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==170== Memcheck, a memory error detector ==170== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==170== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==170== Command: ./client-test Client::Source::google_caldav::testImport ==170== Parent PID: 111 ==170== ==170== ==170== HEAP SUMMARY: ==170== in use at exit: 482,835 bytes in 5,285 blocks ==170== total heap usage: 399,320 allocs, 394,035 frees, 99,611,804 bytes allocated ==170== ==170== LEAK SUMMARY: ==170== definitely lost: 0 bytes in 0 blocks ==170== indirectly lost: 0 bytes in 0 blocks ==170== possibly lost: 960 bytes in 3 blocks ==170== still reachable: 200,788 bytes in 1,045 blocks ==170== of which reachable via heuristic: ==170== length64 : 728 bytes in 14 blocks ==170== newarray : 5,992 bytes in 29 blocks ==170== suppressed: 270,103 bytes in 4,155 blocks ==170== Reachable blocks (those to which a pointer was found) are not shown. ==170== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==170== ==170== For counts of detected and suppressed errors, rerun with: -v ==170== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==175== Memcheck, a memory error detector ==175== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==175== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==175== Command: ./client-test Client::Source::google_caldav::testImport ==175== Parent PID: 170 ==175== ==183== Memcheck, a memory error detector ==183== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==183== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==183== Command: ./client-test Client::Source::google_caldav::testImportDelete ==183== Parent PID: 111 ==183== ==183== ==183== HEAP SUMMARY: ==183== in use at exit: 519,451 bytes in 5,428 blocks ==183== total heap usage: 436,151 allocs, 430,723 frees, 106,617,208 bytes allocated ==183== ==183== LEAK SUMMARY: ==183== definitely lost: 0 bytes in 0 blocks ==183== indirectly lost: 0 bytes in 0 blocks ==183== possibly lost: 960 bytes in 3 blocks ==183== still reachable: 237,396 bytes in 1,188 blocks ==183== of which reachable via heuristic: ==183== length64 : 728 bytes in 14 blocks ==183== newarray : 5,992 bytes in 29 blocks ==183== suppressed: 270,111 bytes in 4,155 blocks ==183== Reachable blocks (those to which a pointer was found) are not shown. ==183== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==183== ==183== For counts of detected and suppressed errors, rerun with: -v ==183== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==188== Memcheck, a memory error detector ==188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==188== Command: ./client-test Client::Source::google_caldav::testImportDelete ==188== Parent PID: 183 ==188== ==196== Memcheck, a memory error detector ==196== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==196== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==196== Command: ./client-test Client::Source::google_caldav::testRemoveProperties ==196== Parent PID: 111 ==196== ==196== ==196== HEAP SUMMARY: ==196== in use at exit: 515,099 bytes in 5,411 blocks ==196== total heap usage: 469,825 allocs, 464,414 frees, 116,444,726 bytes allocated ==196== ==196== LEAK SUMMARY: ==196== definitely lost: 0 bytes in 0 blocks ==196== indirectly lost: 0 bytes in 0 blocks ==196== possibly lost: 960 bytes in 3 blocks ==196== still reachable: 233,044 bytes in 1,171 blocks ==196== of which reachable via heuristic: ==196== length64 : 728 bytes in 14 blocks ==196== newarray : 5,992 bytes in 29 blocks ==196== suppressed: 270,111 bytes in 4,155 blocks ==196== Reachable blocks (those to which a pointer was found) are not shown. ==196== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==196== ==196== For counts of detected and suppressed errors, rerun with: -v ==196== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==201== Memcheck, a memory error detector ==201== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==201== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==201== Command: ./client-test Client::Source::google_caldav::testRemoveProperties ==201== Parent PID: 196 ==201== ==209== Memcheck, a memory error detector ==209== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==209== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==209== Command: ./client-test Client::Source::google_caldav::testManyChanges ==209== Parent PID: 111 ==209== ==209== ==209== HEAP SUMMARY: ==209== in use at exit: 508,451 bytes in 5,385 blocks ==209== total heap usage: 475,216 allocs, 469,831 frees, 113,559,709 bytes allocated ==209== ==209== LEAK SUMMARY: ==209== definitely lost: 0 bytes in 0 blocks ==209== indirectly lost: 0 bytes in 0 blocks ==209== possibly lost: 960 bytes in 3 blocks ==209== still reachable: 226,388 bytes in 1,145 blocks ==209== of which reachable via heuristic: ==209== length64 : 728 bytes in 14 blocks ==209== newarray : 5,992 bytes in 29 blocks ==209== suppressed: 270,119 bytes in 4,155 blocks ==209== Reachable blocks (those to which a pointer was found) are not shown. ==209== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==209== ==209== For counts of detected and suppressed errors, rerun with: -v ==209== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==214== Memcheck, a memory error detector ==214== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==214== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==214== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParent ==214== Parent PID: 111 ==214== ==214== ==214== HEAP SUMMARY: ==214== in use at exit: 443,147 bytes in 5,130 blocks ==214== total heap usage: 506,942 allocs, 501,812 frees, 124,984,309 bytes allocated ==214== ==214== LEAK SUMMARY: ==214== definitely lost: 0 bytes in 0 blocks ==214== indirectly lost: 0 bytes in 0 blocks ==214== possibly lost: 960 bytes in 3 blocks ==214== still reachable: 161,108 bytes in 890 blocks ==214== of which reachable via heuristic: ==214== length64 : 728 bytes in 14 blocks ==214== newarray : 5,992 bytes in 29 blocks ==214== suppressed: 270,095 bytes in 4,155 blocks ==214== Reachable blocks (those to which a pointer was found) are not shown. ==214== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==214== ==214== For counts of detected and suppressed errors, rerun with: -v ==214== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==219== Memcheck, a memory error detector ==219== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==219== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==219== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParent ==219== Parent PID: 214 ==219== ==227== Memcheck, a memory error detector ==227== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==227== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==227== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild ==227== Parent PID: 111 ==227== ==227== ==227== HEAP SUMMARY: ==227== in use at exit: 443,171 bytes in 5,130 blocks ==227== total heap usage: 439,344 allocs, 434,214 frees, 110,040,565 bytes allocated ==227== ==227== LEAK SUMMARY: ==227== definitely lost: 0 bytes in 0 blocks ==227== indirectly lost: 0 bytes in 0 blocks ==227== possibly lost: 960 bytes in 3 blocks ==227== still reachable: 161,108 bytes in 890 blocks ==227== of which reachable via heuristic: ==227== length64 : 728 bytes in 14 blocks ==227== newarray : 5,992 bytes in 29 blocks ==227== suppressed: 270,119 bytes in 4,155 blocks ==227== Reachable blocks (those to which a pointer was found) are not shown. ==227== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==227== ==227== For counts of detected and suppressed errors, rerun with: -v ==227== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==232== Memcheck, a memory error detector ==232== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==232== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==232== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChild ==232== Parent PID: 227 ==232== ==240== Memcheck, a memory error detector ==240== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==240== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==240== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentChild ==240== Parent PID: 111 ==240== ==240== ==240== HEAP SUMMARY: ==240== in use at exit: 468,267 bytes in 5,228 blocks ==240== total heap usage: 559,089 allocs, 553,861 frees, 132,987,793 bytes allocated ==240== ==240== LEAK SUMMARY: ==240== definitely lost: 0 bytes in 0 blocks ==240== indirectly lost: 0 bytes in 0 blocks ==240== possibly lost: 960 bytes in 3 blocks ==240== still reachable: 186,196 bytes in 988 blocks ==240== of which reachable via heuristic: ==240== length64 : 728 bytes in 14 blocks ==240== newarray : 5,992 bytes in 29 blocks ==240== suppressed: 270,127 bytes in 4,155 blocks ==240== Reachable blocks (those to which a pointer was found) are not shown. ==240== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==240== ==240== For counts of detected and suppressed errors, rerun with: -v ==240== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==245== Memcheck, a memory error detector ==245== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==245== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==245== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentChild ==245== Parent PID: 240 ==245== ==253== Memcheck, a memory error detector ==253== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==253== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==253== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==253== Parent PID: 111 ==253== ==253== ==253== HEAP SUMMARY: ==253== in use at exit: 450,347 bytes in 5,158 blocks ==253== total heap usage: 333,503 allocs, 328,345 frees, 73,868,760 bytes allocated ==253== ==253== LEAK SUMMARY: ==253== definitely lost: 0 bytes in 0 blocks ==253== indirectly lost: 0 bytes in 0 blocks ==253== possibly lost: 960 bytes in 3 blocks ==253== still reachable: 168,276 bytes in 918 blocks ==253== of which reachable via heuristic: ==253== length64 : 728 bytes in 14 blocks ==253== newarray : 5,992 bytes in 29 blocks ==253== suppressed: 270,127 bytes in 4,155 blocks ==253== Reachable blocks (those to which a pointer was found) are not shown. ==253== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==253== ==253== For counts of detected and suppressed errors, rerun with: -v ==253== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==258== Memcheck, a memory error detector ==258== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==258== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==258== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==258== Parent PID: 253 ==258== ==266== Memcheck, a memory error detector ==266== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==266== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==266== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildParent ==266== Parent PID: 111 ==266== ==266== ==266== HEAP SUMMARY: ==266== in use at exit: 463,736 bytes in 5,221 blocks ==266== total heap usage: 457,464 allocs, 452,243 frees, 113,879,451 bytes allocated ==266== ==266== LEAK SUMMARY: ==266== definitely lost: 0 bytes in 0 blocks ==266== indirectly lost: 0 bytes in 0 blocks ==266== possibly lost: 960 bytes in 3 blocks ==266== still reachable: 181,689 bytes in 981 blocks ==266== of which reachable via heuristic: ==266== length64 : 728 bytes in 14 blocks ==266== newarray : 5,992 bytes in 29 blocks ==266== suppressed: 270,103 bytes in 4,155 blocks ==266== Reachable blocks (those to which a pointer was found) are not shown. ==266== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==266== ==266== For counts of detected and suppressed errors, rerun with: -v ==266== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==271== Memcheck, a memory error detector ==271== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==271== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==271== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildParent ==271== Parent PID: 266 ==271== ==279== Memcheck, a memory error detector ==279== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==279== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==279== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent ==279== Parent PID: 111 ==279== ==279== ==279== HEAP SUMMARY: ==279== in use at exit: 456,584 bytes in 5,193 blocks ==279== total heap usage: 443,149 allocs, 437,956 frees, 111,518,741 bytes allocated ==279== ==279== LEAK SUMMARY: ==279== definitely lost: 0 bytes in 0 blocks ==279== indirectly lost: 0 bytes in 0 blocks ==279== possibly lost: 960 bytes in 3 blocks ==279== still reachable: 174,521 bytes in 953 blocks ==279== of which reachable via heuristic: ==279== length64 : 728 bytes in 14 blocks ==279== newarray : 5,992 bytes in 29 blocks ==279== suppressed: 270,119 bytes in 4,155 blocks ==279== Reachable blocks (those to which a pointer was found) are not shown. ==279== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==279== ==279== For counts of detected and suppressed errors, rerun with: -v ==279== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==284== Memcheck, a memory error detector ==284== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==284== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==284== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent ==284== Parent PID: 279 ==284== ==292== Memcheck, a memory error detector ==292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==292== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==292== Parent PID: 111 ==292== ==292== ==292== HEAP SUMMARY: ==292== in use at exit: 461,107 bytes in 5,200 blocks ==292== total heap usage: 553,527 allocs, 548,327 frees, 140,384,589 bytes allocated ==292== ==292== LEAK SUMMARY: ==292== definitely lost: 0 bytes in 0 blocks ==292== indirectly lost: 0 bytes in 0 blocks ==292== possibly lost: 960 bytes in 3 blocks ==292== still reachable: 179,028 bytes in 960 blocks ==292== of which reachable via heuristic: ==292== length64 : 728 bytes in 14 blocks ==292== newarray : 5,992 bytes in 29 blocks ==292== suppressed: 270,135 bytes in 4,155 blocks ==292== Reachable blocks (those to which a pointer was found) are not shown. ==292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==292== ==292== For counts of detected and suppressed errors, rerun with: -v ==292== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==297== Memcheck, a memory error detector ==297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==297== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==297== Parent PID: 292 ==297== ==305== Memcheck, a memory error detector ==305== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==305== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==305== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==305== Parent PID: 292 ==305== ==313== Memcheck, a memory error detector ==313== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==313== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==313== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==313== Parent PID: 111 ==313== ==313== ==313== HEAP SUMMARY: ==313== in use at exit: 464,667 bytes in 5,214 blocks ==313== total heap usage: 554,256 allocs, 549,042 frees, 140,685,251 bytes allocated ==313== ==313== LEAK SUMMARY: ==313== definitely lost: 0 bytes in 0 blocks ==313== indirectly lost: 0 bytes in 0 blocks ==313== possibly lost: 960 bytes in 3 blocks ==313== still reachable: 182,612 bytes in 974 blocks ==313== of which reachable via heuristic: ==313== length64 : 728 bytes in 14 blocks ==313== newarray : 5,992 bytes in 29 blocks ==313== suppressed: 270,111 bytes in 4,155 blocks ==313== Reachable blocks (those to which a pointer was found) are not shown. ==313== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==313== ==313== For counts of detected and suppressed errors, rerun with: -v ==313== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==318== Memcheck, a memory error detector ==318== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==318== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==318== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==318== Parent PID: 313 ==318== ==326== Memcheck, a memory error detector ==326== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==326== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==326== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==326== Parent PID: 313 ==326== ==334== Memcheck, a memory error detector ==334== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==334== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==334== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==334== Parent PID: 111 ==334== ==334== ==334== HEAP SUMMARY: ==334== in use at exit: 457,483 bytes in 5,184 blocks ==334== total heap usage: 631,799 allocs, 626,615 frees, 162,395,106 bytes allocated ==334== ==334== LEAK SUMMARY: ==334== definitely lost: 0 bytes in 0 blocks ==334== indirectly lost: 0 bytes in 0 blocks ==334== possibly lost: 960 bytes in 3 blocks ==334== still reachable: 175,444 bytes in 946 blocks ==334== of which reachable via heuristic: ==334== length64 : 728 bytes in 14 blocks ==334== newarray : 5,992 bytes in 29 blocks ==334== suppressed: 270,095 bytes in 4,153 blocks ==334== Reachable blocks (those to which a pointer was found) are not shown. ==334== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==334== ==334== For counts of detected and suppressed errors, rerun with: -v ==334== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==339== Memcheck, a memory error detector ==339== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==339== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==339== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==339== Parent PID: 334 ==339== ==347== Memcheck, a memory error detector ==347== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==347== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==347== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==347== Parent PID: 334 ==347== ==355== Memcheck, a memory error detector ==355== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==355== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==355== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==355== Parent PID: 111 ==355== ==355== ==355== HEAP SUMMARY: ==355== in use at exit: 443,155 bytes in 5,130 blocks ==355== total heap usage: 442,215 allocs, 437,085 frees, 110,922,164 bytes allocated ==355== ==355== LEAK SUMMARY: ==355== definitely lost: 0 bytes in 0 blocks ==355== indirectly lost: 0 bytes in 0 blocks ==355== possibly lost: 960 bytes in 3 blocks ==355== still reachable: 161,108 bytes in 890 blocks ==355== of which reachable via heuristic: ==355== length64 : 728 bytes in 14 blocks ==355== newarray : 5,992 bytes in 29 blocks ==355== suppressed: 270,103 bytes in 4,155 blocks ==355== Reachable blocks (those to which a pointer was found) are not shown. ==355== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==355== ==355== For counts of detected and suppressed errors, rerun with: -v ==355== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==360== Memcheck, a memory error detector ==360== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==360== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==360== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==360== Parent PID: 355 ==360== ==368== Memcheck, a memory error detector ==368== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==368== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==368== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==368== Parent PID: 111 ==368== ==368== ==368== HEAP SUMMARY: ==368== in use at exit: 453,947 bytes in 5,172 blocks ==368== total heap usage: 656,387 allocs, 651,215 frees, 173,473,964 bytes allocated ==368== ==368== LEAK SUMMARY: ==368== definitely lost: 0 bytes in 0 blocks ==368== indirectly lost: 0 bytes in 0 blocks ==368== possibly lost: 960 bytes in 3 blocks ==368== still reachable: 171,860 bytes in 932 blocks ==368== of which reachable via heuristic: ==368== length64 : 728 bytes in 14 blocks ==368== newarray : 5,992 bytes in 29 blocks ==368== suppressed: 270,143 bytes in 4,155 blocks ==368== Reachable blocks (those to which a pointer was found) are not shown. ==368== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==368== ==368== For counts of detected and suppressed errors, rerun with: -v ==368== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==373== Memcheck, a memory error detector ==373== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==373== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==373== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==373== Parent PID: 368 ==373== ==381== Memcheck, a memory error detector ==381== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==381== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==381== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==381== Parent PID: 368 ==381== ==389== Memcheck, a memory error detector ==389== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==389== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==389== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild ==389== Parent PID: 111 ==389== ==389== ==389== HEAP SUMMARY: ==389== in use at exit: 443,155 bytes in 5,130 blocks ==389== total heap usage: 443,731 allocs, 438,601 frees, 111,627,803 bytes allocated ==389== ==389== LEAK SUMMARY: ==389== definitely lost: 0 bytes in 0 blocks ==389== indirectly lost: 0 bytes in 0 blocks ==389== possibly lost: 960 bytes in 3 blocks ==389== still reachable: 161,108 bytes in 890 blocks ==389== of which reachable via heuristic: ==389== length64 : 728 bytes in 14 blocks ==389== newarray : 5,992 bytes in 29 blocks ==389== suppressed: 270,103 bytes in 4,155 blocks ==389== Reachable blocks (those to which a pointer was found) are not shown. ==389== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==389== ==389== For counts of detected and suppressed errors, rerun with: -v ==389== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==394== Memcheck, a memory error detector ==394== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==394== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==394== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild ==394== Parent PID: 389 ==394== ==402== Memcheck, a memory error detector ==402== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==402== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==402== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==402== Parent PID: 111 ==402== ==402== ==402== HEAP SUMMARY: ==402== in use at exit: 446,691 bytes in 5,142 blocks ==402== total heap usage: 236,887 allocs, 231,745 frees, 47,660,137 bytes allocated ==402== ==402== LEAK SUMMARY: ==402== definitely lost: 0 bytes in 0 blocks ==402== indirectly lost: 0 bytes in 0 blocks ==402== possibly lost: 960 bytes in 3 blocks ==402== still reachable: 164,692 bytes in 904 blocks ==402== of which reachable via heuristic: ==402== length64 : 728 bytes in 14 blocks ==402== newarray : 5,992 bytes in 29 blocks ==402== suppressed: 270,055 bytes in 4,153 blocks ==402== Reachable blocks (those to which a pointer was found) are not shown. ==402== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==402== ==402== For counts of detected and suppressed errors, rerun with: -v ==402== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==407== Memcheck, a memory error detector ==407== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==407== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==407== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==407== Parent PID: 111 ==407== ==407== ==407== HEAP SUMMARY: ==407== in use at exit: 475,411 bytes in 5,256 blocks ==407== total heap usage: 666,036 allocs, 660,780 frees, 169,989,614 bytes allocated ==407== ==407== LEAK SUMMARY: ==407== definitely lost: 0 bytes in 0 blocks ==407== indirectly lost: 0 bytes in 0 blocks ==407== possibly lost: 960 bytes in 3 blocks ==407== still reachable: 193,364 bytes in 1,016 blocks ==407== of which reachable via heuristic: ==407== length64 : 728 bytes in 14 blocks ==407== newarray : 5,992 bytes in 29 blocks ==407== suppressed: 270,103 bytes in 4,155 blocks ==407== Reachable blocks (those to which a pointer was found) are not shown. ==407== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==407== ==407== For counts of detected and suppressed errors, rerun with: -v ==407== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==412== Memcheck, a memory error detector ==412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==412== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==412== Parent PID: 407 ==412== ==420== Memcheck, a memory error detector ==420== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==420== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==420== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==420== Parent PID: 407 ==420== ==428== Memcheck, a memory error detector ==428== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==428== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==428== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==428== Parent PID: 111 ==428== ==428== ==428== HEAP SUMMARY: ==428== in use at exit: 471,819 bytes in 5,242 blocks ==428== total heap usage: 665,173 allocs, 659,931 frees, 169,670,959 bytes allocated ==428== ==428== LEAK SUMMARY: ==428== definitely lost: 0 bytes in 0 blocks ==428== indirectly lost: 0 bytes in 0 blocks ==428== possibly lost: 960 bytes in 3 blocks ==428== still reachable: 189,780 bytes in 1,002 blocks ==428== of which reachable via heuristic: ==428== length64 : 728 bytes in 14 blocks ==428== newarray : 5,992 bytes in 29 blocks ==428== suppressed: 270,095 bytes in 4,155 blocks ==428== Reachable blocks (those to which a pointer was found) are not shown. ==428== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==428== ==428== For counts of detected and suppressed errors, rerun with: -v ==428== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==433== Memcheck, a memory error detector ==433== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==433== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==433== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==433== Parent PID: 428 ==433== ==441== Memcheck, a memory error detector ==441== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==441== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==441== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==441== Parent PID: 428 ==441== ==449== Memcheck, a memory error detector ==449== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==449== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==449== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsSingle404 ==449== Parent PID: 111 ==449== ==449== ==449== HEAP SUMMARY: ==449== in use at exit: 419,555 bytes in 5,115 blocks ==449== total heap usage: 235,923 allocs, 230,808 frees, 47,467,253 bytes allocated ==449== ==449== LEAK SUMMARY: ==449== definitely lost: 0 bytes in 0 blocks ==449== indirectly lost: 0 bytes in 0 blocks ==449== possibly lost: 960 bytes in 3 blocks ==449== still reachable: 137,516 bytes in 875 blocks ==449== of which reachable via heuristic: ==449== length64 : 728 bytes in 14 blocks ==449== newarray : 5,992 bytes in 29 blocks ==449== suppressed: 270,095 bytes in 4,155 blocks ==449== Reachable blocks (those to which a pointer was found) are not shown. ==449== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==449== ==449== For counts of detected and suppressed errors, rerun with: -v ==449== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==454== Memcheck, a memory error detector ==454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==454== Command: ./client-test Client::Source::google_caldav::LinkedItemsDefault::testLinkedItemsMany404 ==454== Parent PID: 111 ==454== ==454== ==454== HEAP SUMMARY: ==454== in use at exit: 446,707 bytes in 5,142 blocks ==454== total heap usage: 261,533 allocs, 256,391 frees, 51,424,961 bytes allocated ==454== ==454== LEAK SUMMARY: ==454== definitely lost: 0 bytes in 0 blocks ==454== indirectly lost: 0 bytes in 0 blocks ==454== possibly lost: 960 bytes in 3 blocks ==454== still reachable: 164,692 bytes in 904 blocks ==454== of which reachable via heuristic: ==454== length64 : 728 bytes in 14 blocks ==454== newarray : 5,992 bytes in 29 blocks ==454== suppressed: 270,071 bytes in 4,153 blocks ==454== Reachable blocks (those to which a pointer was found) are not shown. ==454== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==454== ==454== For counts of detected and suppressed errors, rerun with: -v ==454== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==459== Memcheck, a memory error detector ==459== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==459== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==459== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParent ==459== Parent PID: 111 ==459== ==459== ==459== HEAP SUMMARY: ==459== in use at exit: 450,315 bytes in 5,158 blocks ==459== total heap usage: 550,679 allocs, 545,521 frees, 139,914,720 bytes allocated ==459== ==459== LEAK SUMMARY: ==459== definitely lost: 0 bytes in 0 blocks ==459== indirectly lost: 0 bytes in 0 blocks ==459== possibly lost: 960 bytes in 3 blocks ==459== still reachable: 168,276 bytes in 918 blocks ==459== of which reachable via heuristic: ==459== length64 : 728 bytes in 14 blocks ==459== newarray : 5,992 bytes in 29 blocks ==459== suppressed: 270,095 bytes in 4,155 blocks ==459== Reachable blocks (those to which a pointer was found) are not shown. ==459== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==459== ==459== For counts of detected and suppressed errors, rerun with: -v ==459== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==464== Memcheck, a memory error detector ==464== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==464== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==464== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParent ==464== Parent PID: 459 ==464== ==472== Memcheck, a memory error detector ==472== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==472== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==472== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild ==472== Parent PID: 111 ==472== ==472== ==472== HEAP SUMMARY: ==472== in use at exit: 435,884 bytes in 5,085 blocks ==472== total heap usage: 446,643 allocs, 441,558 frees, 112,412,619 bytes allocated ==472== ==472== LEAK SUMMARY: ==472== definitely lost: 0 bytes in 0 blocks ==472== indirectly lost: 0 bytes in 0 blocks ==472== possibly lost: 960 bytes in 3 blocks ==472== still reachable: 156,164 bytes in 875 blocks ==472== of which reachable via heuristic: ==472== length64 : 768 bytes in 15 blocks ==472== newarray : 5,992 bytes in 29 blocks ==472== suppressed: 268,920 bytes in 4,133 blocks ==472== Reachable blocks (those to which a pointer was found) are not shown. ==472== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==472== ==472== For counts of detected and suppressed errors, rerun with: -v ==472== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==477== Memcheck, a memory error detector ==477== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==477== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==477== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChild ==477== Parent PID: 472 ==477== ==485== Memcheck, a memory error detector ==485== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==485== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==485== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild ==485== Parent PID: 111 ==485== ==485== ==485== HEAP SUMMARY: ==485== in use at exit: 468,259 bytes in 5,228 blocks ==485== total heap usage: 566,969 allocs, 561,741 frees, 135,740,695 bytes allocated ==485== ==485== LEAK SUMMARY: ==485== definitely lost: 0 bytes in 0 blocks ==485== indirectly lost: 0 bytes in 0 blocks ==485== possibly lost: 960 bytes in 3 blocks ==485== still reachable: 186,196 bytes in 988 blocks ==485== of which reachable via heuristic: ==485== length64 : 728 bytes in 14 blocks ==485== newarray : 5,992 bytes in 29 blocks ==485== suppressed: 270,119 bytes in 4,155 blocks ==485== Reachable blocks (those to which a pointer was found) are not shown. ==485== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==485== ==485== For counts of detected and suppressed errors, rerun with: -v ==485== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==490== Memcheck, a memory error detector ==490== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==490== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==490== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild ==490== Parent PID: 485 ==490== ==498== Memcheck, a memory error detector ==498== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==498== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==498== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==498== Parent PID: 111 ==498== ==498== ==498== HEAP SUMMARY: ==498== in use at exit: 450,315 bytes in 5,158 blocks ==498== total heap usage: 337,086 allocs, 331,928 frees, 75,245,596 bytes allocated ==498== ==498== LEAK SUMMARY: ==498== definitely lost: 0 bytes in 0 blocks ==498== indirectly lost: 0 bytes in 0 blocks ==498== possibly lost: 960 bytes in 3 blocks ==498== still reachable: 168,276 bytes in 918 blocks ==498== of which reachable via heuristic: ==498== length64 : 728 bytes in 14 blocks ==498== newarray : 5,992 bytes in 29 blocks ==498== suppressed: 270,095 bytes in 4,155 blocks ==498== Reachable blocks (those to which a pointer was found) are not shown. ==498== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==498== ==498== For counts of detected and suppressed errors, rerun with: -v ==498== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==503== Memcheck, a memory error detector ==503== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==503== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==503== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==503== Parent PID: 498 ==503== ==511== Memcheck, a memory error detector ==511== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==511== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==511== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent ==511== Parent PID: 111 ==511== ==511== ==511== HEAP SUMMARY: ==511== in use at exit: 463,736 bytes in 5,221 blocks ==511== total heap usage: 464,688 allocs, 459,467 frees, 116,539,731 bytes allocated ==511== ==511== LEAK SUMMARY: ==511== definitely lost: 0 bytes in 0 blocks ==511== indirectly lost: 0 bytes in 0 blocks ==511== possibly lost: 960 bytes in 3 blocks ==511== still reachable: 181,689 bytes in 981 blocks ==511== of which reachable via heuristic: ==511== length64 : 728 bytes in 14 blocks ==511== newarray : 5,992 bytes in 29 blocks ==511== suppressed: 270,103 bytes in 4,155 blocks ==511== Reachable blocks (those to which a pointer was found) are not shown. ==511== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==511== ==511== For counts of detected and suppressed errors, rerun with: -v ==511== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==516== Memcheck, a memory error detector ==516== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==516== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==516== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent ==516== Parent PID: 511 ==516== ==524== Memcheck, a memory error detector ==524== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==524== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==524== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==524== Parent PID: 111 ==524== ==524== ==524== HEAP SUMMARY: ==524== in use at exit: 456,584 bytes in 5,193 blocks ==524== total heap usage: 450,393 allocs, 445,200 frees, 114,019,196 bytes allocated ==524== ==524== LEAK SUMMARY: ==524== definitely lost: 0 bytes in 0 blocks ==524== indirectly lost: 0 bytes in 0 blocks ==524== possibly lost: 960 bytes in 3 blocks ==524== still reachable: 174,521 bytes in 953 blocks ==524== of which reachable via heuristic: ==524== length64 : 728 bytes in 14 blocks ==524== newarray : 5,992 bytes in 29 blocks ==524== suppressed: 270,119 bytes in 4,155 blocks ==524== Reachable blocks (those to which a pointer was found) are not shown. ==524== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==524== ==524== For counts of detected and suppressed errors, rerun with: -v ==524== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==529== Memcheck, a memory error detector ==529== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==529== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==529== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==529== Parent PID: 524 ==529== ==537== Memcheck, a memory error detector ==537== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==537== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==537== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==537== Parent PID: 111 ==537== ==537== ==537== HEAP SUMMARY: ==537== in use at exit: 461,099 bytes in 5,200 blocks ==537== total heap usage: 562,126 allocs, 556,926 frees, 143,018,285 bytes allocated ==537== ==537== LEAK SUMMARY: ==537== definitely lost: 0 bytes in 0 blocks ==537== indirectly lost: 0 bytes in 0 blocks ==537== possibly lost: 960 bytes in 3 blocks ==537== still reachable: 179,028 bytes in 960 blocks ==537== of which reachable via heuristic: ==537== length64 : 728 bytes in 14 blocks ==537== newarray : 5,992 bytes in 29 blocks ==537== suppressed: 270,127 bytes in 4,155 blocks ==537== Reachable blocks (those to which a pointer was found) are not shown. ==537== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==537== ==537== For counts of detected and suppressed errors, rerun with: -v ==537== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==542== Memcheck, a memory error detector ==542== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==542== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==542== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==542== Parent PID: 537 ==542== ==550== Memcheck, a memory error detector ==550== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==550== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==550== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==550== Parent PID: 537 ==550== ==558== Memcheck, a memory error detector ==558== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==558== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==558== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==558== Parent PID: 111 ==558== ==558== ==558== HEAP SUMMARY: ==558== in use at exit: 464,675 bytes in 5,214 blocks ==558== total heap usage: 562,757 allocs, 557,543 frees, 143,255,535 bytes allocated ==558== ==558== LEAK SUMMARY: ==558== definitely lost: 0 bytes in 0 blocks ==558== indirectly lost: 0 bytes in 0 blocks ==558== possibly lost: 960 bytes in 3 blocks ==558== still reachable: 182,612 bytes in 974 blocks ==558== of which reachable via heuristic: ==558== length64 : 728 bytes in 14 blocks ==558== newarray : 5,992 bytes in 29 blocks ==558== suppressed: 270,119 bytes in 4,155 blocks ==558== Reachable blocks (those to which a pointer was found) are not shown. ==558== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==558== ==558== For counts of detected and suppressed errors, rerun with: -v ==558== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==563== Memcheck, a memory error detector ==563== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==563== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==563== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==563== Parent PID: 558 ==563== ==571== Memcheck, a memory error detector ==571== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==571== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==571== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==571== Parent PID: 558 ==571== ==579== Memcheck, a memory error detector ==579== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==579== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==579== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==579== Parent PID: 111 ==579== ==579== ==579== HEAP SUMMARY: ==579== in use at exit: 457,515 bytes in 5,186 blocks ==579== total heap usage: 676,845 allocs, 671,659 frees, 177,182,355 bytes allocated ==579== ==579== LEAK SUMMARY: ==579== definitely lost: 0 bytes in 0 blocks ==579== indirectly lost: 0 bytes in 0 blocks ==579== possibly lost: 960 bytes in 3 blocks ==579== still reachable: 175,444 bytes in 946 blocks ==579== of which reachable via heuristic: ==579== length64 : 728 bytes in 14 blocks ==579== newarray : 5,992 bytes in 29 blocks ==579== suppressed: 270,127 bytes in 4,155 blocks ==579== Reachable blocks (those to which a pointer was found) are not shown. ==579== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==579== ==579== For counts of detected and suppressed errors, rerun with: -v ==579== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==584== Memcheck, a memory error detector ==584== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==584== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==584== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==584== Parent PID: 579 ==584== ==592== Memcheck, a memory error detector ==592== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==592== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==592== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==592== Parent PID: 579 ==592== ==600== Memcheck, a memory error detector ==600== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==600== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==600== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==600== Parent PID: 111 ==600== ==600== ==600== HEAP SUMMARY: ==600== in use at exit: 443,179 bytes in 5,130 blocks ==600== total heap usage: 449,511 allocs, 444,381 frees, 113,703,398 bytes allocated ==600== ==600== LEAK SUMMARY: ==600== definitely lost: 0 bytes in 0 blocks ==600== indirectly lost: 0 bytes in 0 blocks ==600== possibly lost: 960 bytes in 3 blocks ==600== still reachable: 161,108 bytes in 890 blocks ==600== of which reachable via heuristic: ==600== length64 : 728 bytes in 14 blocks ==600== newarray : 5,992 bytes in 29 blocks ==600== suppressed: 270,127 bytes in 4,155 blocks ==600== Reachable blocks (those to which a pointer was found) are not shown. ==600== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==600== ==600== For counts of detected and suppressed errors, rerun with: -v ==600== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==605== Memcheck, a memory error detector ==605== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==605== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==605== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==605== Parent PID: 600 ==605== ==613== Memcheck, a memory error detector ==613== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==613== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==613== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==613== Parent PID: 111 ==613== ==613== ==613== HEAP SUMMARY: ==613== in use at exit: 453,875 bytes in 5,170 blocks ==613== total heap usage: 632,346 allocs, 627,176 frees, 164,826,874 bytes allocated ==613== ==613== LEAK SUMMARY: ==613== definitely lost: 0 bytes in 0 blocks ==613== indirectly lost: 0 bytes in 0 blocks ==613== possibly lost: 960 bytes in 3 blocks ==613== still reachable: 171,860 bytes in 932 blocks ==613== of which reachable via heuristic: ==613== length64 : 728 bytes in 14 blocks ==613== newarray : 5,992 bytes in 29 blocks ==613== suppressed: 270,071 bytes in 4,153 blocks ==613== Reachable blocks (those to which a pointer was found) are not shown. ==613== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==613== ==613== For counts of detected and suppressed errors, rerun with: -v ==613== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==618== Memcheck, a memory error detector ==618== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==618== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==618== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==618== Parent PID: 613 ==618== ==626== Memcheck, a memory error detector ==626== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==626== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==626== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==626== Parent PID: 613 ==626== ==634== Memcheck, a memory error detector ==634== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==634== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==634== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==634== Parent PID: 111 ==634== ==634== ==634== HEAP SUMMARY: ==634== in use at exit: 435,884 bytes in 5,085 blocks ==634== total heap usage: 485,832 allocs, 480,747 frees, 125,574,715 bytes allocated ==634== ==634== LEAK SUMMARY: ==634== definitely lost: 0 bytes in 0 blocks ==634== indirectly lost: 0 bytes in 0 blocks ==634== possibly lost: 960 bytes in 3 blocks ==634== still reachable: 156,164 bytes in 875 blocks ==634== of which reachable via heuristic: ==634== length64 : 768 bytes in 15 blocks ==634== newarray : 5,992 bytes in 29 blocks ==634== suppressed: 268,920 bytes in 4,133 blocks ==634== Reachable blocks (those to which a pointer was found) are not shown. ==634== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==634== ==634== For counts of detected and suppressed errors, rerun with: -v ==634== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==639== Memcheck, a memory error detector ==639== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==639== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==639== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==639== Parent PID: 634 ==639== ==647== Memcheck, a memory error detector ==647== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==647== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==647== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==647== Parent PID: 111 ==647== ==647== ==647== HEAP SUMMARY: ==647== in use at exit: 446,707 bytes in 5,142 blocks ==647== total heap usage: 238,785 allocs, 233,643 frees, 48,224,020 bytes allocated ==647== ==647== LEAK SUMMARY: ==647== definitely lost: 0 bytes in 0 blocks ==647== indirectly lost: 0 bytes in 0 blocks ==647== possibly lost: 960 bytes in 3 blocks ==647== still reachable: 164,692 bytes in 904 blocks ==647== of which reachable via heuristic: ==647== length64 : 728 bytes in 14 blocks ==647== newarray : 5,992 bytes in 29 blocks ==647== suppressed: 270,071 bytes in 4,153 blocks ==647== Reachable blocks (those to which a pointer was found) are not shown. ==647== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==647== ==647== For counts of detected and suppressed errors, rerun with: -v ==647== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==652== Memcheck, a memory error detector ==652== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==652== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==652== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==652== Parent PID: 111 ==652== ==652== ==652== HEAP SUMMARY: ==652== in use at exit: 475,427 bytes in 5,256 blocks ==652== total heap usage: 675,949 allocs, 670,693 frees, 172,910,334 bytes allocated ==652== ==652== LEAK SUMMARY: ==652== definitely lost: 0 bytes in 0 blocks ==652== indirectly lost: 0 bytes in 0 blocks ==652== possibly lost: 960 bytes in 3 blocks ==652== still reachable: 193,364 bytes in 1,016 blocks ==652== of which reachable via heuristic: ==652== length64 : 728 bytes in 14 blocks ==652== newarray : 5,992 bytes in 29 blocks ==652== suppressed: 270,119 bytes in 4,155 blocks ==652== Reachable blocks (those to which a pointer was found) are not shown. ==652== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==652== ==652== For counts of detected and suppressed errors, rerun with: -v ==652== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==657== Memcheck, a memory error detector ==657== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==657== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==657== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==657== Parent PID: 652 ==657== ==665== Memcheck, a memory error detector ==665== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==665== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==665== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==665== Parent PID: 652 ==665== ==673== Memcheck, a memory error detector ==673== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==673== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==673== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==673== Parent PID: 111 ==673== ==673== ==673== HEAP SUMMARY: ==673== in use at exit: 471,803 bytes in 5,240 blocks ==673== total heap usage: 675,012 allocs, 669,772 frees, 172,259,324 bytes allocated ==673== ==673== LEAK SUMMARY: ==673== definitely lost: 0 bytes in 0 blocks ==673== indirectly lost: 0 bytes in 0 blocks ==673== possibly lost: 960 bytes in 3 blocks ==673== still reachable: 189,780 bytes in 1,002 blocks ==673== of which reachable via heuristic: ==673== length64 : 728 bytes in 14 blocks ==673== newarray : 5,992 bytes in 29 blocks ==673== suppressed: 270,079 bytes in 4,153 blocks ==673== Reachable blocks (those to which a pointer was found) are not shown. ==673== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==673== ==673== For counts of detected and suppressed errors, rerun with: -v ==673== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==678== Memcheck, a memory error detector ==678== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==678== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==678== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==678== Parent PID: 673 ==678== ==686== Memcheck, a memory error detector ==686== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==686== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==686== Command: ./client-test Client::Source::google_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==686== Parent PID: 673 ==686== ==694== Memcheck, a memory error detector ==694== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==694== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==694== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParent ==694== Parent PID: 111 ==694== ==694== ==694== HEAP SUMMARY: ==694== in use at exit: 443,155 bytes in 5,130 blocks ==694== total heap usage: 522,208 allocs, 517,078 frees, 129,598,342 bytes allocated ==694== ==694== LEAK SUMMARY: ==694== definitely lost: 0 bytes in 0 blocks ==694== indirectly lost: 0 bytes in 0 blocks ==694== possibly lost: 960 bytes in 3 blocks ==694== still reachable: 161,108 bytes in 890 blocks ==694== of which reachable via heuristic: ==694== length64 : 728 bytes in 14 blocks ==694== newarray : 5,992 bytes in 29 blocks ==694== suppressed: 270,103 bytes in 4,155 blocks ==694== Reachable blocks (those to which a pointer was found) are not shown. ==694== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==694== ==694== For counts of detected and suppressed errors, rerun with: -v ==694== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==699== Memcheck, a memory error detector ==699== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==699== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==699== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParent ==699== Parent PID: 694 ==699== ==707== Memcheck, a memory error detector ==707== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==707== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==707== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChild ==707== Parent PID: 111 ==707== ==707== ==707== HEAP SUMMARY: ==707== in use at exit: 443,187 bytes in 5,130 blocks ==707== total heap usage: 522,014 allocs, 516,884 frees, 129,412,519 bytes allocated ==707== ==707== LEAK SUMMARY: ==707== definitely lost: 0 bytes in 0 blocks ==707== indirectly lost: 0 bytes in 0 blocks ==707== possibly lost: 960 bytes in 3 blocks ==707== still reachable: 161,108 bytes in 890 blocks ==707== of which reachable via heuristic: ==707== length64 : 728 bytes in 14 blocks ==707== newarray : 5,992 bytes in 29 blocks ==707== suppressed: 270,135 bytes in 4,155 blocks ==707== Reachable blocks (those to which a pointer was found) are not shown. ==707== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==707== ==707== For counts of detected and suppressed errors, rerun with: -v ==707== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==712== Memcheck, a memory error detector ==712== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==712== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==712== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChild ==712== Parent PID: 707 ==712== ==720== Memcheck, a memory error detector ==720== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==720== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==720== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentChild ==720== Parent PID: 111 ==720== ==720== ==720== HEAP SUMMARY: ==720== in use at exit: 464,675 bytes in 5,214 blocks ==720== total heap usage: 572,730 allocs, 567,516 frees, 137,244,776 bytes allocated ==720== ==720== LEAK SUMMARY: ==720== definitely lost: 0 bytes in 0 blocks ==720== indirectly lost: 0 bytes in 0 blocks ==720== possibly lost: 960 bytes in 3 blocks ==720== still reachable: 182,612 bytes in 974 blocks ==720== of which reachable via heuristic: ==720== length64 : 728 bytes in 14 blocks ==720== newarray : 5,992 bytes in 29 blocks ==720== suppressed: 270,119 bytes in 4,155 blocks ==720== Reachable blocks (those to which a pointer was found) are not shown. ==720== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==720== ==720== For counts of detected and suppressed errors, rerun with: -v ==720== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==725== Memcheck, a memory error detector ==725== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==725== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==725== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentChild ==725== Parent PID: 720 ==725== ==733== Memcheck, a memory error detector ==733== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==733== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==733== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChildNoIDs ==733== Parent PID: 111 ==733== ==733== ==733== HEAP SUMMARY: ==733== in use at exit: 450,331 bytes in 5,158 blocks ==733== total heap usage: 339,520 allocs, 334,362 frees, 75,954,407 bytes allocated ==733== ==733== LEAK SUMMARY: ==733== definitely lost: 0 bytes in 0 blocks ==733== indirectly lost: 0 bytes in 0 blocks ==733== possibly lost: 960 bytes in 3 blocks ==733== still reachable: 168,276 bytes in 918 blocks ==733== of which reachable via heuristic: ==733== length64 : 728 bytes in 14 blocks ==733== newarray : 5,992 bytes in 29 blocks ==733== suppressed: 270,111 bytes in 4,155 blocks ==733== Reachable blocks (those to which a pointer was found) are not shown. ==733== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==733== ==733== For counts of detected and suppressed errors, rerun with: -v ==733== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==738== Memcheck, a memory error detector ==738== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==738== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==738== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChildNoIDs ==738== Parent PID: 733 ==738== ==746== Memcheck, a memory error detector ==746== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==746== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==746== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildParent ==746== Parent PID: 111 ==746== ==746== ==746== HEAP SUMMARY: ==746== in use at exit: 457,507 bytes in 5,186 blocks ==746== total heap usage: 538,613 allocs, 533,427 frees, 132,781,353 bytes allocated ==746== ==746== LEAK SUMMARY: ==746== definitely lost: 0 bytes in 0 blocks ==746== indirectly lost: 0 bytes in 0 blocks ==746== possibly lost: 960 bytes in 3 blocks ==746== still reachable: 175,444 bytes in 946 blocks ==746== of which reachable via heuristic: ==746== length64 : 728 bytes in 14 blocks ==746== newarray : 5,992 bytes in 29 blocks ==746== suppressed: 270,119 bytes in 4,155 blocks ==746== Reachable blocks (those to which a pointer was found) are not shown. ==746== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==746== ==746== For counts of detected and suppressed errors, rerun with: -v ==746== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==751== Memcheck, a memory error detector ==751== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==751== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==751== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildParent ==751== Parent PID: 746 ==751== ==759== Memcheck, a memory error detector ==759== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==759== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==759== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildChangesParent ==759== Parent PID: 111 ==759== ==759== ==759== HEAP SUMMARY: ==759== in use at exit: 453,915 bytes in 5,172 blocks ==759== total heap usage: 646,854 allocs, 641,682 frees, 167,247,009 bytes allocated ==759== ==759== LEAK SUMMARY: ==759== definitely lost: 0 bytes in 0 blocks ==759== indirectly lost: 0 bytes in 0 blocks ==759== possibly lost: 960 bytes in 3 blocks ==759== still reachable: 171,860 bytes in 932 blocks ==759== of which reachable via heuristic: ==759== length64 : 728 bytes in 14 blocks ==759== newarray : 5,992 bytes in 29 blocks ==759== suppressed: 270,111 bytes in 4,155 blocks ==759== Reachable blocks (those to which a pointer was found) are not shown. ==759== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==759== ==759== For counts of detected and suppressed errors, rerun with: -v ==759== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==764== Memcheck, a memory error detector ==764== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==764== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==764== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildChangesParent ==764== Parent PID: 759 ==764== ==772== Memcheck, a memory error detector ==772== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==772== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==772== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsChildChangesParent ==772== Parent PID: 759 ==772== ==780== Memcheck, a memory error detector ==780== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==780== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==780== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveParentFirst ==780== Parent PID: 111 ==780== ==780== ==780== HEAP SUMMARY: ==780== in use at exit: 457,515 bytes in 5,186 blocks ==780== total heap usage: 566,917 allocs, 561,731 frees, 144,303,669 bytes allocated ==780== ==780== LEAK SUMMARY: ==780== definitely lost: 0 bytes in 0 blocks ==780== indirectly lost: 0 bytes in 0 blocks ==780== possibly lost: 960 bytes in 3 blocks ==780== still reachable: 175,444 bytes in 946 blocks ==780== of which reachable via heuristic: ==780== length64 : 728 bytes in 14 blocks ==780== newarray : 5,992 bytes in 29 blocks ==780== suppressed: 270,127 bytes in 4,155 blocks ==780== Reachable blocks (those to which a pointer was found) are not shown. ==780== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==780== ==780== For counts of detected and suppressed errors, rerun with: -v ==780== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==785== Memcheck, a memory error detector ==785== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==785== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==785== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveParentFirst ==785== Parent PID: 780 ==785== ==793== Memcheck, a memory error detector ==793== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==793== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==793== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveParentFirst ==793== Parent PID: 780 ==793== ==801== Memcheck, a memory error detector ==801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==801== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveNormal ==801== Parent PID: 111 ==801== ==801== ==801== HEAP SUMMARY: ==801== in use at exit: 464,659 bytes in 5,214 blocks ==801== total heap usage: 568,260 allocs, 563,046 frees, 144,518,558 bytes allocated ==801== ==801== LEAK SUMMARY: ==801== definitely lost: 0 bytes in 0 blocks ==801== indirectly lost: 0 bytes in 0 blocks ==801== possibly lost: 960 bytes in 3 blocks ==801== still reachable: 182,612 bytes in 974 blocks ==801== of which reachable via heuristic: ==801== length64 : 728 bytes in 14 blocks ==801== newarray : 5,992 bytes in 29 blocks ==801== suppressed: 270,103 bytes in 4,155 blocks ==801== Reachable blocks (those to which a pointer was found) are not shown. ==801== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==801== ==801== For counts of detected and suppressed errors, rerun with: -v ==801== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==806== Memcheck, a memory error detector ==806== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==806== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==806== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveNormal ==806== Parent PID: 801 ==806== ==814== Memcheck, a memory error detector ==814== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==814== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==814== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsRemoveNormal ==814== Parent PID: 801 ==814== ==822== Memcheck, a memory error detector ==822== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==822== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==822== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertParentTwice ==822== Parent PID: 111 ==822== ==822== ==822== HEAP SUMMARY: ==822== in use at exit: 457,507 bytes in 5,186 blocks ==822== total heap usage: 648,564 allocs, 643,378 frees, 167,984,047 bytes allocated ==822== ==822== LEAK SUMMARY: ==822== definitely lost: 0 bytes in 0 blocks ==822== indirectly lost: 0 bytes in 0 blocks ==822== possibly lost: 960 bytes in 3 blocks ==822== still reachable: 175,444 bytes in 946 blocks ==822== of which reachable via heuristic: ==822== length64 : 728 bytes in 14 blocks ==822== newarray : 5,992 bytes in 29 blocks ==822== suppressed: 270,119 bytes in 4,155 blocks ==822== Reachable blocks (those to which a pointer was found) are not shown. ==822== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==822== ==822== For counts of detected and suppressed errors, rerun with: -v ==822== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==827== Memcheck, a memory error detector ==827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==827== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertParentTwice ==827== Parent PID: 822 ==827== ==835== Memcheck, a memory error detector ==835== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==835== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==835== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertParentTwice ==835== Parent PID: 822 ==835== ==843== Memcheck, a memory error detector ==843== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==843== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==843== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice ==843== Parent PID: 111 ==843== ==843== ==843== HEAP SUMMARY: ==843== in use at exit: 450,323 bytes in 5,158 blocks ==843== total heap usage: 646,647 allocs, 641,489 frees, 167,104,414 bytes allocated ==843== ==843== LEAK SUMMARY: ==843== definitely lost: 0 bytes in 0 blocks ==843== indirectly lost: 0 bytes in 0 blocks ==843== possibly lost: 960 bytes in 3 blocks ==843== still reachable: 168,276 bytes in 918 blocks ==843== of which reachable via heuristic: ==843== length64 : 728 bytes in 14 blocks ==843== newarray : 5,992 bytes in 29 blocks ==843== suppressed: 270,103 bytes in 4,155 blocks ==843== Reachable blocks (those to which a pointer was found) are not shown. ==843== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==843== ==843== For counts of detected and suppressed errors, rerun with: -v ==843== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==848== Memcheck, a memory error detector ==848== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==848== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==848== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice ==848== Parent PID: 843 ==848== ==856== Memcheck, a memory error detector ==856== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==856== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==856== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertChildTwice ==856== Parent PID: 843 ==856== ==864== Memcheck, a memory error detector ==864== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==864== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==864== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentUpdate ==864== Parent PID: 111 ==864== ==864== ==864== HEAP SUMMARY: ==864== in use at exit: 450,315 bytes in 5,158 blocks ==864== total heap usage: 638,261 allocs, 633,103 frees, 166,975,795 bytes allocated ==864== ==864== LEAK SUMMARY: ==864== definitely lost: 0 bytes in 0 blocks ==864== indirectly lost: 0 bytes in 0 blocks ==864== possibly lost: 960 bytes in 3 blocks ==864== still reachable: 168,276 bytes in 918 blocks ==864== of which reachable via heuristic: ==864== length64 : 728 bytes in 14 blocks ==864== newarray : 5,992 bytes in 29 blocks ==864== suppressed: 270,095 bytes in 4,155 blocks ==864== Reachable blocks (those to which a pointer was found) are not shown. ==864== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==864== ==864== For counts of detected and suppressed errors, rerun with: -v ==864== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==869== Memcheck, a memory error detector ==869== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==869== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==869== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentUpdate ==869== Parent PID: 864 ==869== ==877== Memcheck, a memory error detector ==877== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==877== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==877== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsParentUpdate ==877== Parent PID: 864 ==877== ==885== Memcheck, a memory error detector ==885== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==885== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==885== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild ==885== Parent PID: 111 ==885== ==885== ==885== HEAP SUMMARY: ==885== in use at exit: 450,315 bytes in 5,158 blocks ==885== total heap usage: 637,607 allocs, 632,449 frees, 166,256,200 bytes allocated ==885== ==885== LEAK SUMMARY: ==885== definitely lost: 0 bytes in 0 blocks ==885== indirectly lost: 0 bytes in 0 blocks ==885== possibly lost: 960 bytes in 3 blocks ==885== still reachable: 168,276 bytes in 918 blocks ==885== of which reachable via heuristic: ==885== length64 : 728 bytes in 14 blocks ==885== newarray : 5,992 bytes in 29 blocks ==885== suppressed: 270,095 bytes in 4,155 blocks ==885== Reachable blocks (those to which a pointer was found) are not shown. ==885== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==885== ==885== For counts of detected and suppressed errors, rerun with: -v ==885== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==890== Memcheck, a memory error detector ==890== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==890== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==890== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild ==890== Parent PID: 885 ==890== ==898== Memcheck, a memory error detector ==898== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==898== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==898== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChild ==898== Parent PID: 885 ==898== ==906== Memcheck, a memory error detector ==906== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==906== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==906== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChildNoIDs ==906== Parent PID: 111 ==906== ==906== ==906== HEAP SUMMARY: ==906== in use at exit: 443,115 bytes in 5,128 blocks ==906== total heap usage: 315,818 allocs, 310,690 frees, 72,424,040 bytes allocated ==906== ==906== LEAK SUMMARY: ==906== definitely lost: 0 bytes in 0 blocks ==906== indirectly lost: 0 bytes in 0 blocks ==906== possibly lost: 960 bytes in 3 blocks ==906== still reachable: 161,108 bytes in 890 blocks ==906== of which reachable via heuristic: ==906== length64 : 728 bytes in 14 blocks ==906== newarray : 5,992 bytes in 29 blocks ==906== suppressed: 270,063 bytes in 4,153 blocks ==906== Reachable blocks (those to which a pointer was found) are not shown. ==906== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==906== ==906== For counts of detected and suppressed errors, rerun with: -v ==906== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==911== Memcheck, a memory error detector ==911== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==911== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==911== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsUpdateChildNoIDs ==911== Parent PID: 906 ==911== ==919== Memcheck, a memory error detector ==919== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==919== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==919== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChild ==919== Parent PID: 111 ==919== ==919== ==919== HEAP SUMMARY: ==919== in use at exit: 475,419 bytes in 5,256 blocks ==919== total heap usage: 682,498 allocs, 677,242 frees, 174,980,141 bytes allocated ==919== ==919== LEAK SUMMARY: ==919== definitely lost: 0 bytes in 0 blocks ==919== indirectly lost: 0 bytes in 0 blocks ==919== possibly lost: 960 bytes in 3 blocks ==919== still reachable: 193,364 bytes in 1,016 blocks ==919== of which reachable via heuristic: ==919== length64 : 728 bytes in 14 blocks ==919== newarray : 5,992 bytes in 29 blocks ==919== suppressed: 270,111 bytes in 4,155 blocks ==919== Reachable blocks (those to which a pointer was found) are not shown. ==919== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==919== ==919== For counts of detected and suppressed errors, rerun with: -v ==919== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==924== Memcheck, a memory error detector ==924== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==924== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==924== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChild ==924== Parent PID: 919 ==924== ==932== Memcheck, a memory error detector ==932== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==932== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==932== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateChild ==932== Parent PID: 919 ==932== ==940== Memcheck, a memory error detector ==940== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==940== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==940== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateParent ==940== Parent PID: 111 ==940== ==940== ==940== HEAP SUMMARY: ==940== in use at exit: 471,835 bytes in 5,242 blocks ==940== total heap usage: 681,686 allocs, 676,444 frees, 174,883,376 bytes allocated ==940== ==940== LEAK SUMMARY: ==940== definitely lost: 0 bytes in 0 blocks ==940== indirectly lost: 0 bytes in 0 blocks ==940== possibly lost: 960 bytes in 3 blocks ==940== still reachable: 189,780 bytes in 1,002 blocks ==940== of which reachable via heuristic: ==940== length64 : 728 bytes in 14 blocks ==940== newarray : 5,992 bytes in 29 blocks ==940== suppressed: 270,111 bytes in 4,155 blocks ==940== Reachable blocks (those to which a pointer was found) are not shown. ==940== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==940== ==940== For counts of detected and suppressed errors, rerun with: -v ==940== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==945== Memcheck, a memory error detector ==945== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==945== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==945== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateParent ==945== Parent PID: 940 ==945== ==953== Memcheck, a memory error detector ==953== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==953== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==953== Command: ./client-test Client::Source::google_caldav::LinkedItemsAllDayGoogle::testLinkedItemsInsertBothUpdateParent ==953== Parent PID: 940 ==953== ==961== Memcheck, a memory error detector ==961== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==961== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==961== Command: ./client-test Client::Sync::eds_event::testItems ==961== Parent PID: 111 ==961== ==961== ==961== HEAP SUMMARY: ==961== in use at exit: 2,877,860 bytes in 29,771 blocks ==961== total heap usage: 1,325,660 allocs, 1,295,889 frees, 177,504,511 bytes allocated ==961== ==961== LEAK SUMMARY: ==961== definitely lost: 0 bytes in 0 blocks ==961== indirectly lost: 0 bytes in 0 blocks ==961== possibly lost: 528 bytes in 2 blocks ==961== still reachable: 2,204,553 bytes in 21,197 blocks ==961== of which reachable via heuristic: ==961== length64 : 4,856 bytes in 77 blocks ==961== newarray : 6,312 bytes in 49 blocks ==961== suppressed: 603,147 bytes in 8,041 blocks ==961== Reachable blocks (those to which a pointer was found) are not shown. ==961== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==961== ==961== For counts of detected and suppressed errors, rerun with: -v ==961== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==990== Memcheck, a memory error detector ==990== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==990== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==990== Command: ./syncevo-local-sync ==990== Parent PID: 961 ==990== ==990== ==990== HEAP SUMMARY: ==990== in use at exit: 2,520,834 bytes in 25,671 blocks ==990== total heap usage: 284,514 allocs, 258,843 frees, 58,136,029 bytes allocated ==990== ==990== LEAK SUMMARY: ==990== definitely lost: 0 bytes in 0 blocks ==990== indirectly lost: 0 bytes in 0 blocks ==990== possibly lost: 528 bytes in 2 blocks ==990== still reachable: 2,235,015 bytes in 21,294 blocks ==990== of which reachable via heuristic: ==990== length64 : 896 bytes in 17 blocks ==990== newarray : 5,976 bytes in 28 blocks ==990== suppressed: 273,139 bytes in 4,282 blocks ==990== Reachable blocks (those to which a pointer was found) are not shown. ==990== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==990== ==990== For counts of detected and suppressed errors, rerun with: -v ==990== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) valgrindcheck: ./client-test Client::Sync::eds_event::testItems Client::Source::google_caldav: final result 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=2871 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 2871 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 2871 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: echo '' wrappercheck-102 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2871 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 2871 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=2876 wrappercheck-82 line 115: set +e wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 116: wait 84 wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 2876 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 2876 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: echo '' wrappercheck-82 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2876 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 2876 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-24 line 100: RET=0 wrappercheck-24 line 101: set -e wrappercheck-24 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-24 line 108: kill -INT -28 wrappercheck-24 line 108: kill -TERM -28 wrappercheck-24 line 108: kill -TERM 28 wrappercheck-24 line 110: KILL_PID=2881 wrappercheck-24 line 115: set +e wrappercheck-24 line 116: wait 28 wrappercheck-24 line 117: SUBRET=143 wrappercheck-24 line 118: case $SUBRET in wrappercheck-24 line 118: SUBRET=0 wrappercheck-24 line 120: SUBRET=0 wrappercheck-24 line 121: '[' 2881 ']' wwrappercheck-24 line 122: LC_ALL=C wwrappercheck-24 line 122: kill -KILL 2881 wrappercheck-24 line 122: msg= wrappercheck-24 line 123: grep -q 'No such process' wrappercheck-24 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2881 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-24 line 127: echo '' wrappercheck-24 line 129: wait 2881 wrappercheck-24 line 131: set -e wrappercheck-24 line 132: '[' 0 = 0 ']' wrappercheck-24 line 133: RET=0 wrappercheck-24 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=2886 wrappercheck-19 line 115: set +e wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-19 line 116: wait 22 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 2886 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 2886 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2886 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 2886 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.4rdRXUkXu6 Fri Jan 5 16:55:46 2018 UTC (+ 2497.9s / 2532.1s) === cleaning up ===