runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 1.5s / 1633.4s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/owndrive/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 0.1s / 1633.6s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/.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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/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/owndrive/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/owndrive/data runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) === starting owndrive === runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) result dir: /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/15-owndrive, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/15-owndrive runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) changing into directory /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/owndrive (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/owndrive) runtests.py-17079 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/owndrive; 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/owndrive' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/owndrive/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/owndrive/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/owndrive/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r owndrive -- env 'CLIENT_TEST_WEBDAV=owndrive caldav carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_MODE=server 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/owndrive -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 owndrive ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['owndrive'] === 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:45 2018 UTC (+ 1044.9s / 1045.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 owndrive ./syncevolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used + 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 '!=' -- ']' ** Message: couldn't access control socket: /tmp/tmp.UynxuLSmaQ/keyring/control: No such file or directory 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: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=18 wrappercheck-15 line 73: PIDS+=18 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 70: exec wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 18 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 owndrive ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-22 line 16: PIDS= wrappercheck-22 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-22 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-22 line 21: DAEMON_LOG= wrappercheck-22 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-22 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-22 line 25: declare -a BACKGROUND wrappercheck-22 line 26: declare -a ENV wrappercheck-22 line 28: '[' 26 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 31: shift wrappercheck-22 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 24 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 43: shift wrappercheck-22 line 44: DAEMON_SLEEP=5 wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 22 -gt 1 ']' wrappercheck-22 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 35: shift wrappercheck-22 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 20 -gt 1 ']' wrappercheck-22 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 50: break wrappercheck-22 line 56: '[' 20 -gt 1 ']' wrappercheck-22 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-22 line 58: shift wrappercheck-22 line 56: '[' 19 -gt 1 ']' wrappercheck-22 line 56: '[' -- '!=' -- ']' wrappercheck-22 line 60: shift wrappercheck-22 line 62: '[' evolution-source-registry.log ']' wrappercheck-22 line 62: '[' '' ']' wrappercheck-22 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-22 line 72: BACKGROUND_PID=27 wrappercheck-22 line 73: PIDS+=27 wrappercheck-22 line 75: '[' evolution-source-registry.log ']' wrappercheck-22 line 75: '[' '' ']' wrappercheck-22 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-22 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-22 line 70: set -x wrappercheck-22 line 70: exec wrappercheck-22 line 93: kill -0 27 wrappercheck-22 line 94: set +e wrappercheck-22 line 95: '[' 5 ']' wrappercheck-22 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-22 line 97: sleep 5 wrappercheck-22 line 99: set -x wrappercheck-22 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 owndrive ./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 75: '[' '' ']' wrappercheck-79 line 70: exec 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 owndrive ./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 75: '[' evolution-calendar-factory.log ']' wrappercheck-99 line 75: '[' '' ']' wrappercheck-99 line 70: exec 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 owndrive ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/owndrive/.sync4j/evolution/owndrive_[12]' '/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/owndrive_[12]' '/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-[12]/peers/owndrive_[12]' '/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=owndrive_1@client-test-owndrive-1 ++ credentials owndrive_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-owndrive retryDuration=30s calendar/uri=caldav addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template owndrive --template SyncEvolution_Client username= password= syncURL=local://@client-test-owndrive retryDuration=30s calendar/uri=caldav addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 owndrive_1@client-test-owndrive-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/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/addressbook /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/calendar /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/todo /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/memo /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-1/peers/owndrive_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 owndrive_1@client-test-owndrive-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 owndrive_1@client-test-owndrive-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 owndrive_1@client-test-owndrive-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 owndrive_1@client-test-owndrive-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for source in carddav caldav ++ ./syncevolution --print-databases --daemon=no syncURL=https://my.owndrive.com username=pohly password=K9j27fhDg26dfvske backend=carddav [INFO] start database search at https://my.owndrive.com, from sync config '@default', syncURL='https://my.owndrive.com' + databases='carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' + echo 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ++ pick_default 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' ++ echo 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' ++ '[' 0 -ne 0 ']' + database=https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/ + ./syncevolution --configure --daemon=no database=https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/ databaseUser=pohly databasePassword=K9j27fhDg26dfvske backend=carddav owndrive_1@client-test-owndrive-1 owndrive_carddav + for source in carddav caldav ++ ./syncevolution --print-databases --daemon=no syncURL=https://my.owndrive.com username=pohly password=K9j27fhDg26dfvske backend=caldav [INFO] start database search at https://my.owndrive.com, from sync config '@default', syncURL='https://my.owndrive.com' + databases='caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' + echo 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ++ pick_default 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' ++ echo 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' ++ '[' 0 -ne 0 ']' + database=https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/ + ./syncevolution --configure --daemon=no database=https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/ databaseUser=pohly databasePassword=K9j27fhDg26dfvske backend=caldav owndrive_1@client-test-owndrive-1 owndrive_caldav + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=owndrive_2@client-test-owndrive-2 ++ credentials owndrive_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-owndrive retryDuration=30s calendar/uri=caldav addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template owndrive --template SyncEvolution_Client username= password= syncURL=local://@client-test-owndrive retryDuration=30s calendar/uri=caldav addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 owndrive_2@client-test-owndrive-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/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/addressbook /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/calendar /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/todo /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/memo /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive-2/peers/owndrive_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 owndrive_2@client-test-owndrive-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 owndrive_2@client-test-owndrive-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 owndrive_2@client-test-owndrive-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 owndrive_2@client-test-owndrive-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + for source in carddav caldav ++ ./syncevolution --print-databases --daemon=no syncURL=https://my.owndrive.com username=pohly password=K9j27fhDg26dfvske backend=carddav [INFO] start database search at https://my.owndrive.com, from sync config '@default', syncURL='https://my.owndrive.com' + databases='carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' + echo 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ++ pick_default 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' ++ echo 'carddav: test (https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/) ' ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' ++ '[' 0 -ne 0 ']' + database=https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/ + ./syncevolution --configure --daemon=no database=https://my.owndrive.com:443/remote.php/carddav/addressbooks/pohly/test/ databaseUser=pohly databasePassword=K9j27fhDg26dfvske backend=carddav owndrive_2@client-test-owndrive-2 owndrive_carddav + for source in carddav caldav ++ ./syncevolution --print-databases --daemon=no syncURL=https://my.owndrive.com username=pohly password=K9j27fhDg26dfvske backend=caldav [INFO] start database search at https://my.owndrive.com, from sync config '@default', syncURL='https://my.owndrive.com' + databases='caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' + echo 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ++ pick_default 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' ++ perl -e 'while (<>) { if (/^.*?\((.*)\) $/) { print "$1"; exit 0 } }; exit 1;' ++ echo 'caldav: test (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/) Contact birthdays (https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/contact_birthdays/) ' ++ '[' 0 -ne 0 ']' + database=https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/ + ./syncevolution --configure --daemon=no database=https://my.owndrive.com:443/remote.php/caldav/calendars/pohly/test/ databaseUser=pohly databasePassword=K9j27fhDg26dfvske backend=caldav owndrive_2@client-test-owndrive-2 owndrive_caldav + case $TEST in + rm -rf /data/runtests/work/testing-amd64/home/owndrive/config/syncevolution/client-test-owndrive + ./syncevolution --configure --daemon=no proxyHost=http://proxy.vlan13.01.org:3128 useProxy=0 loglevel=4 syncURL=https://my.owndrive.com retryDuration=2m username=pohly password=K9j27fhDg26dfvske printChanges=0 dumpData=0 caldav/backend=caldav carddav/backend=carddav target-config@client-test-owndrive caldav carddav [INFO] caldav: configuring datastore with sync mode 'two-way' [INFO] carddav: 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 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 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 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 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 + grep Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos 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 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 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=365 wrappercheck-99 line 115: set +e wrappercheck-99 line 109: perl -e 'sleep(60); kill(9, -101);' 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: '[' 365 ']' wwrappercheck-99 line 122: LC_ALL=C wwrappercheck-99 line 122: kill -KILL 365 wrappercheck-99 line 122: msg= wrappercheck-99 line 123: echo '' wrappercheck-99 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 365 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-99 line 127: echo '' wrappercheck-99 line 129: wait 365 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=370 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: '[' 370 ']' wwrappercheck-79 line 122: LC_ALL=C wwrappercheck-79 line 122: kill -KILL 370 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: 370 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-79 line 127: echo '' wrappercheck-79 line 129: wait 370 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-22 line 100: RET=0 wrappercheck-22 line 101: set -e wrappercheck-22 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-22 line 108: kill -INT -27 wrappercheck-22 line 108: kill -TERM -27 wrappercheck-22 line 108: kill -TERM 27 wrappercheck-22 line 110: KILL_PID=375 wrappercheck-22 line 115: set +e wrappercheck-22 line 116: wait 27 wrappercheck-22 line 109: perl -e 'sleep(60); kill(9, -27);' wrappercheck-22 line 117: SUBRET=143 wrappercheck-22 line 118: case $SUBRET in wrappercheck-22 line 118: SUBRET=0 wrappercheck-22 line 120: SUBRET=0 wrappercheck-22 line 121: '[' 375 ']' wwrappercheck-22 line 122: LC_ALL=C wwrappercheck-22 line 122: kill -KILL 375 wrappercheck-22 line 122: msg= wrappercheck-22 line 123: echo '' wrappercheck-22 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 375 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-22 line 127: echo '' wrappercheck-22 line 129: wait 375 wrappercheck-22 line 131: set -e wrappercheck-22 line 132: '[' 0 = 0 ']' wrappercheck-22 line 133: RET=0 wrappercheck-22 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 -18 wrappercheck-15 line 108: kill -TERM -18 wrappercheck-15 line 108: kill -TERM 18 wrappercheck-15 line 110: KILL_PID=380 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 18 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -18);' 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: '[' 380 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 380 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: 380 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 380 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.UynxuLSmaQ Fri Jan 5 16:14:09 2018 UTC (+ 23.5s / 1068.5s) === cleaning up === runtests.py-17079 Fri Jan 5 16:14:09 2018 UTC (+ 1068.6s / 2702.1s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/owndrive; 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/owndrive' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/owndrive/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/owndrive/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/owndrive/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r owndrive -- 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=owndrive CLIENT_TEST_SOURCES=owndrive_caldav,owndrive_carddav,eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=owndrive caldav carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_MODE=server 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/owndrive -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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav ) Fri Jan 5 16:14:09 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['owndrive'] === Fri Jan 5 16:14:09 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 16:14:09 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 16:14:09 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 16:21:12 2018 UTC (+ 422.9s / 422.9s) === 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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.3nMnQ2bltv/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 37 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 35 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 35 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 34 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 33 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 70: set -x wrappercheck-18 line 94: set +e wrappercheck-18 line 70: exec wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 31 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 29 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 27 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 25 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 25 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 24 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 70: set -x wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 70: exec wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/7, but it's already registered wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav + 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: '[' 22 -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: '[' 20 -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: '[' 18 -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: '[' 18 -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: '[' 17 -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: '[' 16 -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 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 85: set +x wrappercheck-82 line 70: exec *** 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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav + 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: '[' 14 -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: '[' 12 -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: '[' 12 -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: '[' 11 -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: '[' 10 -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 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 70: set -x wrappercheck-102 line 99: set -x wrappercheck-102 line 70: exec 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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav *** 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/owndrive/valgrind.p106.c%p.out ./client-test Client::Sync::eds_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav Client::Source::owndrive_caldav::testOpen okay Client::Source::owndrive_caldav::testIterateTwice okay sess: Destroying session. Client::Source::owndrive_caldav::testDelete404 okay sess: Destroying session. Client::Source::owndrive_caldav::testReadItem404 okay sess: Destroying session. Client::Source::owndrive_caldav::testSimpleInsert okay sess: Destroying session. Client::Source::owndrive_caldav::testLocalDeleteAll okay sess: Destroying session. Client::Source::owndrive_caldav::testComplexInsert okay sess: Destroying session. Client::Source::owndrive_caldav::testInsertTwice okay sess: Destroying session. Client::Source::owndrive_caldav::testLocalUpdate okay sess: Destroying session. Client::Source::owndrive_caldav::testChanges okay sess: Destroying session. Client::Source::owndrive_caldav::testChangesMultiCycles okay sess: Destroying session. Client::Source::owndrive_caldav::testImport okay sess: Destroying session. Client::Source::owndrive_caldav::testImportDelete okay sess: Destroying session. Client::Source::owndrive_caldav::testRemoveProperties okay sess: Destroying session. Client::Source::owndrive_caldav::testManyChanges okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParent okay sess: Destroying session. received an invalid or unencryptable secret Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs *** failed *** NeonCXX.cpp:797:Assertion Test name: Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs GET: Neon error code 1: Could not read response body: connection was closed by server - ClientTest.cpp:728 - ClientTest.cpp:2614 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs (406): failed with return code 1Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsSingle404 okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsMany404 okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChildClient::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild (482): killed by signal 6Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs *** failed *** NeonCXX.cpp:797:Assertion Test name: Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs GET: Neon error code 1: Could not read response body: connection was closed by server - ClientTest.cpp:728 - ClientTest.cpp:2586 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs (494): failed with return code 1Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParentClient::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent (498): killed by signal 6received an invalid or unencryptable secret Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent *** failed *** NeonCXX.cpp:797:Assertion Test name: Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent PROPFIND: Neon error code 1: XML parse error at line 1: Extra content at the end of the document - ClientTest.cpp:461 - ClientTest.cpp:2024 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent (510): failed with return code 1Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate *** failed *** NeonCXX.cpp:797:Assertion Test name: Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate updateAllSubItems REPORT 'list items': Neon error code 1: Could not parse response: XML parse error at line 1: Extra content at the end of the document - ClientTest.cpp:2351 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate (610): failed with return code 1Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild *** failed *** NeonCXX.cpp:797:Assertion Test name: Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild REPORT 'meta data': Neon error code 1: Could not parse response: XML parse error at line 1: Extra content at the end of the document - ClientTest.cpp:2456 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild (654): failed with return code 1Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildChangesParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveNormal okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertChildTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildChangesParent okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveNormal okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentUpdate okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild okay sess: Destroying session. Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent okay sess: Destroying session. Client::Source::owndrive_carddav::testOpen okay Client::Source::owndrive_carddav::testIterateTwice okay sess: Destroying session. Client::Source::owndrive_carddav::testDelete404 okay sess: Destroying session. Client::Source::owndrive_carddav::testReadItem404 okay sess: Destroying session. Client::Source::owndrive_carddav::testSimpleInsert okay sess: Destroying session. Client::Source::owndrive_carddav::testLocalDeleteAll okay sess: Destroying session. Client::Source::owndrive_carddav::testComplexInsert okay sess: Destroying session. Client::Source::owndrive_carddav::testLocalUpdate okay sess: Destroying session. Client::Source::owndrive_carddav::testChanges okay sess: Destroying session. Client::Source::owndrive_carddav::testChangesMultiCycles okay sess: Destroying session. Client::Source::owndrive_carddav::testImport okay sess: Destroying session. Client::Source::owndrive_carddav::testImportDelete okay sess: Destroying session. Client::Source::owndrive_carddav::testRemoveProperties okay sess: Destroying session. Client::Source::owndrive_carddav::testManyChanges okay sess: Destroying session. Client::Sync::eds_event::testItems okay Client::Sync::eds_contact::testItems okay FAILEDvalgrindcheck (106): './client-test Client::Sync::eds_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav' (111): returned 1 ==1002== Memcheck, a memory error detector ==1002== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1002== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1002== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==1002== Parent PID: 990 ==1002== ==1010== Memcheck, a memory error detector ==1010== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1010== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1010== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==1010== Parent PID: 111 ==1010== ==1010== ==1010== HEAP SUMMARY: ==1010== in use at exit: 472,367 bytes in 5,426 blocks ==1010== total heap usage: 263,740 allocs, 258,250 frees, 39,148,365 bytes allocated ==1010== ==1010== LEAK SUMMARY: ==1010== definitely lost: 0 bytes in 0 blocks ==1010== indirectly lost: 0 bytes in 0 blocks ==1010== possibly lost: 960 bytes in 3 blocks ==1010== still reachable: 188,000 bytes in 1,056 blocks ==1010== of which reachable via heuristic: ==1010== length64 : 1,032 bytes in 18 blocks ==1010== newarray : 5,976 bytes in 28 blocks ==1010== suppressed: 271,887 bytes in 4,283 blocks ==1010== Reachable blocks (those to which a pointer was found) are not shown. ==1010== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1010== ==1010== For counts of detected and suppressed errors, rerun with: -v ==1010== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1014== Memcheck, a memory error detector ==1014== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1014== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1014== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==1014== Parent PID: 1010 ==1014== ==1022== Memcheck, a memory error detector ==1022== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1022== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1022== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==1022== Parent PID: 1010 ==1022== ==1030== Memcheck, a memory error detector ==1030== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1030== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1030== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==1030== Parent PID: 111 ==1030== ==1030== ==1030== HEAP SUMMARY: ==1030== in use at exit: 472,287 bytes in 5,424 blocks ==1030== total heap usage: 274,363 allocs, 268,874 frees, 40,515,678 bytes allocated ==1030== ==1030== LEAK SUMMARY: ==1030== definitely lost: 0 bytes in 0 blocks ==1030== indirectly lost: 0 bytes in 0 blocks ==1030== possibly lost: 960 bytes in 3 blocks ==1030== still reachable: 187,936 bytes in 1,055 blocks ==1030== of which reachable via heuristic: ==1030== length64 : 1,032 bytes in 18 blocks ==1030== newarray : 5,976 bytes in 28 blocks ==1030== suppressed: 271,871 bytes in 4,282 blocks ==1030== Reachable blocks (those to which a pointer was found) are not shown. ==1030== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1030== ==1030== For counts of detected and suppressed errors, rerun with: -v ==1030== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1034== Memcheck, a memory error detector ==1034== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1034== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1034== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==1034== Parent PID: 1030 ==1034== ==1042== Memcheck, a memory error detector ==1042== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1042== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1042== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==1042== Parent PID: 1030 ==1042== ==1050== Memcheck, a memory error detector ==1050== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1050== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1050== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==1050== Parent PID: 111 ==1050== ==1050== ==1050== HEAP SUMMARY: ==1050== in use at exit: 463,119 bytes in 5,390 blocks ==1050== total heap usage: 251,026 allocs, 245,573 frees, 36,962,354 bytes allocated ==1050== ==1050== LEAK SUMMARY: ==1050== definitely lost: 0 bytes in 0 blocks ==1050== indirectly lost: 0 bytes in 0 blocks ==1050== possibly lost: 960 bytes in 3 blocks ==1050== still reachable: 178,784 bytes in 1,020 blocks ==1050== of which reachable via heuristic: ==1050== length64 : 1,032 bytes in 18 blocks ==1050== newarray : 5,976 bytes in 28 blocks ==1050== suppressed: 271,855 bytes in 4,283 blocks ==1050== Reachable blocks (those to which a pointer was found) are not shown. ==1050== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1050== ==1050== For counts of detected and suppressed errors, rerun with: -v ==1050== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1054== Memcheck, a memory error detector ==1054== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1054== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1054== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==1054== Parent PID: 1050 ==1054== ==1062== Memcheck, a memory error detector ==1062== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1062== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1062== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==1062== Parent PID: 1050 ==1062== ==1070== Memcheck, a memory error detector ==1070== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1070== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1070== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==1070== Parent PID: 111 ==1070== ==1070== ==1070== HEAP SUMMARY: ==1070== in use at exit: 463,079 bytes in 5,388 blocks ==1070== total heap usage: 251,028 allocs, 245,577 frees, 36,939,937 bytes allocated ==1070== ==1070== LEAK SUMMARY: ==1070== definitely lost: 0 bytes in 0 blocks ==1070== indirectly lost: 0 bytes in 0 blocks ==1070== possibly lost: 960 bytes in 3 blocks ==1070== still reachable: 178,784 bytes in 1,020 blocks ==1070== of which reachable via heuristic: ==1070== length64 : 1,032 bytes in 18 blocks ==1070== newarray : 5,976 bytes in 28 blocks ==1070== suppressed: 271,815 bytes in 4,281 blocks ==1070== Reachable blocks (those to which a pointer was found) are not shown. ==1070== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1070== ==1070== For counts of detected and suppressed errors, rerun with: -v ==1070== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1074== Memcheck, a memory error detector ==1074== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1074== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1074== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==1074== Parent PID: 1070 ==1074== ==1082== Memcheck, a memory error detector ==1082== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1082== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1082== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==1082== Parent PID: 1070 ==1082== ==1090== Memcheck, a memory error detector ==1090== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1090== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1090== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==1090== Parent PID: 111 ==1090== ==1090== ==1090== HEAP SUMMARY: ==1090== in use at exit: 463,071 bytes in 5,388 blocks ==1090== total heap usage: 240,512 allocs, 235,062 frees, 35,701,302 bytes allocated ==1090== ==1090== LEAK SUMMARY: ==1090== definitely lost: 0 bytes in 0 blocks ==1090== indirectly lost: 0 bytes in 0 blocks ==1090== possibly lost: 960 bytes in 3 blocks ==1090== still reachable: 178,784 bytes in 1,020 blocks ==1090== of which reachable via heuristic: ==1090== length64 : 1,032 bytes in 18 blocks ==1090== newarray : 5,976 bytes in 28 blocks ==1090== suppressed: 271,807 bytes in 4,281 blocks ==1090== Reachable blocks (those to which a pointer was found) are not shown. ==1090== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1090== ==1090== For counts of detected and suppressed errors, rerun with: -v ==1090== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1094== Memcheck, a memory error detector ==1094== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1094== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1094== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==1094== Parent PID: 1090 ==1094== ==1102== Memcheck, a memory error detector ==1102== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1102== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1102== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==1102== Parent PID: 1090 ==1102== ==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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav ==111== Parent PID: 106 ==111== ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 351,653 bytes in 4,900 blocks ==111== total heap usage: 102,403 allocs, 97,451 frees, 16,873,393 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: 960 bytes in 3 blocks ==111== still reachable: 67,303 bytes in 533 blocks ==111== of which reachable via heuristic: ==111== length64 : 1,032 bytes in 18 blocks ==111== newarray : 5,976 bytes in 28 blocks ==111== suppressed: 271,870 bytes in 4,280 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: 3 errors from 3 contexts (suppressed: 67 from 67) ==111== could not unlink /tmp/vgdb-pipe-from-vgdb-to-111-by-nightly-on-syncev ==111== could not unlink /tmp/vgdb-pipe-to-vgdb-from-111-by-nightly-on-syncev ==111== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-111-by-nightly-on-syncev ==1110== Memcheck, a memory error detector ==1110== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1110== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1110== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==1110== Parent PID: 111 ==1110== ==1110== ==1110== HEAP SUMMARY: ==1110== in use at exit: 463,143 bytes in 5,390 blocks ==1110== total heap usage: 240,470 allocs, 235,018 frees, 35,676,123 bytes allocated ==1110== ==1110== LEAK SUMMARY: ==1110== definitely lost: 0 bytes in 0 blocks ==1110== indirectly lost: 0 bytes in 0 blocks ==1110== possibly lost: 960 bytes in 3 blocks ==1110== still reachable: 178,784 bytes in 1,020 blocks ==1110== of which reachable via heuristic: ==1110== length64 : 1,032 bytes in 18 blocks ==1110== newarray : 5,976 bytes in 28 blocks ==1110== suppressed: 271,879 bytes in 4,283 blocks ==1110== Reachable blocks (those to which a pointer was found) are not shown. ==1110== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1110== ==1110== For counts of detected and suppressed errors, rerun with: -v ==1110== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1114== Memcheck, a memory error detector ==1114== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1114== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1114== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==1114== Parent PID: 1110 ==1114== ==1122== Memcheck, a memory error detector ==1122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1122== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==1122== Parent PID: 1110 ==1122== ==1130== Memcheck, a memory error detector ==1130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1130== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==1130== Parent PID: 111 ==1130== ==1130== ==1130== HEAP SUMMARY: ==1130== in use at exit: 459,567 bytes in 5,371 blocks ==1130== total heap usage: 191,415 allocs, 185,986 frees, 28,867,159 bytes allocated ==1130== ==1130== LEAK SUMMARY: ==1130== definitely lost: 0 bytes in 0 blocks ==1130== indirectly lost: 0 bytes in 0 blocks ==1130== possibly lost: 1,392 bytes in 4 blocks ==1130== still reachable: 174,744 bytes in 998 blocks ==1130== of which reachable via heuristic: ==1130== length64 : 1,032 bytes in 18 blocks ==1130== newarray : 5,976 bytes in 28 blocks ==1130== suppressed: 271,911 bytes in 4,285 blocks ==1130== Reachable blocks (those to which a pointer was found) are not shown. ==1130== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1130== ==1130== For counts of detected and suppressed errors, rerun with: -v ==1130== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1134== Memcheck, a memory error detector ==1134== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1134== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1134== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==1134== Parent PID: 1130 ==1134== ==1142== Memcheck, a memory error detector ==1142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1142== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==1142== Parent PID: 111 ==1142== ==1142== ==1142== HEAP SUMMARY: ==1142== in use at exit: 484,583 bytes in 5,472 blocks ==1142== total heap usage: 278,300 allocs, 272,763 frees, 41,431,680 bytes allocated ==1142== ==1142== LEAK SUMMARY: ==1142== definitely lost: 0 bytes in 0 blocks ==1142== indirectly lost: 0 bytes in 0 blocks ==1142== possibly lost: 960 bytes in 3 blocks ==1142== still reachable: 200,288 bytes in 1,104 blocks ==1142== of which reachable via heuristic: ==1142== length64 : 1,032 bytes in 18 blocks ==1142== newarray : 5,976 bytes in 28 blocks ==1142== suppressed: 271,815 bytes in 4,281 blocks ==1142== Reachable blocks (those to which a pointer was found) are not shown. ==1142== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1142== ==1142== For counts of detected and suppressed errors, rerun with: -v ==1142== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1146== Memcheck, a memory error detector ==1146== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1146== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1146== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==1146== Parent PID: 1142 ==1146== ==1154== Memcheck, a memory error detector ==1154== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1154== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1154== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==1154== Parent PID: 1142 ==1154== ==1162== Memcheck, a memory error detector ==1162== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1162== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1162== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==1162== Parent PID: 111 ==1162== ==1162== ==1162== HEAP SUMMARY: ==1162== in use at exit: 481,551 bytes in 5,462 blocks ==1162== total heap usage: 277,093 allocs, 271,566 frees, 41,139,136 bytes allocated ==1162== ==1162== LEAK SUMMARY: ==1162== definitely lost: 0 bytes in 0 blocks ==1162== indirectly lost: 0 bytes in 0 blocks ==1162== possibly lost: 960 bytes in 3 blocks ==1162== still reachable: 197,216 bytes in 1,092 blocks ==1162== of which reachable via heuristic: ==1162== length64 : 1,032 bytes in 18 blocks ==1162== newarray : 5,976 bytes in 28 blocks ==1162== suppressed: 271,855 bytes in 4,283 blocks ==1162== Reachable blocks (those to which a pointer was found) are not shown. ==1162== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1162== ==1162== For counts of detected and suppressed errors, rerun with: -v ==1162== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1166== Memcheck, a memory error detector ==1166== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1166== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1166== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==1166== Parent PID: 1162 ==1166== ==1174== Memcheck, a memory error detector ==1174== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1174== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1174== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==1174== Parent PID: 1162 ==1174== ==1182== Memcheck, a memory error detector ==1182== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1182== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1182== Command: ./client-test Client::Source::owndrive_carddav::testOpen ==1182== Parent PID: 111 ==1182== ==1182== ==1182== HEAP SUMMARY: ==1182== in use at exit: 354,223 bytes in 4,904 blocks ==1182== total heap usage: 89,223 allocs, 84,266 frees, 12,716,337 bytes allocated ==1182== ==1182== LEAK SUMMARY: ==1182== definitely lost: 0 bytes in 0 blocks ==1182== indirectly lost: 0 bytes in 0 blocks ==1182== possibly lost: 1,392 bytes in 4 blocks ==1182== still reachable: 69,456 bytes in 536 blocks ==1182== of which reachable via heuristic: ==1182== length64 : 1,032 bytes in 18 blocks ==1182== newarray : 5,976 bytes in 28 blocks ==1182== suppressed: 271,855 bytes in 4,280 blocks ==1182== Reachable blocks (those to which a pointer was found) are not shown. ==1182== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1182== ==1182== For counts of detected and suppressed errors, rerun with: -v ==1182== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1186== Memcheck, a memory error detector ==1186== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1186== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1186== Command: ./client-test Client::Source::owndrive_carddav::testIterateTwice ==1186== Parent PID: 111 ==1186== ==1186== ==1186== HEAP SUMMARY: ==1186== in use at exit: 355,533 bytes in 4,931 blocks ==1186== total heap usage: 135,382 allocs, 130,398 frees, 22,089,003 bytes allocated ==1186== ==1186== LEAK SUMMARY: ==1186== definitely lost: 0 bytes in 0 blocks ==1186== indirectly lost: 0 bytes in 0 blocks ==1186== possibly lost: 1,392 bytes in 4 blocks ==1186== still reachable: 70,662 bytes in 557 blocks ==1186== of which reachable via heuristic: ==1186== length64 : 1,032 bytes in 18 blocks ==1186== newarray : 5,976 bytes in 28 blocks ==1186== suppressed: 271,959 bytes in 4,286 blocks ==1186== Reachable blocks (those to which a pointer was found) are not shown. ==1186== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1186== ==1186== For counts of detected and suppressed errors, rerun with: -v ==1186== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1190== Memcheck, a memory error detector ==1190== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1190== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1190== Command: ./client-test Client::Source::owndrive_carddav::testDelete404 ==1190== Parent PID: 111 ==1190== ==1190== ==1190== HEAP SUMMARY: ==1190== in use at exit: 355,549 bytes in 4,931 blocks ==1190== total heap usage: 136,697 allocs, 131,713 frees, 22,362,293 bytes allocated ==1190== ==1190== LEAK SUMMARY: ==1190== definitely lost: 0 bytes in 0 blocks ==1190== indirectly lost: 0 bytes in 0 blocks ==1190== possibly lost: 1,392 bytes in 4 blocks ==1190== still reachable: 70,662 bytes in 557 blocks ==1190== of which reachable via heuristic: ==1190== length64 : 1,032 bytes in 18 blocks ==1190== newarray : 5,976 bytes in 28 blocks ==1190== suppressed: 271,975 bytes in 4,286 blocks ==1190== Reachable blocks (those to which a pointer was found) are not shown. ==1190== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1190== ==1190== For counts of detected and suppressed errors, rerun with: -v ==1190== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1194== Memcheck, a memory error detector ==1194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1194== Command: ./client-test Client::Source::owndrive_carddav::testReadItem404 ==1194== Parent PID: 111 ==1194== ==1194== ==1194== HEAP SUMMARY: ==1194== in use at exit: 355,565 bytes in 4,931 blocks ==1194== total heap usage: 136,625 allocs, 131,641 frees, 22,320,824 bytes allocated ==1194== ==1194== LEAK SUMMARY: ==1194== definitely lost: 0 bytes in 0 blocks ==1194== indirectly lost: 0 bytes in 0 blocks ==1194== possibly lost: 1,392 bytes in 4 blocks ==1194== still reachable: 70,662 bytes in 557 blocks ==1194== of which reachable via heuristic: ==1194== length64 : 1,032 bytes in 18 blocks ==1194== newarray : 5,976 bytes in 28 blocks ==1194== suppressed: 271,991 bytes in 4,286 blocks ==1194== Reachable blocks (those to which a pointer was found) are not shown. ==1194== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1194== ==1194== For counts of detected and suppressed errors, rerun with: -v ==1194== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1198== Memcheck, a memory error detector ==1198== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1198== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1198== Command: ./client-test Client::Source::owndrive_carddav::testSimpleInsert ==1198== Parent PID: 111 ==1198== ==1198== ==1198== HEAP SUMMARY: ==1198== in use at exit: 355,701 bytes in 4,931 blocks ==1198== total heap usage: 149,599 allocs, 144,614 frees, 24,400,159 bytes allocated ==1198== ==1198== LEAK SUMMARY: ==1198== definitely lost: 0 bytes in 0 blocks ==1198== indirectly lost: 0 bytes in 0 blocks ==1198== possibly lost: 1,392 bytes in 4 blocks ==1198== still reachable: 70,886 bytes in 558 blocks ==1198== of which reachable via heuristic: ==1198== length64 : 1,032 bytes in 18 blocks ==1198== newarray : 5,976 bytes in 28 blocks ==1198== suppressed: 271,903 bytes in 4,285 blocks ==1198== Reachable blocks (those to which a pointer was found) are not shown. ==1198== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1198== ==1198== For counts of detected and suppressed errors, rerun with: -v ==1198== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1202== Memcheck, a memory error detector ==1202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1202== Command: ./client-test Client::Source::owndrive_carddav::testLocalDeleteAll ==1202== Parent PID: 111 ==1202== ==1202== ==1202== HEAP SUMMARY: ==1202== in use at exit: 353,157 bytes in 4,926 blocks ==1202== total heap usage: 186,300 allocs, 181,318 frees, 31,047,831 bytes allocated ==1202== ==1202== LEAK SUMMARY: ==1202== definitely lost: 0 bytes in 0 blocks ==1202== indirectly lost: 0 bytes in 0 blocks ==1202== possibly lost: 960 bytes in 3 blocks ==1202== still reachable: 68,782 bytes in 556 blocks ==1202== of which reachable via heuristic: ==1202== length64 : 1,032 bytes in 18 blocks ==1202== newarray : 5,976 bytes in 28 blocks ==1202== suppressed: 271,895 bytes in 4,283 blocks ==1202== Reachable blocks (those to which a pointer was found) are not shown. ==1202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1202== ==1202== For counts of detected and suppressed errors, rerun with: -v ==1202== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1206== Memcheck, a memory error detector ==1206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1206== Command: ./client-test Client::Source::owndrive_carddav::testComplexInsert ==1206== Parent PID: 111 ==1206== ==1206== ==1206== HEAP SUMMARY: ==1206== in use at exit: 355,725 bytes in 4,931 blocks ==1206== total heap usage: 176,417 allocs, 171,429 frees, 27,043,146 bytes allocated ==1206== ==1206== LEAK SUMMARY: ==1206== definitely lost: 0 bytes in 0 blocks ==1206== indirectly lost: 0 bytes in 0 blocks ==1206== possibly lost: 1,392 bytes in 4 blocks ==1206== still reachable: 70,886 bytes in 558 blocks ==1206== of which reachable via heuristic: ==1206== length64 : 1,032 bytes in 18 blocks ==1206== newarray : 5,976 bytes in 28 blocks ==1206== suppressed: 271,927 bytes in 4,285 blocks ==1206== Reachable blocks (those to which a pointer was found) are not shown. ==1206== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1206== ==1206== For counts of detected and suppressed errors, rerun with: -v ==1206== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1210== Memcheck, a memory error detector ==1210== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1210== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1210== Command: ./client-test Client::Source::owndrive_carddav::testLocalUpdate ==1210== Parent PID: 111 ==1210== ==1210== ==1210== HEAP SUMMARY: ==1210== in use at exit: 353,133 bytes in 4,926 blocks ==1210== total heap usage: 188,631 allocs, 183,647 frees, 28,741,841 bytes allocated ==1210== ==1210== LEAK SUMMARY: ==1210== definitely lost: 0 bytes in 0 blocks ==1210== indirectly lost: 0 bytes in 0 blocks ==1210== possibly lost: 960 bytes in 3 blocks ==1210== still reachable: 68,782 bytes in 556 blocks ==1210== of which reachable via heuristic: ==1210== length64 : 1,032 bytes in 18 blocks ==1210== newarray : 5,976 bytes in 28 blocks ==1210== suppressed: 271,871 bytes in 4,283 blocks ==1210== Reachable blocks (those to which a pointer was found) are not shown. ==1210== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1210== ==1210== For counts of detected and suppressed errors, rerun with: -v ==1210== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1214== Memcheck, a memory error detector ==1214== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1214== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1214== Command: ./client-test Client::Source::owndrive_carddav::testChanges ==1214== Parent PID: 111 ==1214== ==1214== ==1214== HEAP SUMMARY: ==1214== in use at exit: 353,141 bytes in 4,926 blocks ==1214== total heap usage: 543,858 allocs, 538,842 frees, 76,163,662 bytes allocated ==1214== ==1214== LEAK SUMMARY: ==1214== definitely lost: 0 bytes in 0 blocks ==1214== indirectly lost: 0 bytes in 0 blocks ==1214== possibly lost: 960 bytes in 3 blocks ==1214== still reachable: 68,782 bytes in 556 blocks ==1214== of which reachable via heuristic: ==1214== length64 : 1,032 bytes in 18 blocks ==1214== newarray : 5,976 bytes in 28 blocks ==1214== suppressed: 271,879 bytes in 4,283 blocks ==1214== Reachable blocks (those to which a pointer was found) are not shown. ==1214== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1214== ==1214== For counts of detected and suppressed errors, rerun with: -v ==1214== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1218== Memcheck, a memory error detector ==1218== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1218== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1218== Command: ./client-test Client::Source::owndrive_carddav::testChangesMultiCycles ==1218== Parent PID: 111 ==1218== ==1218== ==1218== HEAP SUMMARY: ==1218== in use at exit: 353,141 bytes in 4,926 blocks ==1218== total heap usage: 451,793 allocs, 446,790 frees, 69,154,830 bytes allocated ==1218== ==1218== LEAK SUMMARY: ==1218== definitely lost: 0 bytes in 0 blocks ==1218== indirectly lost: 0 bytes in 0 blocks ==1218== possibly lost: 960 bytes in 3 blocks ==1218== still reachable: 68,782 bytes in 556 blocks ==1218== of which reachable via heuristic: ==1218== length64 : 1,032 bytes in 18 blocks ==1218== newarray : 5,976 bytes in 28 blocks ==1218== suppressed: 271,879 bytes in 4,283 blocks ==1218== Reachable blocks (those to which a pointer was found) are not shown. ==1218== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1218== ==1218== For counts of detected and suppressed errors, rerun with: -v ==1218== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test Client::Source::owndrive_caldav::testOpen ==122== Parent PID: 111 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 354,269 bytes in 4,906 blocks ==122== total heap usage: 89,482 allocs, 84,523 frees, 12,716,549 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 1,392 bytes in 4 blocks ==122== still reachable: 69,455 bytes in 536 blocks ==122== of which reachable via heuristic: ==122== length64 : 1,032 bytes in 18 blocks ==122== newarray : 5,976 bytes in 28 blocks ==122== suppressed: 271,902 bytes in 4,282 blocks ==122== Reachable blocks (those to which a pointer was found) are not shown. ==122== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1222== Memcheck, a memory error detector ==1222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1222== Command: ./client-test Client::Source::owndrive_carddav::testImport ==1222== Parent PID: 111 ==1222== ==1222== ==1222== HEAP SUMMARY: ==1222== in use at exit: 353,077 bytes in 4,924 blocks ==1222== total heap usage: 231,969 allocs, 226,989 frees, 42,239,349 bytes allocated ==1222== ==1222== LEAK SUMMARY: ==1222== definitely lost: 0 bytes in 0 blocks ==1222== indirectly lost: 0 bytes in 0 blocks ==1222== possibly lost: 960 bytes in 3 blocks ==1222== still reachable: 68,782 bytes in 556 blocks ==1222== of which reachable via heuristic: ==1222== length64 : 1,032 bytes in 18 blocks ==1222== newarray : 5,976 bytes in 28 blocks ==1222== suppressed: 271,815 bytes in 4,281 blocks ==1222== Reachable blocks (those to which a pointer was found) are not shown. ==1222== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1222== ==1222== For counts of detected and suppressed errors, rerun with: -v ==1222== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1226== Memcheck, a memory error detector ==1226== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1226== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1226== Command: ./client-test Client::Source::owndrive_carddav::testImport ==1226== Parent PID: 1222 ==1226== ==1234== Memcheck, a memory error detector ==1234== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1234== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1234== Command: ./client-test Client::Source::owndrive_carddav::testImportDelete ==1234== Parent PID: 111 ==1234== ==1234== ==1234== HEAP SUMMARY: ==1234== in use at exit: 353,077 bytes in 4,924 blocks ==1234== total heap usage: 282,525 allocs, 277,543 frees, 56,019,123 bytes allocated ==1234== ==1234== LEAK SUMMARY: ==1234== definitely lost: 0 bytes in 0 blocks ==1234== indirectly lost: 0 bytes in 0 blocks ==1234== possibly lost: 960 bytes in 3 blocks ==1234== still reachable: 68,782 bytes in 556 blocks ==1234== of which reachable via heuristic: ==1234== length64 : 1,032 bytes in 18 blocks ==1234== newarray : 5,976 bytes in 28 blocks ==1234== suppressed: 271,815 bytes in 4,281 blocks ==1234== Reachable blocks (those to which a pointer was found) are not shown. ==1234== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1234== ==1234== For counts of detected and suppressed errors, rerun with: -v ==1234== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1238== Memcheck, a memory error detector ==1238== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1238== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1238== Command: ./client-test Client::Source::owndrive_carddav::testImportDelete ==1238== Parent PID: 1234 ==1238== ==1246== Memcheck, a memory error detector ==1246== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1246== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1246== Command: ./client-test Client::Source::owndrive_carddav::testRemoveProperties ==1246== Parent PID: 111 ==1246== ==1246== ==1246== HEAP SUMMARY: ==1246== in use at exit: 353,141 bytes in 4,926 blocks ==1246== total heap usage: 286,028 allocs, 281,045 frees, 55,577,336 bytes allocated ==1246== ==1246== LEAK SUMMARY: ==1246== definitely lost: 0 bytes in 0 blocks ==1246== indirectly lost: 0 bytes in 0 blocks ==1246== possibly lost: 960 bytes in 3 blocks ==1246== still reachable: 68,782 bytes in 556 blocks ==1246== of which reachable via heuristic: ==1246== length64 : 1,032 bytes in 18 blocks ==1246== newarray : 5,976 bytes in 28 blocks ==1246== suppressed: 271,879 bytes in 4,283 blocks ==1246== Reachable blocks (those to which a pointer was found) are not shown. ==1246== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1246== ==1246== For counts of detected and suppressed errors, rerun with: -v ==1246== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1250== Memcheck, a memory error detector ==1250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1250== Command: ./client-test Client::Source::owndrive_carddav::testRemoveProperties ==1250== Parent PID: 1246 ==1250== ==1258== Memcheck, a memory error detector ==1258== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1258== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1258== Command: ./client-test Client::Source::owndrive_carddav::testManyChanges ==1258== Parent PID: 111 ==1258== ==1258== ==1258== HEAP SUMMARY: ==1258== in use at exit: 353,141 bytes in 4,926 blocks ==1258== total heap usage: 255,700 allocs, 250,714 frees, 44,092,297 bytes allocated ==1258== ==1258== LEAK SUMMARY: ==1258== definitely lost: 0 bytes in 0 blocks ==1258== indirectly lost: 0 bytes in 0 blocks ==1258== possibly lost: 960 bytes in 3 blocks ==1258== still reachable: 68,782 bytes in 556 blocks ==1258== of which reachable via heuristic: ==1258== length64 : 1,032 bytes in 18 blocks ==1258== newarray : 5,976 bytes in 28 blocks ==1258== suppressed: 271,879 bytes in 4,283 blocks ==1258== Reachable blocks (those to which a pointer was found) are not shown. ==1258== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1258== ==1258== For counts of detected and suppressed errors, rerun with: -v ==1258== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==126== Memcheck, a memory error detector ==126== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==126== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==126== Command: ./client-test Client::Source::owndrive_caldav::testIterateTwice ==126== Parent PID: 111 ==126== ==126== ==126== HEAP SUMMARY: ==126== in use at exit: 515,497 bytes in 5,591 blocks ==126== total heap usage: 139,663 allocs, 134,019 frees, 23,935,163 bytes allocated ==126== ==126== LEAK SUMMARY: ==126== definitely lost: 0 bytes in 0 blocks ==126== indirectly lost: 0 bytes in 0 blocks ==126== possibly lost: 1,392 bytes in 4 blocks ==126== still reachable: 230,587 bytes in 1,217 blocks ==126== of which reachable via heuristic: ==126== length64 : 1,032 bytes in 18 blocks ==126== newarray : 5,976 bytes in 28 blocks ==126== suppressed: 271,998 bytes in 4,286 blocks ==126== Reachable blocks (those to which a pointer was found) are not shown. ==126== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==126== ==126== For counts of detected and suppressed errors, rerun with: -v ==126== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1262== Memcheck, a memory error detector ==1262== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1262== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1262== Command: ./client-test Client::Sync::eds_event::testItems ==1262== Parent PID: 111 ==1262== ==1262== ==1262== HEAP SUMMARY: ==1262== in use at exit: 2,885,983 bytes in 29,907 blocks ==1262== total heap usage: 1,359,892 allocs, 1,329,929 frees, 177,979,436 bytes allocated ==1262== ==1262== LEAK SUMMARY: ==1262== definitely lost: 0 bytes in 0 blocks ==1262== indirectly lost: 0 bytes in 0 blocks ==1262== possibly lost: 1,392 bytes in 4 blocks ==1262== still reachable: 2,237,400 bytes in 21,420 blocks ==1262== of which reachable via heuristic: ==1262== length64 : 5,120 bytes in 80 blocks ==1262== newarray : 6,312 bytes in 49 blocks ==1262== suppressed: 577,095 bytes in 7,951 blocks ==1262== Reachable blocks (those to which a pointer was found) are not shown. ==1262== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1262== ==1262== For counts of detected and suppressed errors, rerun with: -v ==1262== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 68 from 68) ==1292== Memcheck, a memory error detector ==1292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1292== Command: ./syncevo-local-sync ==1292== Parent PID: 1262 ==1292== ==1292== ==1292== HEAP SUMMARY: ==1292== in use at exit: 2,491,284 bytes in 25,305 blocks ==1292== total heap usage: 218,346 allocs, 193,041 frees, 43,540,080 bytes allocated ==1292== ==1292== LEAK SUMMARY: ==1292== definitely lost: 0 bytes in 0 blocks ==1292== indirectly lost: 0 bytes in 0 blocks ==1292== possibly lost: 528 bytes in 2 blocks ==1292== still reachable: 2,229,759 bytes in 21,272 blocks ==1292== of which reachable via heuristic: ==1292== length64 : 592 bytes in 10 blocks ==1292== newarray : 5,976 bytes in 28 blocks ==1292== suppressed: 253,885 bytes in 3,975 blocks ==1292== Reachable blocks (those to which a pointer was found) are not shown. ==1292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1292== ==1292== For counts of detected and suppressed errors, rerun with: -v ==1292== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==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::owndrive_caldav::testDelete404 ==130== Parent PID: 111 ==130== ==130== ==130== HEAP SUMMARY: ==130== in use at exit: 515,457 bytes in 5,591 blocks ==130== total heap usage: 140,528 allocs, 134,884 frees, 24,012,402 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: 1,392 bytes in 4 blocks ==130== still reachable: 230,587 bytes in 1,217 blocks ==130== of which reachable via heuristic: ==130== length64 : 1,032 bytes in 18 blocks ==130== newarray : 5,976 bytes in 28 blocks ==130== suppressed: 271,958 bytes in 4,286 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: 4 errors from 4 contexts (suppressed: 67 from 67) ==1308== Memcheck, a memory error detector ==1308== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1308== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1308== Command: ./syncevo-local-sync ==1308== Parent PID: 1262 ==1308== ==1308== ==1308== HEAP SUMMARY: ==1308== in use at exit: 3,214,137 bytes in 27,622 blocks ==1308== total heap usage: 209,673 allocs, 182,051 frees, 40,607,244 bytes allocated ==1308== ==1308== LEAK SUMMARY: ==1308== definitely lost: 0 bytes in 0 blocks ==1308== indirectly lost: 0 bytes in 0 blocks ==1308== possibly lost: 528 bytes in 2 blocks ==1308== still reachable: 2,952,572 bytes in 23,587 blocks ==1308== of which reachable via heuristic: ==1308== length64 : 592 bytes in 10 blocks ==1308== newarray : 12,912 bytes in 223 blocks ==1308== suppressed: 253,925 bytes in 3,977 blocks ==1308== Reachable blocks (those to which a pointer was found) are not shown. ==1308== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1308== ==1308== For counts of detected and suppressed errors, rerun with: -v ==1308== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1334== Memcheck, a memory error detector ==1334== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1334== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1334== Command: ./client-test Client::Sync::eds_event::testItems ==1334== Parent PID: 1262 ==1334== ==134== Memcheck, a memory error detector ==134== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==134== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==134== Command: ./client-test Client::Source::owndrive_caldav::testReadItem404 ==134== Parent PID: 111 ==134== ==134== ==134== HEAP SUMMARY: ==134== in use at exit: 515,473 bytes in 5,591 blocks ==134== total heap usage: 140,529 allocs, 134,885 frees, 24,013,276 bytes allocated ==134== ==134== LEAK SUMMARY: ==134== definitely lost: 0 bytes in 0 blocks ==134== indirectly lost: 0 bytes in 0 blocks ==134== possibly lost: 1,392 bytes in 4 blocks ==134== still reachable: 230,587 bytes in 1,217 blocks ==134== of which reachable via heuristic: ==134== length64 : 1,032 bytes in 18 blocks ==134== newarray : 5,976 bytes in 28 blocks ==134== suppressed: 271,974 bytes in 4,286 blocks ==134== Reachable blocks (those to which a pointer was found) are not shown. ==134== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==134== ==134== For counts of detected and suppressed errors, rerun with: -v ==134== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1342== Memcheck, a memory error detector ==1342== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1342== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1342== Command: ./syncevo-local-sync ==1342== Parent PID: 1262 ==1342== ==1342== ==1342== HEAP SUMMARY: ==1342== in use at exit: 2,491,348 bytes in 25,307 blocks ==1342== total heap usage: 343,636 allocs, 318,329 frees, 56,456,969 bytes allocated ==1342== ==1342== LEAK SUMMARY: ==1342== definitely lost: 0 bytes in 0 blocks ==1342== indirectly lost: 0 bytes in 0 blocks ==1342== possibly lost: 528 bytes in 2 blocks ==1342== still reachable: 2,229,759 bytes in 21,272 blocks ==1342== of which reachable via heuristic: ==1342== length64 : 592 bytes in 10 blocks ==1342== newarray : 5,976 bytes in 28 blocks ==1342== suppressed: 253,949 bytes in 3,977 blocks ==1342== Reachable blocks (those to which a pointer was found) are not shown. ==1342== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1342== ==1342== For counts of detected and suppressed errors, rerun with: -v ==1342== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1350== Memcheck, a memory error detector ==1350== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1350== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1350== Command: ./syncevo-local-sync ==1350== Parent PID: 1262 ==1350== ==1350== ==1350== HEAP SUMMARY: ==1350== in use at exit: 2,570,468 bytes in 25,539 blocks ==1350== total heap usage: 286,494 allocs, 260,955 frees, 49,949,919 bytes allocated ==1350== ==1350== LEAK SUMMARY: ==1350== definitely lost: 0 bytes in 0 blocks ==1350== indirectly lost: 0 bytes in 0 blocks ==1350== possibly lost: 528 bytes in 2 blocks ==1350== still reachable: 2,308,903 bytes in 21,504 blocks ==1350== of which reachable via heuristic: ==1350== length64 : 592 bytes in 10 blocks ==1350== newarray : 5,976 bytes in 28 blocks ==1350== suppressed: 253,925 bytes in 3,977 blocks ==1350== Reachable blocks (those to which a pointer was found) are not shown. ==1350== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1350== ==1350== For counts of detected and suppressed errors, rerun with: -v ==1350== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1371== Memcheck, a memory error detector ==1371== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1371== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1371== Command: ./client-test Client::Sync::eds_event::testItems ==1371== Parent PID: 1262 ==1371== ==1376== Memcheck, a memory error detector ==1376== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1376== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1376== Command: ./client-test Client::Sync::eds_contact::testItems ==1376== Parent PID: 111 ==1376== ==1376== ==1376== HEAP SUMMARY: ==1376== in use at exit: 2,936,928 bytes in 30,281 blocks ==1376== total heap usage: 1,331,776 allocs, 1,301,439 frees, 179,277,774 bytes allocated ==1376== ==1376== LEAK SUMMARY: ==1376== definitely lost: 0 bytes in 0 blocks ==1376== indirectly lost: 0 bytes in 0 blocks ==1376== possibly lost: 1,824 bytes in 5 blocks ==1376== still reachable: 2,315,167 bytes in 21,442 blocks ==1376== of which reachable via heuristic: ==1376== length64 : 5,096 bytes in 80 blocks ==1376== newarray : 6,296 bytes in 48 blocks ==1376== suppressed: 529,993 bytes in 8,177 blocks ==1376== Reachable blocks (those to which a pointer was found) are not shown. ==1376== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1376== ==1376== For counts of detected and suppressed errors, rerun with: -v ==1376== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==138== Memcheck, a memory error detector ==138== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==138== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==138== Command: ./client-test Client::Source::owndrive_caldav::testSimpleInsert ==138== Parent PID: 111 ==138== ==138== ==138== HEAP SUMMARY: ==138== in use at exit: 515,473 bytes in 5,591 blocks ==138== total heap usage: 153,625 allocs, 147,980 frees, 25,924,769 bytes allocated ==138== ==138== LEAK SUMMARY: ==138== definitely lost: 0 bytes in 0 blocks ==138== indirectly lost: 0 bytes in 0 blocks ==138== possibly lost: 1,392 bytes in 4 blocks ==138== still reachable: 230,587 bytes in 1,217 blocks ==138== of which reachable via heuristic: ==138== length64 : 1,032 bytes in 18 blocks ==138== newarray : 5,976 bytes in 28 blocks ==138== suppressed: 271,974 bytes in 4,286 blocks ==138== Reachable blocks (those to which a pointer was found) are not shown. ==138== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==138== ==138== For counts of detected and suppressed errors, rerun with: -v ==138== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1402== Memcheck, a memory error detector ==1402== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1402== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1402== Command: ./syncevo-local-sync ==1402== Parent PID: 1376 ==1402== ==1402== ==1402== HEAP SUMMARY: ==1402== in use at exit: 2,491,292 bytes in 25,305 blocks ==1402== total heap usage: 219,758 allocs, 194,453 frees, 43,690,630 bytes allocated ==1402== ==1402== LEAK SUMMARY: ==1402== definitely lost: 0 bytes in 0 blocks ==1402== indirectly lost: 0 bytes in 0 blocks ==1402== possibly lost: 528 bytes in 2 blocks ==1402== still reachable: 2,229,759 bytes in 21,272 blocks ==1402== of which reachable via heuristic: ==1402== length64 : 592 bytes in 10 blocks ==1402== newarray : 5,976 bytes in 28 blocks ==1402== suppressed: 253,893 bytes in 3,975 blocks ==1402== Reachable blocks (those to which a pointer was found) are not shown. ==1402== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1402== ==1402== For counts of detected and suppressed errors, rerun with: -v ==1402== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1418== Memcheck, a memory error detector ==1418== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1418== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1418== Command: ./syncevo-local-sync ==1418== Parent PID: 1376 ==1418== ==1418== ==1418== HEAP SUMMARY: ==1418== in use at exit: 3,278,996 bytes in 27,727 blocks ==1418== total heap usage: 212,422 allocs, 184,695 frees, 41,040,401 bytes allocated ==1418== ==1418== LEAK SUMMARY: ==1418== definitely lost: 0 bytes in 0 blocks ==1418== indirectly lost: 0 bytes in 0 blocks ==1418== possibly lost: 528 bytes in 2 blocks ==1418== still reachable: 3,017,471 bytes in 23,694 blocks ==1418== of which reachable via heuristic: ==1418== length64 : 592 bytes in 10 blocks ==1418== newarray : 12,912 bytes in 223 blocks ==1418== suppressed: 253,885 bytes in 3,975 blocks ==1418== Reachable blocks (those to which a pointer was found) are not shown. ==1418== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1418== ==1418== For counts of detected and suppressed errors, rerun with: -v ==1418== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==142== Memcheck, a memory error detector ==142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==142== Command: ./client-test Client::Source::owndrive_caldav::testLocalDeleteAll ==142== Parent PID: 111 ==142== ==142== ==142== HEAP SUMMARY: ==142== in use at exit: 516,065 bytes in 5,596 blocks ==142== total heap usage: 189,454 allocs, 183,802 frees, 32,481,871 bytes allocated ==142== ==142== LEAK SUMMARY: ==142== definitely lost: 0 bytes in 0 blocks ==142== indirectly lost: 0 bytes in 0 blocks ==142== possibly lost: 960 bytes in 3 blocks ==142== still reachable: 231,779 bytes in 1,228 blocks ==142== of which reachable via heuristic: ==142== length64 : 1,032 bytes in 18 blocks ==142== newarray : 5,976 bytes in 28 blocks ==142== suppressed: 271,806 bytes in 4,281 blocks ==142== Reachable blocks (those to which a pointer was found) are not shown. ==142== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==142== ==142== For counts of detected and suppressed errors, rerun with: -v ==142== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==1446== Memcheck, a memory error detector ==1446== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1446== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1446== Command: ./client-test Client::Sync::eds_contact::testItems ==1446== Parent PID: 1376 ==1446== ==1454== Memcheck, a memory error detector ==1454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1454== Command: ./syncevo-local-sync ==1454== Parent PID: 1376 ==1454== ==1454== ==1454== HEAP SUMMARY: ==1454== in use at exit: 2,491,324 bytes in 25,307 blocks ==1454== total heap usage: 412,245 allocs, 386,938 frees, 66,678,651 bytes allocated ==1454== ==1454== LEAK SUMMARY: ==1454== definitely lost: 0 bytes in 0 blocks ==1454== indirectly lost: 0 bytes in 0 blocks ==1454== possibly lost: 528 bytes in 2 blocks ==1454== still reachable: 2,229,759 bytes in 21,272 blocks ==1454== of which reachable via heuristic: ==1454== length64 : 592 bytes in 10 blocks ==1454== newarray : 5,976 bytes in 28 blocks ==1454== suppressed: 253,925 bytes in 3,977 blocks ==1454== Reachable blocks (those to which a pointer was found) are not shown. ==1454== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1454== ==1454== For counts of detected and suppressed errors, rerun with: -v ==1454== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==146== Memcheck, a memory error detector ==146== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==146== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==146== Command: ./client-test Client::Source::owndrive_caldav::testComplexInsert ==146== Parent PID: 111 ==146== ==146== ==146== HEAP SUMMARY: ==146== in use at exit: 436,501 bytes in 5,358 blocks ==146== total heap usage: 177,259 allocs, 171,844 frees, 26,783,998 bytes allocated ==146== ==146== LEAK SUMMARY: ==146== definitely lost: 0 bytes in 0 blocks ==146== indirectly lost: 0 bytes in 0 blocks ==146== possibly lost: 1,392 bytes in 4 blocks ==146== still reachable: 151,663 bytes in 985 blocks ==146== of which reachable via heuristic: ==146== length64 : 1,032 bytes in 18 blocks ==146== newarray : 5,976 bytes in 28 blocks ==146== suppressed: 271,926 bytes in 4,285 blocks ==146== Reachable blocks (those to which a pointer was found) are not shown. ==146== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==146== ==146== For counts of detected and suppressed errors, rerun with: -v ==146== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1463== Memcheck, a memory error detector ==1463== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1463== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1463== Command: ./syncevo-local-sync ==1463== Parent PID: 1376 ==1463== ==1463== ==1463== HEAP SUMMARY: ==1463== in use at exit: 2,491,332 bytes in 25,307 blocks ==1463== total heap usage: 416,324 allocs, 391,017 frees, 62,979,382 bytes allocated ==1463== ==1463== LEAK SUMMARY: ==1463== definitely lost: 0 bytes in 0 blocks ==1463== indirectly lost: 0 bytes in 0 blocks ==1463== possibly lost: 528 bytes in 2 blocks ==1463== still reachable: 2,229,759 bytes in 21,272 blocks ==1463== of which reachable via heuristic: ==1463== length64 : 592 bytes in 10 blocks ==1463== newarray : 5,976 bytes in 28 blocks ==1463== suppressed: 253,933 bytes in 3,977 blocks ==1463== Reachable blocks (those to which a pointer was found) are not shown. ==1463== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1463== ==1463== For counts of detected and suppressed errors, rerun with: -v ==1463== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==1487== Memcheck, a memory error detector ==1487== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1487== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1487== Command: ./client-test Client::Sync::eds_contact::testItems ==1487== Parent PID: 1376 ==1487== ==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::owndrive_caldav::testInsertTwice ==150== Parent PID: 111 ==150== ==150== ==150== HEAP SUMMARY: ==150== in use at exit: 459,574 bytes in 5,371 blocks ==150== total heap usage: 157,721 allocs, 152,295 frees, 24,518,684 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: 1,392 bytes in 4 blocks ==150== still reachable: 174,744 bytes in 998 blocks ==150== of which reachable via heuristic: ==150== length64 : 1,032 bytes in 18 blocks ==150== newarray : 5,976 bytes in 28 blocks ==150== suppressed: 271,918 bytes in 4,285 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: 4 errors from 4 contexts (suppressed: 67 from 67) ==154== Memcheck, a memory error detector ==154== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==154== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==154== Command: ./client-test Client::Source::owndrive_caldav::testLocalUpdate ==154== Parent PID: 111 ==154== ==154== ==154== HEAP SUMMARY: ==154== in use at exit: 462,638 bytes in 5,383 blocks ==154== total heap usage: 191,263 allocs, 185,822 frees, 28,751,840 bytes allocated ==154== ==154== LEAK SUMMARY: ==154== definitely lost: 0 bytes in 0 blocks ==154== indirectly lost: 0 bytes in 0 blocks ==154== possibly lost: 1,392 bytes in 4 blocks ==154== still reachable: 177,816 bytes in 1,010 blocks ==154== of which reachable via heuristic: ==154== length64 : 1,032 bytes in 18 blocks ==154== newarray : 5,976 bytes in 28 blocks ==154== suppressed: 271,910 bytes in 4,285 blocks ==154== Reachable blocks (those to which a pointer was found) are not shown. ==154== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==154== ==154== For counts of detected and suppressed errors, rerun with: -v ==154== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==158== Memcheck, a memory error detector ==158== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==158== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==158== Command: ./client-test Client::Source::owndrive_caldav::testChanges ==158== Parent PID: 111 ==158== ==158== ==158== HEAP SUMMARY: ==158== in use at exit: 481,606 bytes in 5,462 blocks ==158== total heap usage: 550,952 allocs, 545,400 frees, 74,874,005 bytes allocated ==158== ==158== LEAK SUMMARY: ==158== definitely lost: 0 bytes in 0 blocks ==158== indirectly lost: 0 bytes in 0 blocks ==158== possibly lost: 960 bytes in 3 blocks ==158== still reachable: 197,216 bytes in 1,092 blocks ==158== of which reachable via heuristic: ==158== length64 : 1,032 bytes in 18 blocks ==158== newarray : 5,976 bytes in 28 blocks ==158== suppressed: 271,910 bytes in 4,283 blocks ==158== Reachable blocks (those to which a pointer was found) are not shown. ==158== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==158== ==158== For counts of detected and suppressed errors, rerun with: -v ==158== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==162== Memcheck, a memory error detector ==162== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==162== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==162== Command: ./client-test Client::Source::owndrive_caldav::testChangesMultiCycles ==162== Parent PID: 111 ==162== ==162== ==162== HEAP SUMMARY: ==162== in use at exit: 478,494 bytes in 5,450 blocks ==162== total heap usage: 453,326 allocs, 447,799 frees, 67,469,433 bytes allocated ==162== ==162== LEAK SUMMARY: ==162== definitely lost: 0 bytes in 0 blocks ==162== indirectly lost: 0 bytes in 0 blocks ==162== possibly lost: 960 bytes in 3 blocks ==162== still reachable: 194,144 bytes in 1,080 blocks ==162== of which reachable via heuristic: ==162== length64 : 1,032 bytes in 18 blocks ==162== newarray : 5,976 bytes in 28 blocks ==162== suppressed: 271,870 bytes in 4,283 blocks ==162== Reachable blocks (those to which a pointer was found) are not shown. ==162== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==162== ==162== For counts of detected and suppressed errors, rerun with: -v ==162== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==166== Memcheck, a memory error detector ==166== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==166== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==166== Command: ./client-test Client::Source::owndrive_caldav::testImport ==166== Parent PID: 111 ==166== ==166== ==166== HEAP SUMMARY: ==166== in use at exit: 516,074 bytes in 5,596 blocks ==166== total heap usage: 220,141 allocs, 214,489 frees, 38,554,888 bytes allocated ==166== ==166== LEAK SUMMARY: ==166== definitely lost: 0 bytes in 0 blocks ==166== indirectly lost: 0 bytes in 0 blocks ==166== possibly lost: 960 bytes in 3 blocks ==166== still reachable: 231,780 bytes in 1,228 blocks ==166== of which reachable via heuristic: ==166== length64 : 1,032 bytes in 18 blocks ==166== newarray : 5,976 bytes in 28 blocks ==166== suppressed: 271,814 bytes in 4,281 blocks ==166== Reachable blocks (those to which a pointer was found) are not shown. ==166== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==166== ==166== For counts of detected and suppressed errors, rerun with: -v ==166== 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::owndrive_caldav::testImport ==170== Parent PID: 166 ==170== ==178== Memcheck, a memory error detector ==178== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==178== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==178== Command: ./client-test Client::Source::owndrive_caldav::testImportDelete ==178== Parent PID: 111 ==178== ==178== ==178== HEAP SUMMARY: ==178== in use at exit: 572,186 bytes in 5,817 blocks ==178== total heap usage: 270,539 allocs, 264,664 frees, 52,425,697 bytes allocated ==178== ==178== LEAK SUMMARY: ==178== definitely lost: 0 bytes in 0 blocks ==178== indirectly lost: 0 bytes in 0 blocks ==178== possibly lost: 960 bytes in 3 blocks ==178== still reachable: 287,844 bytes in 1,447 blocks ==178== of which reachable via heuristic: ==178== length64 : 1,032 bytes in 18 blocks ==178== newarray : 5,976 bytes in 28 blocks ==178== suppressed: 271,862 bytes in 4,283 blocks ==178== Reachable blocks (those to which a pointer was found) are not shown. ==178== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==178== ==178== For counts of detected and suppressed errors, rerun with: -v ==178== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==182== Memcheck, a memory error detector ==182== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==182== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==182== Command: ./client-test Client::Source::owndrive_caldav::testImportDelete ==182== Parent PID: 178 ==182== ==190== Memcheck, a memory error detector ==190== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==190== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==190== Command: ./client-test Client::Source::owndrive_caldav::testRemoveProperties ==190== Parent PID: 111 ==190== ==190== ==190== HEAP SUMMARY: ==190== in use at exit: 540,706 bytes in 5,694 blocks ==190== total heap usage: 297,456 allocs, 291,705 frees, 52,590,693 bytes allocated ==190== ==190== LEAK SUMMARY: ==190== definitely lost: 0 bytes in 0 blocks ==190== indirectly lost: 0 bytes in 0 blocks ==190== possibly lost: 960 bytes in 3 blocks ==190== still reachable: 256,356 bytes in 1,324 blocks ==190== of which reachable via heuristic: ==190== length64 : 1,032 bytes in 18 blocks ==190== newarray : 5,976 bytes in 28 blocks ==190== suppressed: 271,870 bytes in 4,283 blocks ==190== Reachable blocks (those to which a pointer was found) are not shown. ==190== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==190== ==190== For counts of detected and suppressed errors, rerun with: -v ==190== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==194== Memcheck, a memory error detector ==194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==194== Command: ./client-test Client::Source::owndrive_caldav::testRemoveProperties ==194== Parent PID: 190 ==194== ==202== Memcheck, a memory error detector ==202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==202== Command: ./client-test Client::Source::owndrive_caldav::testManyChanges ==202== Parent PID: 111 ==202== ==202== ==202== HEAP SUMMARY: ==202== in use at exit: 512,266 bytes in 5,581 blocks ==202== total heap usage: 250,716 allocs, 245,075 frees, 42,203,179 bytes allocated ==202== ==202== LEAK SUMMARY: ==202== definitely lost: 0 bytes in 0 blocks ==202== indirectly lost: 0 bytes in 0 blocks ==202== possibly lost: 960 bytes in 3 blocks ==202== still reachable: 227,940 bytes in 1,213 blocks ==202== of which reachable via heuristic: ==202== length64 : 1,032 bytes in 18 blocks ==202== newarray : 5,976 bytes in 28 blocks ==202== suppressed: 271,846 bytes in 4,281 blocks ==202== Reachable blocks (those to which a pointer was found) are not shown. ==202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==202== ==202== For counts of detected and suppressed errors, rerun with: -v ==202== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==206== Memcheck, a memory error detector ==206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==206== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParent ==206== Parent PID: 111 ==206== ==206== ==206== HEAP SUMMARY: ==206== in use at exit: 457,002 bytes in 5,367 blocks ==206== total heap usage: 224,138 allocs, 218,710 frees, 33,417,100 bytes allocated ==206== ==206== LEAK SUMMARY: ==206== definitely lost: 0 bytes in 0 blocks ==206== indirectly lost: 0 bytes in 0 blocks ==206== possibly lost: 960 bytes in 3 blocks ==206== still reachable: 172,644 bytes in 997 blocks ==206== of which reachable via heuristic: ==206== length64 : 1,032 bytes in 18 blocks ==206== newarray : 5,976 bytes in 28 blocks ==206== suppressed: 271,878 bytes in 4,283 blocks ==206== Reachable blocks (those to which a pointer was found) are not shown. ==206== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==206== ==206== For counts of detected and suppressed errors, rerun with: -v ==206== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==210== Memcheck, a memory error detector ==210== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==210== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==210== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParent ==210== Parent PID: 206 ==210== ==218== Memcheck, a memory error detector ==218== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==218== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==218== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChild ==218== Parent PID: 111 ==218== ==218== ==218== HEAP SUMMARY: ==218== in use at exit: 458,375 bytes in 5,396 blocks ==218== total heap usage: 228,180 allocs, 222,672 frees, 33,565,083 bytes allocated ==218== ==218== LEAK SUMMARY: ==218== definitely lost: 0 bytes in 0 blocks ==218== indirectly lost: 0 bytes in 0 blocks ==218== possibly lost: 960 bytes in 3 blocks ==218== still reachable: 173,881 bytes in 1,024 blocks ==218== of which reachable via heuristic: ==218== length64 : 1,032 bytes in 18 blocks ==218== newarray : 5,976 bytes in 28 blocks ==218== suppressed: 272,014 bytes in 4,285 blocks ==218== Reachable blocks (those to which a pointer was found) are not shown. ==218== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==218== ==218== For counts of detected and suppressed errors, rerun with: -v ==218== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==222== Memcheck, a memory error detector ==222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==222== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChild ==222== Parent PID: 218 ==222== ==230== Memcheck, a memory error detector ==230== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==230== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==230== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentChild ==230== Parent PID: 111 ==230== ==230== ==230== HEAP SUMMARY: ==230== in use at exit: 475,418 bytes in 5,439 blocks ==230== total heap usage: 272,316 allocs, 266,812 frees, 40,214,898 bytes allocated ==230== ==230== LEAK SUMMARY: ==230== definitely lost: 0 bytes in 0 blocks ==230== indirectly lost: 0 bytes in 0 blocks ==230== possibly lost: 960 bytes in 3 blocks ==230== still reachable: 191,076 bytes in 1,069 blocks ==230== of which reachable via heuristic: ==230== length64 : 1,032 bytes in 18 blocks ==230== newarray : 5,976 bytes in 28 blocks ==230== suppressed: 271,862 bytes in 4,283 blocks ==230== Reachable blocks (those to which a pointer was found) are not shown. ==230== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==230== ==230== For counts of detected and suppressed errors, rerun with: -v ==230== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==234== Memcheck, a memory error detector ==234== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==234== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==234== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentChild ==234== Parent PID: 230 ==234== ==242== Memcheck, a memory error detector ==242== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==242== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==242== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==242== Parent PID: 111 ==242== ==242== ==242== HEAP SUMMARY: ==242== in use at exit: 463,154 bytes in 5,391 blocks ==242== total heap usage: 215,917 allocs, 210,466 frees, 32,628,752 bytes allocated ==242== ==242== LEAK SUMMARY: ==242== definitely lost: 0 bytes in 0 blocks ==242== indirectly lost: 0 bytes in 0 blocks ==242== possibly lost: 960 bytes in 3 blocks ==242== still reachable: 178,788 bytes in 1,021 blocks ==242== of which reachable via heuristic: ==242== length64 : 1,032 bytes in 18 blocks ==242== newarray : 5,976 bytes in 28 blocks ==242== suppressed: 271,886 bytes in 4,283 blocks ==242== Reachable blocks (those to which a pointer was found) are not shown. ==242== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==242== ==242== For counts of detected and suppressed errors, rerun with: -v ==242== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==246== Memcheck, a memory error detector ==246== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==246== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==246== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==246== Parent PID: 242 ==246== ==254== Memcheck, a memory error detector ==254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==254== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildParent ==254== Parent PID: 111 ==254== ==254== ==254== HEAP SUMMARY: ==254== in use at exit: 469,242 bytes in 5,413 blocks ==254== total heap usage: 239,142 allocs, 233,667 frees, 36,166,769 bytes allocated ==254== ==254== LEAK SUMMARY: ==254== definitely lost: 0 bytes in 0 blocks ==254== indirectly lost: 0 bytes in 0 blocks ==254== possibly lost: 960 bytes in 3 blocks ==254== still reachable: 184,868 bytes in 1,044 blocks ==254== of which reachable via heuristic: ==254== length64 : 1,032 bytes in 18 blocks ==254== newarray : 5,976 bytes in 28 blocks ==254== suppressed: 271,894 bytes in 4,282 blocks ==254== Reachable blocks (those to which a pointer was found) are not shown. ==254== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==254== ==254== For counts of detected and suppressed errors, rerun with: -v ==254== 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::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildParent ==258== Parent PID: 254 ==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::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent ==266== Parent PID: 111 ==266== ==266== ==266== HEAP SUMMARY: ==266== in use at exit: 466,210 bytes in 5,403 blocks ==266== total heap usage: 252,730 allocs, 247,264 frees, 38,076,557 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,860 bytes in 1,033 blocks ==266== of which reachable via heuristic: ==266== length64 : 1,032 bytes in 18 blocks ==266== newarray : 5,976 bytes in 28 blocks ==266== suppressed: 271,870 bytes in 4,283 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) ==270== Memcheck, a memory error detector ==270== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==270== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==270== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent ==270== Parent PID: 266 ==270== ==278== Memcheck, a memory error detector ==278== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==278== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==278== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsChildChangesParent ==278== Parent PID: 266 ==278== ==286== Memcheck, a memory error detector ==286== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==286== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==286== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==286== Parent PID: 111 ==286== ==286== ==286== HEAP SUMMARY: ==286== in use at exit: 472,354 bytes in 5,427 blocks ==286== total heap usage: 265,276 allocs, 259,785 frees, 39,861,496 bytes allocated ==286== ==286== LEAK SUMMARY: ==286== definitely lost: 0 bytes in 0 blocks ==286== indirectly lost: 0 bytes in 0 blocks ==286== possibly lost: 960 bytes in 3 blocks ==286== still reachable: 188,004 bytes in 1,057 blocks ==286== of which reachable via heuristic: ==286== length64 : 1,032 bytes in 18 blocks ==286== newarray : 5,976 bytes in 28 blocks ==286== suppressed: 271,870 bytes in 4,283 blocks ==286== Reachable blocks (those to which a pointer was found) are not shown. ==286== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==286== ==286== For counts of detected and suppressed errors, rerun with: -v ==286== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==290== Memcheck, a memory error detector ==290== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==290== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==290== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==290== Parent PID: 286 ==290== ==298== Memcheck, a memory error detector ==298== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==298== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==298== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==298== Parent PID: 286 ==298== ==306== Memcheck, a memory error detector ==306== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==306== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==306== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==306== Parent PID: 111 ==306== ==306== ==306== HEAP SUMMARY: ==306== in use at exit: 472,354 bytes in 5,427 blocks ==306== total heap usage: 275,900 allocs, 270,408 frees, 41,226,763 bytes allocated ==306== ==306== LEAK SUMMARY: ==306== definitely lost: 0 bytes in 0 blocks ==306== indirectly lost: 0 bytes in 0 blocks ==306== possibly lost: 960 bytes in 3 blocks ==306== still reachable: 188,004 bytes in 1,057 blocks ==306== of which reachable via heuristic: ==306== length64 : 1,032 bytes in 18 blocks ==306== newarray : 5,976 bytes in 28 blocks ==306== suppressed: 271,870 bytes in 4,283 blocks ==306== Reachable blocks (those to which a pointer was found) are not shown. ==306== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==306== ==306== For counts of detected and suppressed errors, rerun with: -v ==306== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==310== Memcheck, a memory error detector ==310== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==310== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==310== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==310== Parent PID: 306 ==310== ==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::owndrive_caldav::LinkedItemsDefault::testLinkedItemsRemoveNormal ==318== Parent PID: 306 ==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::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==326== Parent PID: 111 ==326== ==326== ==326== HEAP SUMMARY: ==326== in use at exit: 463,082 bytes in 5,389 blocks ==326== total heap usage: 252,536 allocs, 247,084 frees, 37,902,663 bytes allocated ==326== ==326== LEAK SUMMARY: ==326== definitely lost: 0 bytes in 0 blocks ==326== indirectly lost: 0 bytes in 0 blocks ==326== possibly lost: 960 bytes in 3 blocks ==326== still reachable: 178,788 bytes in 1,021 blocks ==326== of which reachable via heuristic: ==326== length64 : 1,032 bytes in 18 blocks ==326== newarray : 5,976 bytes in 28 blocks ==326== suppressed: 271,814 bytes in 4,281 blocks ==326== Reachable blocks (those to which a pointer was found) are not shown. ==326== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==326== ==326== For counts of detected and suppressed errors, rerun with: -v ==326== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==330== Memcheck, a memory error detector ==330== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==330== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==330== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==330== Parent PID: 326 ==330== ==338== Memcheck, a memory error detector ==338== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==338== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==338== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==338== Parent PID: 326 ==338== ==346== Memcheck, a memory error detector ==346== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==346== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==346== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==346== Parent PID: 111 ==346== ==346== ==346== HEAP SUMMARY: ==346== in use at exit: 463,070 bytes in 5,388 blocks ==346== total heap usage: 252,520 allocs, 247,069 frees, 37,845,247 bytes allocated ==346== ==346== LEAK SUMMARY: ==346== definitely lost: 0 bytes in 0 blocks ==346== indirectly lost: 0 bytes in 0 blocks ==346== possibly lost: 960 bytes in 3 blocks ==346== still reachable: 178,784 bytes in 1,020 blocks ==346== of which reachable via heuristic: ==346== length64 : 1,032 bytes in 18 blocks ==346== newarray : 5,976 bytes in 28 blocks ==346== suppressed: 271,806 bytes in 4,281 blocks ==346== Reachable blocks (those to which a pointer was found) are not shown. ==346== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==346== ==346== For counts of detected and suppressed errors, rerun with: -v ==346== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==350== Memcheck, a memory error detector ==350== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==350== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==350== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==350== Parent PID: 346 ==350== ==358== Memcheck, a memory error detector ==358== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==358== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==358== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==358== Parent PID: 346 ==358== ==366== Memcheck, a memory error detector ==366== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==366== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==366== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==366== Parent PID: 111 ==366== ==366== ==366== HEAP SUMMARY: ==366== in use at exit: 463,082 bytes in 5,389 blocks ==366== total heap usage: 241,751 allocs, 236,300 frees, 36,516,747 bytes allocated ==366== ==366== LEAK SUMMARY: ==366== definitely lost: 0 bytes in 0 blocks ==366== indirectly lost: 0 bytes in 0 blocks ==366== possibly lost: 960 bytes in 3 blocks ==366== still reachable: 178,788 bytes in 1,021 blocks ==366== of which reachable via heuristic: ==366== length64 : 1,032 bytes in 18 blocks ==366== newarray : 5,976 bytes in 28 blocks ==366== suppressed: 271,814 bytes in 4,281 blocks ==366== Reachable blocks (those to which a pointer was found) are not shown. ==366== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==366== ==366== For counts of detected and suppressed errors, rerun with: -v ==366== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==370== Memcheck, a memory error detector ==370== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==370== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==370== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==370== Parent PID: 366 ==370== ==378== Memcheck, a memory error detector ==378== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==378== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==378== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsParentUpdate ==378== Parent PID: 366 ==378== ==386== Memcheck, a memory error detector ==386== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==386== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==386== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild ==386== Parent PID: 111 ==386== ==386== ==386== HEAP SUMMARY: ==386== in use at exit: 463,078 bytes in 5,388 blocks ==386== total heap usage: 241,702 allocs, 236,252 frees, 36,489,445 bytes allocated ==386== ==386== LEAK SUMMARY: ==386== definitely lost: 0 bytes in 0 blocks ==386== indirectly lost: 0 bytes in 0 blocks ==386== possibly lost: 960 bytes in 3 blocks ==386== still reachable: 178,784 bytes in 1,020 blocks ==386== of which reachable via heuristic: ==386== length64 : 1,032 bytes in 18 blocks ==386== newarray : 5,976 bytes in 28 blocks ==386== suppressed: 271,814 bytes in 4,281 blocks ==386== Reachable blocks (those to which a pointer was found) are not shown. ==386== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==386== ==386== For counts of detected and suppressed errors, rerun with: -v ==386== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==390== Memcheck, a memory error detector ==390== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==390== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==390== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild ==390== Parent PID: 386 ==390== ==398== Memcheck, a memory error detector ==398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==398== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChild ==398== Parent PID: 386 ==398== ==406== Memcheck, a memory error detector ==406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==406== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==406== Parent PID: 111 ==406== ==406== ==406== HEAP SUMMARY: ==406== in use at exit: 436,495 bytes in 5,358 blocks ==406== total heap usage: 177,290 allocs, 171,875 frees, 26,767,808 bytes allocated ==406== ==406== LEAK SUMMARY: ==406== definitely lost: 0 bytes in 0 blocks ==406== indirectly lost: 0 bytes in 0 blocks ==406== possibly lost: 1,392 bytes in 4 blocks ==406== still reachable: 151,664 bytes in 985 blocks ==406== of which reachable via heuristic: ==406== length64 : 1,032 bytes in 18 blocks ==406== newarray : 5,976 bytes in 28 blocks ==406== suppressed: 271,919 bytes in 4,285 blocks ==406== Reachable blocks (those to which a pointer was found) are not shown. ==406== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==406== ==406== For counts of detected and suppressed errors, rerun with: -v ==406== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==410== Memcheck, a memory error detector ==410== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==410== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==410== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==410== Parent PID: 111 ==410== ==410== ==410== HEAP SUMMARY: ==410== in use at exit: 484,667 bytes in 5,475 blocks ==410== total heap usage: 280,488 allocs, 274,948 frees, 42,716,971 bytes allocated ==410== ==410== LEAK SUMMARY: ==410== definitely lost: 0 bytes in 0 blocks ==410== indirectly lost: 0 bytes in 0 blocks ==410== possibly lost: 960 bytes in 3 blocks ==410== still reachable: 200,292 bytes in 1,105 blocks ==410== of which reachable via heuristic: ==410== length64 : 1,032 bytes in 18 blocks ==410== newarray : 5,976 bytes in 28 blocks ==410== suppressed: 271,895 bytes in 4,283 blocks ==410== Reachable blocks (those to which a pointer was found) are not shown. ==410== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==410== ==410== For counts of detected and suppressed errors, rerun with: -v ==410== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==414== Memcheck, a memory error detector ==414== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==414== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==414== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==414== Parent PID: 410 ==414== ==422== Memcheck, a memory error detector ==422== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==422== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==422== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==422== Parent PID: 410 ==422== ==430== Memcheck, a memory error detector ==430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==430== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==430== Parent PID: 111 ==430== ==430== ==430== HEAP SUMMARY: ==430== in use at exit: 481,587 bytes in 5,463 blocks ==430== total heap usage: 279,051 allocs, 273,523 frees, 42,008,323 bytes allocated ==430== ==430== LEAK SUMMARY: ==430== definitely lost: 0 bytes in 0 blocks ==430== indirectly lost: 0 bytes in 0 blocks ==430== possibly lost: 960 bytes in 3 blocks ==430== still reachable: 197,220 bytes in 1,093 blocks ==430== of which reachable via heuristic: ==430== length64 : 1,032 bytes in 18 blocks ==430== newarray : 5,976 bytes in 28 blocks ==430== suppressed: 271,887 bytes in 4,283 blocks ==430== Reachable blocks (those to which a pointer was found) are not shown. ==430== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==430== ==430== For counts of detected and suppressed errors, rerun with: -v ==430== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==434== Memcheck, a memory error detector ==434== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==434== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==434== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==434== Parent PID: 430 ==434== ==442== Memcheck, a memory error detector ==442== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==442== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==442== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==442== Parent PID: 430 ==442== ==450== Memcheck, a memory error detector ==450== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==450== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==450== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsDefault::testLinkedItemsSingle404 ==450== Parent PID: 111 ==450== ==450== ==450== HEAP SUMMARY: ==450== in use at exit: 436,519 bytes in 5,358 blocks ==450== total heap usage: 177,405 allocs, 171,990 frees, 26,845,541 bytes allocated ==450== ==450== LEAK SUMMARY: ==450== definitely lost: 0 bytes in 0 blocks ==450== indirectly lost: 0 bytes in 0 blocks ==450== possibly lost: 1,392 bytes in 4 blocks ==450== still reachable: 151,664 bytes in 985 blocks ==450== of which reachable via heuristic: ==450== length64 : 1,032 bytes in 18 blocks ==450== newarray : 5,976 bytes in 28 blocks ==450== suppressed: 271,943 bytes in 4,285 blocks ==450== Reachable blocks (those to which a pointer was found) are not shown. ==450== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==450== ==450== For counts of detected and suppressed errors, rerun with: -v ==450== ERROR SUMMARY: 4 errors from 4 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::owndrive_caldav::LinkedItemsDefault::testLinkedItemsMany404 ==454== Parent PID: 111 ==454== ==454== ==454== HEAP SUMMARY: ==454== in use at exit: 462,595 bytes in 5,382 blocks ==454== total heap usage: 202,188 allocs, 196,747 frees, 30,692,583 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: 1,392 bytes in 4 blocks ==454== still reachable: 177,820 bytes in 1,011 blocks ==454== of which reachable via heuristic: ==454== length64 : 1,032 bytes in 18 blocks ==454== newarray : 5,976 bytes in 28 blocks ==454== suppressed: 271,863 bytes in 4,283 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: 4 errors from 4 contexts (suppressed: 67 from 67) ==458== Memcheck, a memory error detector ==458== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==458== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==458== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParent ==458== Parent PID: 111 ==458== ==458== ==458== HEAP SUMMARY: ==458== in use at exit: 463,139 bytes in 5,391 blocks ==458== total heap usage: 225,804 allocs, 220,352 frees, 34,179,284 bytes allocated ==458== ==458== LEAK SUMMARY: ==458== definitely lost: 0 bytes in 0 blocks ==458== indirectly lost: 0 bytes in 0 blocks ==458== possibly lost: 960 bytes in 3 blocks ==458== still reachable: 178,788 bytes in 1,021 blocks ==458== of which reachable via heuristic: ==458== length64 : 1,032 bytes in 18 blocks ==458== newarray : 5,976 bytes in 28 blocks ==458== suppressed: 271,871 bytes in 4,283 blocks ==458== Reachable blocks (those to which a pointer was found) are not shown. ==458== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==458== ==458== For counts of detected and suppressed errors, rerun with: -v ==458== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==462== Memcheck, a memory error detector ==462== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==462== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==462== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParent ==462== Parent PID: 458 ==462== ==470== Memcheck, a memory error detector ==470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==470== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChild ==470== Parent PID: 111 ==470== ==470== ==470== HEAP SUMMARY: ==470== in use at exit: 456,939 bytes in 5,365 blocks ==470== total heap usage: 224,369 allocs, 218,943 frees, 33,670,052 bytes allocated ==470== ==470== LEAK SUMMARY: ==470== definitely lost: 0 bytes in 0 blocks ==470== indirectly lost: 0 bytes in 0 blocks ==470== possibly lost: 960 bytes in 3 blocks ==470== still reachable: 172,644 bytes in 997 blocks ==470== of which reachable via heuristic: ==470== length64 : 1,032 bytes in 18 blocks ==470== newarray : 5,976 bytes in 28 blocks ==470== suppressed: 271,815 bytes in 4,281 blocks ==470== Reachable blocks (those to which a pointer was found) are not shown. ==470== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==470== ==470== For counts of detected and suppressed errors, rerun with: -v ==470== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==474== Memcheck, a memory error detector ==474== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==474== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==474== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChild ==474== Parent PID: 470 ==474== ==482== Memcheck, a memory error detector ==482== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==482== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==482== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild ==482== Parent PID: 111 ==482== ==482== ==482== Process terminating with default action of signal 6 (SIGABRT): dumping core ==482== at 0xA7E1A70: raise (raise.c:51) ==482== by 0xA7E3199: abort (abort.c:89) ==482== by 0x9F96B84: __gnu_cxx::__verbose_terminate_handler() (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==482== by 0x9F94955: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==482== by 0x9F93918: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==482== by 0x9F94287: __gxx_personality_v0 (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==482== by 0xA5A6EE2: ??? (in /lib/x86_64-linux-gnu/libgcc_s.so.1) ==482== by 0xA5A770D: _Unwind_Resume (in /lib/x86_64-linux-gnu/libgcc_s.so.1) ==482== by 0x6BD9ED: SyncEvo::ClientTestExceptionHandle(char const*, int, std::__cxx11::basic_string, std::allocator > const&) (ClientTestAssert.h:69) ==482== by 0x8C1D1E: SyncEvo::TestingSyncSourcePtr::~TestingSyncSourcePtr() (ClientTest.cpp:391) ==482== by 0x6D79CD: SyncEvo::LocalTests::deleteAll(SyncEvo::CreateSource const&) (ClientTest.cpp:806) ==482== by 0x76605C: SyncEvo::LocalTests::testLinkedItemsParentChild() (ClientTest.cpp:1917) ==482== by 0x901F09: void std::__invoke_impl(std::__invoke_memfun_deref, void (SyncEvo::LocalTests::*&)(), SyncEvo::LocalTests*&) (invoke.h:73) ==482== by 0x8FBB7A: std::__invoke_result::type std::__invoke(void (SyncEvo::LocalTests::*&)(), SyncEvo::LocalTests*&) (invoke.h:95) ==482== by 0x8F5B21: void std::_Bind::__call(std::tuple<>&&, std::_Index_tuple<0ul>) (functional:467) ==482== by 0x8ED4CF: void std::_Bind::operator()<, void>() (functional:551) ==482== by 0x8E2E3B: std::_Function_handler >::_M_invoke(std::_Any_data const&) (std_function.h:316) ==482== by 0x920231: std::function::operator()() const (std_function.h:706) ==482== by 0x91FD81: CppUnit::TestCaller::runTest() (TestCaller.h:175) ==482== by 0x7D4ABF1: CppUnit::TestCaseMethodFunctor::operator()() const (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D411D2: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D47D54: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D5078B: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::__cxx11::basic_string, std::allocator > const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D4AA2F: CppUnit::TestCase::run(CppUnit::TestResult*) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D506B1: CppUnit::TestResult::runTest(CppUnit::Test*) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D5306D: CppUnit::TestRunner::run(CppUnit::TestResult&, std::__cxx11::basic_string, std::allocator > const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x7D54B3F: CppUnit::TextTestRunner::run(std::__cxx11::basic_string, std::allocator >, bool, bool, bool) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==482== by 0x9215D9: main (client-test-main.cpp:394) ==482== ==482== HEAP SUMMARY: ==482== in use at exit: 4,890,654 bytes in 39,303 blocks ==482== total heap usage: 261,092 allocs, 221,725 frees, 39,562,630 bytes allocated ==482== ==482== LEAK SUMMARY: ==482== definitely lost: 0 bytes in 0 blocks ==482== indirectly lost: 0 bytes in 0 blocks ==482== possibly lost: 3,185 bytes in 16 blocks ==482== still reachable: 4,428,621 bytes in 32,336 blocks ==482== of which reachable via heuristic: ==482== length64 : 1,032 bytes in 18 blocks ==482== newarray : 5,976 bytes in 28 blocks ==482== suppressed: 447,328 bytes in 6,867 blocks ==482== Reachable blocks (those to which a pointer was found) are not shown. ==482== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==482== ==482== For counts of detected and suppressed errors, rerun with: -v ==482== ERROR SUMMARY: 15 errors from 15 contexts (suppressed: 165 from 165) ==486== Memcheck, a memory error detector ==486== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==486== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==486== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentChild ==486== Parent PID: 482 ==486== ==494== Memcheck, a memory error detector ==494== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==494== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==494== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==494== Parent PID: 111 ==494== ==494== ==494== HEAP SUMMARY: ==494== in use at exit: 459,515 bytes in 5,370 blocks ==494== total heap usage: 201,130 allocs, 195,701 frees, 30,322,091 bytes allocated ==494== ==494== LEAK SUMMARY: ==494== definitely lost: 0 bytes in 0 blocks ==494== indirectly lost: 0 bytes in 0 blocks ==494== possibly lost: 1,392 bytes in 4 blocks ==494== still reachable: 174,748 bytes in 999 blocks ==494== of which reachable via heuristic: ==494== length64 : 1,032 bytes in 18 blocks ==494== newarray : 5,976 bytes in 28 blocks ==494== suppressed: 271,855 bytes in 4,283 blocks ==494== Reachable blocks (those to which a pointer was found) are not shown. ==494== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==494== ==494== For counts of detected and suppressed errors, rerun with: -v ==494== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==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::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent ==498== Parent PID: 111 ==498== ==498== ==498== Process terminating with default action of signal 6 (SIGABRT): dumping core ==498== at 0xA7E1A70: raise (raise.c:51) ==498== by 0xA7E3199: abort (abort.c:89) ==498== by 0x9F96B84: __gnu_cxx::__verbose_terminate_handler() (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==498== by 0x9F94955: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==498== by 0x9F93918: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==498== by 0x9F94287: __gxx_personality_v0 (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.24) ==498== by 0xA5A6EE2: ??? (in /lib/x86_64-linux-gnu/libgcc_s.so.1) ==498== by 0xA5A770D: _Unwind_Resume (in /lib/x86_64-linux-gnu/libgcc_s.so.1) ==498== by 0x6BD9ED: SyncEvo::ClientTestExceptionHandle(char const*, int, std::__cxx11::basic_string, std::allocator > const&) (ClientTestAssert.h:69) ==498== by 0x8C1D1E: SyncEvo::TestingSyncSourcePtr::~TestingSyncSourcePtr() (ClientTest.cpp:391) ==498== by 0x6D79CD: SyncEvo::LocalTests::deleteAll(SyncEvo::CreateSource const&) (ClientTest.cpp:806) ==498== by 0x77224E: SyncEvo::LocalTests::testLinkedItemsChildParent() (ClientTest.cpp:1965) ==498== by 0x901F09: void std::__invoke_impl(std::__invoke_memfun_deref, void (SyncEvo::LocalTests::*&)(), SyncEvo::LocalTests*&) (invoke.h:73) ==498== by 0x8FBB7A: std::__invoke_result::type std::__invoke(void (SyncEvo::LocalTests::*&)(), SyncEvo::LocalTests*&) (invoke.h:95) ==498== by 0x8F5B21: void std::_Bind::__call(std::tuple<>&&, std::_Index_tuple<0ul>) (functional:467) ==498== by 0x8ED4CF: void std::_Bind::operator()<, void>() (functional:551) ==498== by 0x8E2E3B: std::_Function_handler >::_M_invoke(std::_Any_data const&) (std_function.h:316) ==498== by 0x920231: std::function::operator()() const (std_function.h:706) ==498== by 0x91FD81: CppUnit::TestCaller::runTest() (TestCaller.h:175) ==498== by 0x7D4ABF1: CppUnit::TestCaseMethodFunctor::operator()() const (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D411D2: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D47D54: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D5078B: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::__cxx11::basic_string, std::allocator > const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D4AA2F: CppUnit::TestCase::run(CppUnit::TestResult*) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D506B1: CppUnit::TestResult::runTest(CppUnit::Test*) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D5306D: CppUnit::TestRunner::run(CppUnit::TestResult&, std::__cxx11::basic_string, std::allocator > const&) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x7D54B3F: CppUnit::TextTestRunner::run(std::__cxx11::basic_string, std::allocator >, bool, bool, bool) (in /usr/lib/x86_64-linux-gnu/libcppunit-1.14.so.0.0.0) ==498== by 0x9215D9: main (client-test-main.cpp:394) ==498== ==498== HEAP SUMMARY: ==498== in use at exit: 4,884,550 bytes in 39,281 blocks ==498== total heap usage: 227,839 allocs, 188,497 frees, 35,909,819 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: 3,185 bytes in 16 blocks ==498== still reachable: 4,422,477 bytes in 32,312 blocks ==498== of which reachable via heuristic: ==498== length64 : 1,032 bytes in 18 blocks ==498== newarray : 5,976 bytes in 28 blocks ==498== suppressed: 447,368 bytes in 6,869 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: 15 errors from 15 contexts (suppressed: 165 from 165) ==502== Memcheck, a memory error detector ==502== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==502== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==502== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildParent ==502== Parent PID: 498 ==502== ==510== Memcheck, a memory error detector ==510== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==510== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==510== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==510== Parent PID: 111 ==510== ==510== ==510== HEAP SUMMARY: ==510== in use at exit: 467,638 bytes in 5,434 blocks ==510== total heap usage: 224,055 allocs, 218,510 frees, 34,234,324 bytes allocated ==510== ==510== LEAK SUMMARY: ==510== definitely lost: 0 bytes in 0 blocks ==510== indirectly lost: 0 bytes in 0 blocks ==510== possibly lost: 960 bytes in 3 blocks ==510== still reachable: 183,143 bytes in 1,062 blocks ==510== of which reachable via heuristic: ==510== length64 : 1,032 bytes in 18 blocks ==510== newarray : 5,976 bytes in 28 blocks ==510== suppressed: 272,015 bytes in 4,285 blocks ==510== Reachable blocks (those to which a pointer was found) are not shown. ==510== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==510== ==510== For counts of detected and suppressed errors, rerun with: -v ==510== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==514== Memcheck, a memory error detector ==514== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==514== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==514== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==514== Parent PID: 510 ==514== ==522== Memcheck, a memory error detector ==522== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==522== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==522== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==522== Parent PID: 510 ==522== ==530== Memcheck, a memory error detector ==530== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==530== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==530== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==530== Parent PID: 111 ==530== ==530== ==530== HEAP SUMMARY: ==530== in use at exit: 478,483 bytes in 5,451 blocks ==530== total heap usage: 267,769 allocs, 262,254 frees, 42,658,465 bytes allocated ==530== ==530== LEAK SUMMARY: ==530== definitely lost: 0 bytes in 0 blocks ==530== indirectly lost: 0 bytes in 0 blocks ==530== possibly lost: 960 bytes in 3 blocks ==530== still reachable: 194,148 bytes in 1,081 blocks ==530== of which reachable via heuristic: ==530== length64 : 1,032 bytes in 18 blocks ==530== newarray : 5,976 bytes in 28 blocks ==530== suppressed: 271,855 bytes in 4,283 blocks ==530== Reachable blocks (those to which a pointer was found) are not shown. ==530== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==530== ==530== For counts of detected and suppressed errors, rerun with: -v ==530== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==534== Memcheck, a memory error detector ==534== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==534== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==534== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==534== Parent PID: 530 ==534== ==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::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==542== Parent PID: 530 ==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::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==550== Parent PID: 111 ==550== ==550== ==550== HEAP SUMMARY: ==550== in use at exit: 472,339 bytes in 5,427 blocks ==550== total heap usage: 276,714 allocs, 271,222 frees, 42,599,056 bytes allocated ==550== ==550== LEAK SUMMARY: ==550== definitely lost: 0 bytes in 0 blocks ==550== indirectly lost: 0 bytes in 0 blocks ==550== possibly lost: 960 bytes in 3 blocks ==550== still reachable: 188,004 bytes in 1,057 blocks ==550== of which reachable via heuristic: ==550== length64 : 1,032 bytes in 18 blocks ==550== newarray : 5,976 bytes in 28 blocks ==550== suppressed: 271,855 bytes in 4,283 blocks ==550== Reachable blocks (those to which a pointer was found) are not shown. ==550== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==550== ==550== For counts of detected and suppressed errors, rerun with: -v ==550== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==554== Memcheck, a memory error detector ==554== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==554== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==554== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==554== Parent PID: 550 ==554== ==562== Memcheck, a memory error detector ==562== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==562== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==562== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==562== Parent PID: 550 ==562== ==570== Memcheck, a memory error detector ==570== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==570== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==570== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==570== Parent PID: 111 ==570== ==570== ==570== HEAP SUMMARY: ==570== in use at exit: 463,083 bytes in 5,389 blocks ==570== total heap usage: 253,011 allocs, 247,559 frees, 38,177,737 bytes allocated ==570== ==570== LEAK SUMMARY: ==570== definitely lost: 0 bytes in 0 blocks ==570== indirectly lost: 0 bytes in 0 blocks ==570== possibly lost: 960 bytes in 3 blocks ==570== still reachable: 178,788 bytes in 1,021 blocks ==570== of which reachable via heuristic: ==570== length64 : 1,032 bytes in 18 blocks ==570== newarray : 5,976 bytes in 28 blocks ==570== suppressed: 271,815 bytes in 4,281 blocks ==570== Reachable blocks (those to which a pointer was found) are not shown. ==570== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==570== ==570== For counts of detected and suppressed errors, rerun with: -v ==570== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==574== Memcheck, a memory error detector ==574== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==574== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==574== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==574== Parent PID: 570 ==574== ==582== Memcheck, a memory error detector ==582== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==582== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==582== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==582== Parent PID: 570 ==582== ==590== Memcheck, a memory error detector ==590== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==590== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==590== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==590== Parent PID: 111 ==590== ==590== ==590== HEAP SUMMARY: ==590== in use at exit: 463,139 bytes in 5,391 blocks ==590== total heap usage: 253,049 allocs, 247,595 frees, 38,161,767 bytes allocated ==590== ==590== LEAK SUMMARY: ==590== definitely lost: 0 bytes in 0 blocks ==590== indirectly lost: 0 bytes in 0 blocks ==590== possibly lost: 960 bytes in 3 blocks ==590== still reachable: 178,788 bytes in 1,021 blocks ==590== of which reachable via heuristic: ==590== length64 : 1,032 bytes in 18 blocks ==590== newarray : 5,976 bytes in 28 blocks ==590== suppressed: 271,871 bytes in 4,283 blocks ==590== Reachable blocks (those to which a pointer was found) are not shown. ==590== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==590== ==590== For counts of detected and suppressed errors, rerun with: -v ==590== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==594== Memcheck, a memory error detector ==594== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==594== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==594== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==594== Parent PID: 590 ==594== ==602== Memcheck, a memory error detector ==602== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==602== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==602== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==602== Parent PID: 590 ==602== ==610== Memcheck, a memory error detector ==610== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==610== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==610== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==610== Parent PID: 111 ==610== ==610== ==610== HEAP SUMMARY: ==610== in use at exit: 460,109 bytes in 5,380 blocks ==610== total heap usage: 214,167 allocs, 208,727 frees, 32,340,672 bytes allocated ==610== ==610== LEAK SUMMARY: ==610== definitely lost: 0 bytes in 0 blocks ==610== indirectly lost: 0 bytes in 0 blocks ==610== possibly lost: 960 bytes in 3 blocks ==610== still reachable: 175,758 bytes in 1,010 blocks ==610== of which reachable via heuristic: ==610== length64 : 1,032 bytes in 18 blocks ==610== newarray : 5,976 bytes in 28 blocks ==610== suppressed: 271,871 bytes in 4,283 blocks ==610== Reachable blocks (those to which a pointer was found) are not shown. ==610== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==610== ==610== For counts of detected and suppressed errors, rerun with: -v ==610== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==614== Memcheck, a memory error detector ==614== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==614== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==614== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==614== Parent PID: 610 ==614== ==622== Memcheck, a memory error detector ==622== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==622== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==622== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==622== Parent PID: 111 ==622== ==622== ==622== HEAP SUMMARY: ==622== in use at exit: 466,219 bytes in 5,403 blocks ==622== total heap usage: 243,697 allocs, 238,232 frees, 37,401,871 bytes allocated ==622== ==622== LEAK SUMMARY: ==622== definitely lost: 0 bytes in 0 blocks ==622== indirectly lost: 0 bytes in 0 blocks ==622== possibly lost: 960 bytes in 3 blocks ==622== still reachable: 181,860 bytes in 1,033 blocks ==622== of which reachable via heuristic: ==622== length64 : 1,032 bytes in 18 blocks ==622== newarray : 5,976 bytes in 28 blocks ==622== suppressed: 271,879 bytes in 4,283 blocks ==622== Reachable blocks (those to which a pointer was found) are not shown. ==622== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==622== ==622== For counts of detected and suppressed errors, rerun with: -v ==622== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==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::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==626== Parent PID: 622 ==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::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==634== Parent PID: 622 ==634== ==642== Memcheck, a memory error detector ==642== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==642== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==642== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==642== Parent PID: 111 ==642== ==642== ==642== HEAP SUMMARY: ==642== in use at exit: 459,571 bytes in 5,372 blocks ==642== total heap usage: 192,469 allocs, 187,039 frees, 29,468,255 bytes allocated ==642== ==642== LEAK SUMMARY: ==642== definitely lost: 0 bytes in 0 blocks ==642== indirectly lost: 0 bytes in 0 blocks ==642== possibly lost: 1,392 bytes in 4 blocks ==642== still reachable: 174,748 bytes in 999 blocks ==642== of which reachable via heuristic: ==642== length64 : 1,032 bytes in 18 blocks ==642== newarray : 5,976 bytes in 28 blocks ==642== suppressed: 271,911 bytes in 4,285 blocks ==642== Reachable blocks (those to which a pointer was found) are not shown. ==642== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==642== ==642== For counts of detected and suppressed errors, rerun with: -v ==642== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==646== Memcheck, a memory error detector ==646== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==646== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==646== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==646== Parent PID: 642 ==646== ==654== Memcheck, a memory error detector ==654== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==654== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==654== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==654== Parent PID: 111 ==654== ==654== ==654== HEAP SUMMARY: ==654== in use at exit: 460,117 bytes in 5,380 blocks ==654== total heap usage: 212,096 allocs, 206,656 frees, 31,990,496 bytes allocated ==654== ==654== LEAK SUMMARY: ==654== definitely lost: 0 bytes in 0 blocks ==654== indirectly lost: 0 bytes in 0 blocks ==654== possibly lost: 960 bytes in 3 blocks ==654== still reachable: 175,758 bytes in 1,010 blocks ==654== of which reachable via heuristic: ==654== length64 : 1,032 bytes in 18 blocks ==654== newarray : 5,976 bytes in 28 blocks ==654== suppressed: 271,879 bytes in 4,283 blocks ==654== Reachable blocks (those to which a pointer was found) are not shown. ==654== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==654== ==654== For counts of detected and suppressed errors, rerun with: -v ==654== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==658== Memcheck, a memory error detector ==658== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==658== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==658== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==658== Parent PID: 111 ==658== ==658== ==658== HEAP SUMMARY: ==658== in use at exit: 487,715 bytes in 5,487 blocks ==658== total heap usage: 281,686 allocs, 276,134 frees, 45,062,946 bytes allocated ==658== ==658== LEAK SUMMARY: ==658== definitely lost: 0 bytes in 0 blocks ==658== indirectly lost: 0 bytes in 0 blocks ==658== possibly lost: 960 bytes in 3 blocks ==658== still reachable: 203,364 bytes in 1,117 blocks ==658== of which reachable via heuristic: ==658== length64 : 1,032 bytes in 18 blocks ==658== newarray : 5,976 bytes in 28 blocks ==658== suppressed: 271,871 bytes in 4,283 blocks ==658== Reachable blocks (those to which a pointer was found) are not shown. ==658== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==658== ==658== For counts of detected and suppressed errors, rerun with: -v ==658== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==662== Memcheck, a memory error detector ==662== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==662== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==662== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==662== Parent PID: 658 ==662== ==670== Memcheck, a memory error detector ==670== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==670== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==670== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==670== Parent PID: 658 ==670== ==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::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParent ==678== Parent PID: 111 ==678== ==678== ==678== HEAP SUMMARY: ==678== in use at exit: 457,011 bytes in 5,367 blocks ==678== total heap usage: 223,626 allocs, 218,198 frees, 32,958,167 bytes allocated ==678== ==678== LEAK SUMMARY: ==678== definitely lost: 0 bytes in 0 blocks ==678== indirectly lost: 0 bytes in 0 blocks ==678== possibly lost: 960 bytes in 3 blocks ==678== still reachable: 172,644 bytes in 997 blocks ==678== of which reachable via heuristic: ==678== length64 : 1,032 bytes in 18 blocks ==678== newarray : 5,976 bytes in 28 blocks ==678== suppressed: 271,887 bytes in 4,283 blocks ==678== Reachable blocks (those to which a pointer was found) are not shown. ==678== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==678== ==678== For counts of detected and suppressed errors, rerun with: -v ==678== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==682== Memcheck, a memory error detector ==682== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==682== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==682== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParent ==682== Parent PID: 678 ==682== ==690== Memcheck, a memory error detector ==690== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==690== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==690== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChild ==690== Parent PID: 111 ==690== ==690== ==690== HEAP SUMMARY: ==690== in use at exit: 456,995 bytes in 5,367 blocks ==690== total heap usage: 223,707 allocs, 218,279 frees, 33,010,892 bytes allocated ==690== ==690== LEAK SUMMARY: ==690== definitely lost: 0 bytes in 0 blocks ==690== indirectly lost: 0 bytes in 0 blocks ==690== possibly lost: 960 bytes in 3 blocks ==690== still reachable: 172,644 bytes in 997 blocks ==690== of which reachable via heuristic: ==690== length64 : 1,032 bytes in 18 blocks ==690== newarray : 5,976 bytes in 28 blocks ==690== suppressed: 271,871 bytes in 4,283 blocks ==690== Reachable blocks (those to which a pointer was found) are not shown. ==690== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==690== ==690== For counts of detected and suppressed errors, rerun with: -v ==690== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==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::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChild ==694== Parent PID: 690 ==694== ==702== Memcheck, a memory error detector ==702== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==702== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==702== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentChild ==702== Parent PID: 111 ==702== ==702== ==702== HEAP SUMMARY: ==702== in use at exit: 475,323 bytes in 5,435 blocks ==702== total heap usage: 270,765 allocs, 265,265 frees, 39,498,557 bytes allocated ==702== ==702== LEAK SUMMARY: ==702== definitely lost: 0 bytes in 0 blocks ==702== indirectly lost: 0 bytes in 0 blocks ==702== possibly lost: 960 bytes in 3 blocks ==702== still reachable: 191,012 bytes in 1,068 blocks ==702== of which reachable via heuristic: ==702== length64 : 1,032 bytes in 18 blocks ==702== newarray : 5,976 bytes in 28 blocks ==702== suppressed: 271,831 bytes in 4,280 blocks ==702== Reachable blocks (those to which a pointer was found) are not shown. ==702== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==702== ==702== For counts of detected and suppressed errors, rerun with: -v ==702== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==706== Memcheck, a memory error detector ==706== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==706== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==706== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentChild ==706== Parent PID: 702 ==706== ==714== Memcheck, a memory error detector ==714== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==714== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==714== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==714== Parent PID: 111 ==714== ==714== ==714== HEAP SUMMARY: ==714== in use at exit: 463,147 bytes in 5,391 blocks ==714== total heap usage: 214,879 allocs, 209,428 frees, 32,059,554 bytes allocated ==714== ==714== LEAK SUMMARY: ==714== definitely lost: 0 bytes in 0 blocks ==714== indirectly lost: 0 bytes in 0 blocks ==714== possibly lost: 960 bytes in 3 blocks ==714== still reachable: 178,788 bytes in 1,021 blocks ==714== of which reachable via heuristic: ==714== length64 : 1,032 bytes in 18 blocks ==714== newarray : 5,976 bytes in 28 blocks ==714== suppressed: 271,879 bytes in 4,283 blocks ==714== Reachable blocks (those to which a pointer was found) are not shown. ==714== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==714== ==714== For counts of detected and suppressed errors, rerun with: -v ==714== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==718== Memcheck, a memory error detector ==718== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==718== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==718== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==718== Parent PID: 714 ==718== ==726== Memcheck, a memory error detector ==726== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==726== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==726== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildParent ==726== Parent PID: 111 ==726== ==726== ==726== HEAP SUMMARY: ==726== in use at exit: 469,323 bytes in 5,415 blocks ==726== total heap usage: 238,088 allocs, 232,611 frees, 35,746,660 bytes allocated ==726== ==726== LEAK SUMMARY: ==726== definitely lost: 0 bytes in 0 blocks ==726== indirectly lost: 0 bytes in 0 blocks ==726== possibly lost: 960 bytes in 3 blocks ==726== still reachable: 184,932 bytes in 1,045 blocks ==726== of which reachable via heuristic: ==726== length64 : 1,032 bytes in 18 blocks ==726== newarray : 5,976 bytes in 28 blocks ==726== suppressed: 271,911 bytes in 4,283 blocks ==726== Reachable blocks (those to which a pointer was found) are not shown. ==726== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==726== ==726== For counts of detected and suppressed errors, rerun with: -v ==726== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==730== Memcheck, a memory error detector ==730== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==730== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==730== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildParent ==730== Parent PID: 726 ==730== ==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::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==738== Parent PID: 111 ==738== ==738== ==738== HEAP SUMMARY: ==738== in use at exit: 466,211 bytes in 5,403 blocks ==738== total heap usage: 251,457 allocs, 245,991 frees, 37,380,061 bytes allocated ==738== ==738== LEAK SUMMARY: ==738== definitely lost: 0 bytes in 0 blocks ==738== indirectly lost: 0 bytes in 0 blocks ==738== possibly lost: 960 bytes in 3 blocks ==738== still reachable: 181,860 bytes in 1,033 blocks ==738== of which reachable via heuristic: ==738== length64 : 1,032 bytes in 18 blocks ==738== newarray : 5,976 bytes in 28 blocks ==738== suppressed: 271,871 bytes in 4,283 blocks ==738== Reachable blocks (those to which a pointer was found) are not shown. ==738== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==738== ==738== For counts of detected and suppressed errors, rerun with: -v ==738== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==742== Memcheck, a memory error detector ==742== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==742== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==742== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==742== Parent PID: 738 ==742== ==750== Memcheck, a memory error detector ==750== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==750== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==750== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==750== Parent PID: 738 ==750== ==758== Memcheck, a memory error detector ==758== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==758== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==758== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==758== Parent PID: 111 ==758== ==758== ==758== HEAP SUMMARY: ==758== in use at exit: 472,299 bytes in 5,425 blocks ==758== total heap usage: 263,875 allocs, 258,386 frees, 39,151,566 bytes allocated ==758== ==758== LEAK SUMMARY: ==758== definitely lost: 0 bytes in 0 blocks ==758== indirectly lost: 0 bytes in 0 blocks ==758== possibly lost: 960 bytes in 3 blocks ==758== still reachable: 188,004 bytes in 1,057 blocks ==758== of which reachable via heuristic: ==758== length64 : 1,032 bytes in 18 blocks ==758== newarray : 5,976 bytes in 28 blocks ==758== suppressed: 271,815 bytes in 4,281 blocks ==758== Reachable blocks (those to which a pointer was found) are not shown. ==758== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==758== ==758== For counts of detected and suppressed errors, rerun with: -v ==758== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==762== Memcheck, a memory error detector ==762== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==762== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==762== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==762== Parent PID: 758 ==762== ==770== Memcheck, a memory error detector ==770== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==770== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==770== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==770== Parent PID: 758 ==770== ==778== Memcheck, a memory error detector ==778== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==778== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==778== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==778== Parent PID: 111 ==778== ==778== ==778== HEAP SUMMARY: ==778== in use at exit: 472,307 bytes in 5,425 blocks ==778== total heap usage: 274,498 allocs, 269,008 frees, 40,517,623 bytes allocated ==778== ==778== LEAK SUMMARY: ==778== definitely lost: 0 bytes in 0 blocks ==778== indirectly lost: 0 bytes in 0 blocks ==778== possibly lost: 960 bytes in 3 blocks ==778== still reachable: 188,004 bytes in 1,057 blocks ==778== of which reachable via heuristic: ==778== length64 : 1,032 bytes in 18 blocks ==778== newarray : 5,976 bytes in 28 blocks ==778== suppressed: 271,823 bytes in 4,281 blocks ==778== Reachable blocks (those to which a pointer was found) are not shown. ==778== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==778== ==778== For counts of detected and suppressed errors, rerun with: -v ==778== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==782== Memcheck, a memory error detector ==782== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==782== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==782== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==782== Parent PID: 778 ==782== ==790== Memcheck, a memory error detector ==790== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==790== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==790== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==790== Parent PID: 778 ==790== ==798== Memcheck, a memory error detector ==798== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==798== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==798== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==798== Parent PID: 111 ==798== ==798== ==798== HEAP SUMMARY: ==798== in use at exit: 463,147 bytes in 5,391 blocks ==798== total heap usage: 251,187 allocs, 245,733 frees, 37,035,567 bytes allocated ==798== ==798== LEAK SUMMARY: ==798== definitely lost: 0 bytes in 0 blocks ==798== indirectly lost: 0 bytes in 0 blocks ==798== possibly lost: 960 bytes in 3 blocks ==798== still reachable: 178,788 bytes in 1,021 blocks ==798== of which reachable via heuristic: ==798== length64 : 1,032 bytes in 18 blocks ==798== newarray : 5,976 bytes in 28 blocks ==798== suppressed: 271,879 bytes in 4,283 blocks ==798== Reachable blocks (those to which a pointer was found) are not shown. ==798== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==798== ==798== For counts of detected and suppressed errors, rerun with: -v ==798== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==802== Memcheck, a memory error detector ==802== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==802== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==802== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==802== Parent PID: 798 ==802== ==810== Memcheck, a memory error detector ==810== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==810== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==810== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==810== Parent PID: 798 ==810== ==818== Memcheck, a memory error detector ==818== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==818== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==818== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==818== Parent PID: 111 ==818== ==818== ==818== HEAP SUMMARY: ==818== in use at exit: 463,147 bytes in 5,391 blocks ==818== total heap usage: 251,089 allocs, 245,635 frees, 36,950,359 bytes allocated ==818== ==818== LEAK SUMMARY: ==818== definitely lost: 0 bytes in 0 blocks ==818== indirectly lost: 0 bytes in 0 blocks ==818== possibly lost: 960 bytes in 3 blocks ==818== still reachable: 178,788 bytes in 1,021 blocks ==818== of which reachable via heuristic: ==818== length64 : 1,032 bytes in 18 blocks ==818== newarray : 5,976 bytes in 28 blocks ==818== suppressed: 271,879 bytes in 4,283 blocks ==818== Reachable blocks (those to which a pointer was found) are not shown. ==818== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==818== ==818== For counts of detected and suppressed errors, rerun with: -v ==818== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==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::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==822== Parent PID: 818 ==822== ==830== Memcheck, a memory error detector ==830== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==830== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==830== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==830== Parent PID: 818 ==830== ==838== Memcheck, a memory error detector ==838== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==838== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==838== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentUpdate ==838== Parent PID: 111 ==838== ==838== ==838== HEAP SUMMARY: ==838== in use at exit: 463,163 bytes in 5,391 blocks ==838== total heap usage: 240,529 allocs, 235,076 frees, 35,706,890 bytes allocated ==838== ==838== LEAK SUMMARY: ==838== definitely lost: 0 bytes in 0 blocks ==838== indirectly lost: 0 bytes in 0 blocks ==838== possibly lost: 960 bytes in 3 blocks ==838== still reachable: 178,788 bytes in 1,021 blocks ==838== of which reachable via heuristic: ==838== length64 : 1,032 bytes in 18 blocks ==838== newarray : 5,976 bytes in 28 blocks ==838== suppressed: 271,895 bytes in 4,283 blocks ==838== Reachable blocks (those to which a pointer was found) are not shown. ==838== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==838== ==838== For counts of detected and suppressed errors, rerun with: -v ==838== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==842== Memcheck, a memory error detector ==842== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==842== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==842== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentUpdate ==842== Parent PID: 838 ==842== ==850== Memcheck, a memory error detector ==850== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==850== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==850== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsParentUpdate ==850== Parent PID: 838 ==850== ==858== Memcheck, a memory error detector ==858== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==858== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==858== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChild ==858== Parent PID: 111 ==858== ==858== ==858== HEAP SUMMARY: ==858== in use at exit: 463,139 bytes in 5,391 blocks ==858== total heap usage: 240,448 allocs, 234,995 frees, 35,678,724 bytes allocated ==858== ==858== LEAK SUMMARY: ==858== definitely lost: 0 bytes in 0 blocks ==858== indirectly lost: 0 bytes in 0 blocks ==858== possibly lost: 960 bytes in 3 blocks ==858== still reachable: 178,788 bytes in 1,021 blocks ==858== of which reachable via heuristic: ==858== length64 : 1,032 bytes in 18 blocks ==858== newarray : 5,976 bytes in 28 blocks ==858== suppressed: 271,871 bytes in 4,283 blocks ==858== Reachable blocks (those to which a pointer was found) are not shown. ==858== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==858== ==858== For counts of detected and suppressed errors, rerun with: -v ==858== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==862== Memcheck, a memory error detector ==862== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==862== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==862== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChild ==862== Parent PID: 858 ==862== ==870== Memcheck, a memory error detector ==870== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==870== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==870== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChild ==870== Parent PID: 858 ==870== ==878== Memcheck, a memory error detector ==878== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==878== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==878== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==878== Parent PID: 111 ==878== ==878== ==878== HEAP SUMMARY: ==878== in use at exit: 459,587 bytes in 5,372 blocks ==878== total heap usage: 191,360 allocs, 185,930 frees, 28,865,598 bytes allocated ==878== ==878== LEAK SUMMARY: ==878== definitely lost: 0 bytes in 0 blocks ==878== indirectly lost: 0 bytes in 0 blocks ==878== possibly lost: 1,392 bytes in 4 blocks ==878== still reachable: 174,748 bytes in 999 blocks ==878== of which reachable via heuristic: ==878== length64 : 1,032 bytes in 18 blocks ==878== newarray : 5,976 bytes in 28 blocks ==878== suppressed: 271,927 bytes in 4,285 blocks ==878== Reachable blocks (those to which a pointer was found) are not shown. ==878== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==878== ==878== For counts of detected and suppressed errors, rerun with: -v ==878== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==882== Memcheck, a memory error detector ==882== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==882== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==882== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==882== Parent PID: 878 ==882== ==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::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==890== Parent PID: 111 ==890== ==890== ==890== HEAP SUMMARY: ==890== in use at exit: 484,643 bytes in 5,475 blocks ==890== total heap usage: 278,359 allocs, 272,819 frees, 41,357,281 bytes allocated ==890== ==890== LEAK SUMMARY: ==890== definitely lost: 0 bytes in 0 blocks ==890== indirectly lost: 0 bytes in 0 blocks ==890== possibly lost: 960 bytes in 3 blocks ==890== still reachable: 200,292 bytes in 1,105 blocks ==890== of which reachable via heuristic: ==890== length64 : 1,032 bytes in 18 blocks ==890== newarray : 5,976 bytes in 28 blocks ==890== suppressed: 271,871 bytes in 4,283 blocks ==890== Reachable blocks (those to which a pointer was found) are not shown. ==890== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==890== ==890== For counts of detected and suppressed errors, rerun with: -v ==890== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==890== could not unlink /tmp/vgdb-pipe-from-vgdb-to-890-by-nightly-on-syncev ==890== could not unlink /tmp/vgdb-pipe-to-vgdb-from-890-by-nightly-on-syncev ==890== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-890-by-nightly-on-syncev ==894== Memcheck, a memory error detector ==894== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==894== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==894== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==894== Parent PID: 890 ==894== ==902== Memcheck, a memory error detector ==902== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==902== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==902== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==902== Parent PID: 890 ==902== ==910== Memcheck, a memory error detector ==910== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==910== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==910== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==910== Parent PID: 111 ==910== ==910== ==910== HEAP SUMMARY: ==910== in use at exit: 481,515 bytes in 5,461 blocks ==910== total heap usage: 277,198 allocs, 271,672 frees, 41,131,365 bytes allocated ==910== ==910== LEAK SUMMARY: ==910== definitely lost: 0 bytes in 0 blocks ==910== indirectly lost: 0 bytes in 0 blocks ==910== possibly lost: 960 bytes in 3 blocks ==910== still reachable: 197,220 bytes in 1,093 blocks ==910== of which reachable via heuristic: ==910== length64 : 1,032 bytes in 18 blocks ==910== newarray : 5,976 bytes in 28 blocks ==910== suppressed: 271,815 bytes in 4,281 blocks ==910== Reachable blocks (those to which a pointer was found) are not shown. ==910== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==910== ==910== For counts of detected and suppressed errors, rerun with: -v ==910== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==914== Memcheck, a memory error detector ==914== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==914== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==914== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==914== Parent PID: 910 ==914== ==922== Memcheck, a memory error detector ==922== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==922== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==922== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==922== Parent PID: 910 ==922== ==930== Memcheck, a memory error detector ==930== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==930== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==930== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParent ==930== Parent PID: 111 ==930== ==930== ==930== HEAP SUMMARY: ==930== in use at exit: 456,983 bytes in 5,366 blocks ==930== total heap usage: 223,611 allocs, 218,184 frees, 32,955,362 bytes allocated ==930== ==930== LEAK SUMMARY: ==930== definitely lost: 0 bytes in 0 blocks ==930== indirectly lost: 0 bytes in 0 blocks ==930== possibly lost: 960 bytes in 3 blocks ==930== still reachable: 172,640 bytes in 996 blocks ==930== of which reachable via heuristic: ==930== length64 : 1,032 bytes in 18 blocks ==930== newarray : 5,976 bytes in 28 blocks ==930== suppressed: 271,863 bytes in 4,283 blocks ==930== Reachable blocks (those to which a pointer was found) are not shown. ==930== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==930== ==930== For counts of detected and suppressed errors, rerun with: -v ==930== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==934== Memcheck, a memory error detector ==934== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==934== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==934== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParent ==934== Parent PID: 930 ==934== ==942== Memcheck, a memory error detector ==942== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==942== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==942== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChild ==942== Parent PID: 111 ==942== ==942== ==942== HEAP SUMMARY: ==942== in use at exit: 456,999 bytes in 5,366 blocks ==942== total heap usage: 223,627 allocs, 218,200 frees, 32,947,756 bytes allocated ==942== ==942== LEAK SUMMARY: ==942== definitely lost: 0 bytes in 0 blocks ==942== indirectly lost: 0 bytes in 0 blocks ==942== possibly lost: 960 bytes in 3 blocks ==942== still reachable: 172,640 bytes in 996 blocks ==942== of which reachable via heuristic: ==942== length64 : 1,032 bytes in 18 blocks ==942== newarray : 5,976 bytes in 28 blocks ==942== suppressed: 271,879 bytes in 4,283 blocks ==942== Reachable blocks (those to which a pointer was found) are not shown. ==942== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==942== ==942== For counts of detected and suppressed errors, rerun with: -v ==942== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==946== Memcheck, a memory error detector ==946== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==946== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==946== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChild ==946== Parent PID: 942 ==946== ==954== Memcheck, a memory error detector ==954== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==954== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==954== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentChild ==954== Parent PID: 111 ==954== ==954== ==954== HEAP SUMMARY: ==954== in use at exit: 475,455 bytes in 5,438 blocks ==954== total heap usage: 270,681 allocs, 265,178 frees, 39,507,881 bytes allocated ==954== ==954== LEAK SUMMARY: ==954== definitely lost: 0 bytes in 0 blocks ==954== indirectly lost: 0 bytes in 0 blocks ==954== possibly lost: 960 bytes in 3 blocks ==954== still reachable: 191,072 bytes in 1,068 blocks ==954== of which reachable via heuristic: ==954== length64 : 1,032 bytes in 18 blocks ==954== newarray : 5,976 bytes in 28 blocks ==954== suppressed: 271,903 bytes in 4,283 blocks ==954== Reachable blocks (those to which a pointer was found) are not shown. ==954== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==954== ==954== For counts of detected and suppressed errors, rerun with: -v ==954== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==958== Memcheck, a memory error detector ==958== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==958== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==958== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsParentChild ==958== Parent PID: 954 ==958== ==966== Memcheck, a memory error detector ==966== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==966== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==966== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==966== Parent PID: 111 ==966== ==966== ==966== HEAP SUMMARY: ==966== in use at exit: 463,135 bytes in 5,390 blocks ==966== total heap usage: 214,764 allocs, 209,314 frees, 31,999,940 bytes allocated ==966== ==966== LEAK SUMMARY: ==966== definitely lost: 0 bytes in 0 blocks ==966== indirectly lost: 0 bytes in 0 blocks ==966== possibly lost: 960 bytes in 3 blocks ==966== still reachable: 178,784 bytes in 1,020 blocks ==966== of which reachable via heuristic: ==966== length64 : 1,032 bytes in 18 blocks ==966== newarray : 5,976 bytes in 28 blocks ==966== suppressed: 271,871 bytes in 4,283 blocks ==966== Reachable blocks (those to which a pointer was found) are not shown. ==966== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==966== ==966== For counts of detected and suppressed errors, rerun with: -v ==966== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==970== Memcheck, a memory error detector ==970== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==970== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==970== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==970== Parent PID: 966 ==970== ==978== Memcheck, a memory error detector ==978== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==978== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==978== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildParent ==978== Parent PID: 111 ==978== ==978== ==978== HEAP SUMMARY: ==978== in use at exit: 469,223 bytes in 5,412 blocks ==978== total heap usage: 238,022 allocs, 232,548 frees, 35,752,615 bytes allocated ==978== ==978== LEAK SUMMARY: ==978== definitely lost: 0 bytes in 0 blocks ==978== indirectly lost: 0 bytes in 0 blocks ==978== possibly lost: 960 bytes in 3 blocks ==978== still reachable: 184,928 bytes in 1,044 blocks ==978== of which reachable via heuristic: ==978== length64 : 1,032 bytes in 18 blocks ==978== newarray : 5,976 bytes in 28 blocks ==978== suppressed: 271,815 bytes in 4,281 blocks ==978== Reachable blocks (those to which a pointer was found) are not shown. ==978== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==978== ==978== For counts of detected and suppressed errors, rerun with: -v ==978== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 67 from 67) ==982== Memcheck, a memory error detector ==982== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==982== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==982== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildParent ==982== Parent PID: 978 ==982== ==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: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==990== Parent PID: 111 ==990== ==990== ==990== HEAP SUMMARY: ==990== in use at exit: 466,207 bytes in 5,402 blocks ==990== total heap usage: 251,377 allocs, 245,912 frees, 37,378,497 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: 960 bytes in 3 blocks ==990== still reachable: 181,856 bytes in 1,032 blocks ==990== of which reachable via heuristic: ==990== length64 : 1,032 bytes in 18 blocks ==990== newarray : 5,976 bytes in 28 blocks ==990== suppressed: 271,871 bytes in 4,283 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: 3 errors from 3 contexts (suppressed: 67 from 67) ==994== Memcheck, a memory error detector ==994== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==994== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==994== Command: ./client-test Client::Source::owndrive_caldav::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==994== Parent PID: 990 ==994== valgrindcheck: ./client-test Client::Sync::eds_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav: final result 1 wrappercheck-102 line 100: RET=1 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=4140 wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 104 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -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: '[' 4140 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 4140 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: 4140 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 4140 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 1 = 0 ']' wrappercheck-102 line 136: exit 1 wrappercheck-82 line 100: RET=1 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=4145 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -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: '[' 4145 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 4145 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: grep -q 'No such process' wrappercheck-82 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 4145 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 4145 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 1 = 0 ']' wrappercheck-82 line 136: exit 1 wrappercheck-25 line 100: RET=1 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=4150 wrappercheck-25 line 115: set +e wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-25 line 116: wait 30 wrappercheck-25 line 117: SUBRET=143 wrappercheck-25 line 118: case $SUBRET in wrappercheck-25 line 118: SUBRET=0 wrappercheck-25 line 120: SUBRET=0 wrappercheck-25 line 121: '[' 4150 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 4150 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 4150 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 4150 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 1 = 0 ']' wrappercheck-25 line 136: exit 1 wrappercheck-18 line 100: RET=1 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=4155 wrappercheck-18 line 115: set +e wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-18 line 116: wait 22 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 4155 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 4155 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: echo '' wrappercheck-18 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 4155 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 4155 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 1 = 0 ']' wrappercheck-18 line 136: exit 1 dbus-session.sh: program returned 1 dbus-session.sh: final result 1 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.3nMnQ2bltv Fri Jan 5 17:15:02 2018 UTC (+ 3230.0s / 3653.0s) === cleaning up === Traceback (most recent call last): File "/data/runtests/work/sources/syncevolution/test/resources.py", line 188, in subprocess.check_call(args) File "/usr/lib64/python2.7/subprocess.py", line 186, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['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=owndrive', 'CLIENT_TEST_SOURCES=owndrive_caldav,owndrive_carddav,eds_event,eds_contact', 'SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1', 'CLIENT_TEST_ALARM=1200', 'CLIENT_TEST_WEBDAV=owndrive caldav carddav', 'CLIENT_TEST_NUM_ITEMS=10', 'CLIENT_TEST_MODE=server', '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/owndrive', '-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:.:/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_contact::testItems', 'Client::Sync::eds_event::testItems', 'Client::Source::owndrive_caldav', 'Client::Source::owndrive_carddav']' returned non-zero exit status 1 Traceback (most recent call last): File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 357, in tryexecution self.execute() File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 995, in execute resources=[self.name]) File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 496, in runCommand raise Exception("%s: failed (return code %d)" % (cmdstr, result>>8)) Exception: /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r owndrive -- 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=owndrive CLIENT_TEST_SOURCES=owndrive_caldav,owndrive_carddav,eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=owndrive caldav carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_MODE=server 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/owndrive -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_contact::testItems Client::Sync::eds_event::testItems Client::Source::owndrive_caldav Client::Source::owndrive_carddav: failed (return code 1)