runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 2.6s / 72.8s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-xenial-amd64/home/davical/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 0.1s / 72.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/.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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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/prebuilt-xenial-amd64/home/davical/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-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/config old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/davical/data runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.9s) === starting davical === runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.9s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-xenial-amd64/19-davical, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-xenial-amd64/19-davical runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.9s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/davical (= /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/davical) runtests.py-28558 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/davical; 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/prebuilt-xenial-amd64/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- env 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/davical -r -p -c 2018-01-05-07-10-all-prebuilt-xenial-amd64 -- env 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 davical ./syncevolution ) Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.3s) === locking resource(s) ['davical'] === Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.6s) property changed: status = acquired Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.6s) using jobserver Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.6s) === allocating 1 job slot(s) === Fri Jan 5 15:33:04 2018 UTC (+ 135.9s / 136.4s) === 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-cppcheck] 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-prebuilt-xenial-amd64 chroot] Running command: “env 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 davical ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 32 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 26 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 24 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 43: shift wrappercheck-19 line 44: DAEMON_SLEEP=5 wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 22 -gt 1 ']' wrappercheck-19 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 35: shift wrappercheck-19 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 20 -gt 1 ']' wrappercheck-19 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 20 -gt 1 ']' wrappercheck-19 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 19 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' evolution-source-registry.log ']' wrappercheck-19 line 62: '[' '' ']' ** Message: couldn't access control socket: /tmp/tmp.Ve27fsCQwO/keyring/control: No such file or directory wrappercheck-19 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 70: set -x wrappercheck-19 line 75: '[' evolution-source-registry.log ']' wrappercheck-19 line 70: exec wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-19 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' 5 ']' wrappercheck-19 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-19 line 97: sleep 5 wrappercheck-19 line 99: set -x wrappercheck-19 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 davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-49 line 16: PIDS= wrappercheck-49 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-49 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-49 line 21: DAEMON_LOG= wrappercheck-49 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-49 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-49 line 25: declare -a BACKGROUND wrappercheck-49 line 26: declare -a ENV wrappercheck-49 line 28: '[' 17 -gt 1 ']' wrappercheck-49 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 31: shift wrappercheck-49 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-49 line 53: shift wrappercheck-49 line 28: '[' 15 -gt 1 ']' wrappercheck-49 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 35: shift wrappercheck-49 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-49 line 53: shift wrappercheck-49 line 28: '[' 13 -gt 1 ']' wrappercheck-49 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 50: break wrappercheck-49 line 56: '[' 13 -gt 1 ']' wrappercheck-49 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-49 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-49 line 58: shift wrappercheck-49 line 56: '[' 12 -gt 1 ']' wrappercheck-49 line 56: '[' --keep-running '!=' -- ']' wrappercheck-49 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-49 line 58: shift wrappercheck-49 line 56: '[' 11 -gt 1 ']' wrappercheck-49 line 56: '[' -- '!=' -- ']' wrappercheck-49 line 60: shift wrappercheck-49 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-49 line 62: '[' '' ']' wrappercheck-49 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-49 line 72: BACKGROUND_PID=51 wrappercheck-49 line 73: PIDS+=51 wrappercheck-49 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-49 line 75: '[' '' ']' wrappercheck-49 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-49 line 70: set -x wrappercheck-49 line 70: exec wrappercheck-49 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-49 line 93: kill -0 51 wrappercheck-49 line 94: set +e wrappercheck-49 line 95: '[' '' ']' wrappercheck-49 line 99: set -x wrappercheck-49 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 davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-69 line 16: PIDS= wrappercheck-69 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-69 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-69 line 21: DAEMON_LOG= wrappercheck-69 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-69 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-69 line 25: declare -a BACKGROUND wrappercheck-69 line 26: declare -a ENV wrappercheck-69 line 28: '[' 9 -gt 1 ']' wrappercheck-69 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-69 line 29: case "$1" in wrappercheck-69 line 31: shift wrappercheck-69 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-69 line 53: shift wrappercheck-69 line 28: '[' 7 -gt 1 ']' wrappercheck-69 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-69 line 29: case "$1" in wrappercheck-69 line 50: break wrappercheck-69 line 56: '[' 7 -gt 1 ']' wrappercheck-69 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-69 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-69 line 58: shift wrappercheck-69 line 56: '[' 6 -gt 1 ']' wrappercheck-69 line 56: '[' --keep-running '!=' -- ']' wrappercheck-69 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-69 line 58: shift wrappercheck-69 line 56: '[' 5 -gt 1 ']' wrappercheck-69 line 56: '[' -- '!=' -- ']' wrappercheck-69 line 60: shift wrappercheck-69 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-69 line 62: '[' '' ']' wrappercheck-69 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-69 line 72: BACKGROUND_PID=71 wrappercheck-69 line 73: PIDS+=71 wrappercheck-69 line 70: set -x wrappercheck-69 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-69 line 70: exec wrappercheck-69 line 75: '[' '' ']' wrappercheck-69 line 84: '[' '' ']' wrappercheck-69 line 93: kill -0 71 wrappercheck-69 line 94: set +e wrappercheck-69 line 95: '[' '' ']' wrappercheck-69 line 99: set -x wrappercheck-69 line 99: env /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-xenial-amd64/home/davical/.sync4j/evolution/davical_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/davical_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-[12]/peers/davical_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=davical_1@client-test-davical-1 ++ credentials davical_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_1@client-test-davical-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/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources todo eds_task + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 davical_1@client-test-davical-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 davical_1@client-test-davical-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 davical_1@client-test-davical-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 davical_1@client-test-davical-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_1/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_1@client-test-davical-1 davical_caldav davical_caldavtodo davical_carddav + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=davical_2@client-test-davical-2 ++ credentials davical_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_2@client-test-davical-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/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources todo eds_task + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 davical_2@client-test-davical-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 davical_2@client-test-davical-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 davical_2@client-test-davical-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 davical_2@client-test-davical-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_2/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_2@client-test-davical-2 davical_caldav davical_caldavtodo davical_carddav + case $TEST in + rm -rf /data/runtests/work/prebuilt-xenial-amd64/home/davical/config/syncevolution/client-test-davical + ./syncevolution --configure --daemon=no proxyHost=http://proxy.vlan13.01.org:3128 useProxy=0 loglevel=4 syncURL=http://localhost:9009/davical/caldav.php retryDuration=2m username=test password=testing printChanges=0 dumpData=0 caldav/backend=caldav caldavtodo/backend=caldavtodo carddav/backend=carddav target-config@client-test-davical caldav caldavtodo carddav [INFO] caldav: configuring datastore with sync mode 'two-way' [INFO] caldavtodo: 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 ++ sed -e 's/=.*//' ++ echo evolution-contacts=eds_contact + backend=evolution-contacts ++ sed -e 's/.*=//' ++ echo evolution-contacts=eds_contact + 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 ++ sed -e 's/.*=//' ++ echo evolution-tasks=eds_task + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks 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 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-69 line 100: RET=0 wrappercheck-69 line 101: set -e wrappercheck-69 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-69 line 108: kill -INT -71 wrappercheck-69 line 108: kill -TERM -71 wrappercheck-69 line 108: kill -TERM 71 wrappercheck-69 line 110: KILL_PID=317 wrappercheck-69 line 115: set +e wrappercheck-69 line 116: wait 71 wrappercheck-69 line 109: perl -e 'sleep(60); kill(9, -71);' wrappercheck-69 line 117: SUBRET=143 wrappercheck-69 line 118: case $SUBRET in wrappercheck-69 line 118: SUBRET=0 wrappercheck-69 line 120: SUBRET=0 wrappercheck-69 line 121: '[' 317 ']' wwrappercheck-69 line 122: LC_ALL=C wwrappercheck-69 line 122: kill -KILL 317 wrappercheck-69 line 122: msg= wrappercheck-69 line 123: grep -q 'No such process' wrappercheck-69 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 317 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-69 line 127: echo '' wrappercheck-69 line 129: wait 317 wrappercheck-69 line 131: set -e wrappercheck-69 line 132: '[' 0 = 0 ']' wrappercheck-69 line 133: RET=0 wrappercheck-69 line 136: exit 0 wrappercheck-49 line 100: RET=0 wrappercheck-49 line 101: set -e wrappercheck-49 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-49 line 108: kill -INT -51 wrappercheck-49 line 108: kill -TERM -51 wrappercheck-49 line 108: kill -TERM 51 wrappercheck-49 line 110: KILL_PID=322 wrappercheck-49 line 115: set +e wrappercheck-49 line 116: wait 51 wrappercheck-49 line 109: perl -e 'sleep(60); kill(9, -51);' wrappercheck-49 line 117: SUBRET=143 wrappercheck-49 line 118: case $SUBRET in wrappercheck-49 line 118: SUBRET=0 wrappercheck-49 line 120: SUBRET=0 wrappercheck-49 line 121: '[' 322 ']' wwrappercheck-49 line 122: LC_ALL=C wwrappercheck-49 line 122: kill -KILL 322 wrappercheck-49 line 122: msg= wrappercheck-49 line 123: echo '' wrappercheck-49 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 322 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-49 line 127: echo '' wrappercheck-49 line 129: wait 322 wrappercheck-49 line 131: set -e wrappercheck-49 line 132: '[' 0 = 0 ']' wrappercheck-49 line 133: RET=0 wrappercheck-49 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=327 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 22 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 327 ']' wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 327 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 327 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 327 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=332 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 332 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 332 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: grep -q 'No such process' wrappercheck-15 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 332 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 332 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.Ve27fsCQwO Fri Jan 5 15:33:14 2018 UTC (+ 9.8s / 146.3s) === cleaning up === runtests.py-28558 Fri Jan 5 15:33:14 2018 UTC (+ 146.3s / 219.2s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/davical; 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/prebuilt-xenial-amd64/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/davical/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- 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' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=davical CLIENT_TEST_SOURCES=davical_caldav,davical_caldavtodo,davical_carddav,eds_event,eds_task,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/davical -r -p -c 2018-01-05-07-10-all-prebuilt-xenial-amd64 -- env 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 15:33:14 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['davical'] === Fri Jan 5 15:34:07 2018 UTC (+ 52.9s / 52.9s) property changed: status = acquired Fri Jan 5 15:34:07 2018 UTC (+ 0.0s / 52.9s) using jobserver Fri Jan 5 15:34:07 2018 UTC (+ 0.0s / 52.9s) === allocating 1 job slot(s) === Fri Jan 5 15:34:14 2018 UTC (+ 7.6s / 60.5s) === 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-prebuilt-xenial-amd64 chroot] Running command: “env 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.09Cc7AcQBm/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 40 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 38 -gt 1 ']' wrappercheck-21 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 38 -gt 1 ']' wrappercheck-21 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 37 -gt 1 ']' wrappercheck-21 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 36 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' dbus-monitor.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-21 line 72: BACKGROUND_PID=23 wrappercheck-21 line 73: PIDS+=23 wrappercheck-21 line 75: '[' dbus-monitor.log ']' wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 84: '[' '' ']' wrappercheck-21 line 93: kill -0 23 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' '' ']' wrappercheck-21 line 70: set -x wrappercheck-21 line 99: set -x wrappercheck-21 line 70: exec wrappercheck-21 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + 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: '[' 34 -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: '[' 32 -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: '[' 30 -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: '[' 28 -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: '[' 28 -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: '[' 27 -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=28 wrappercheck-25 line 73: PIDS+=28 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' 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' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 93: kill -0 28 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-52 line 16: PIDS= wrappercheck-52 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-52 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-52 line 21: DAEMON_LOG= wrappercheck-52 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-52 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-52 line 25: declare -a BACKGROUND wrappercheck-52 line 26: declare -a ENV wrappercheck-52 line 28: '[' 25 -gt 1 ']' wrappercheck-52 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-52 line 29: case "$1" in wrappercheck-52 line 31: shift wrappercheck-52 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-52 line 53: shift wrappercheck-52 line 28: '[' 23 -gt 1 ']' wrappercheck-52 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-52 line 29: case "$1" in wrappercheck-52 line 35: shift wrappercheck-52 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-52 line 53: shift wrappercheck-52 line 28: '[' 21 -gt 1 ']' wrappercheck-52 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-52 line 29: case "$1" in wrappercheck-52 line 50: break wrappercheck-52 line 56: '[' 21 -gt 1 ']' wrappercheck-52 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-52 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-52 line 58: shift wrappercheck-52 line 56: '[' 20 -gt 1 ']' wrappercheck-52 line 56: '[' --keep-running '!=' -- ']' wrappercheck-52 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-52 line 58: shift wrappercheck-52 line 56: '[' 19 -gt 1 ']' wrappercheck-52 line 56: '[' -- '!=' -- ']' wrappercheck-52 line 60: shift wrappercheck-52 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 62: '[' '' ']' wrappercheck-52 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-52 line 72: BACKGROUND_PID=54 wrappercheck-52 line 73: PIDS+=54 wrappercheck-52 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 70: set -x wrappercheck-52 line 75: '[' '' ']' wrappercheck-52 line 70: exec wrappercheck-52 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-52 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-52 line 93: kill -0 54 wrappercheck-52 line 94: set +e wrappercheck-52 line 95: '[' '' ']' wrappercheck-52 line 99: set -x wrappercheck-52 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-72 line 16: PIDS= wrappercheck-72 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-72 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-72 line 21: DAEMON_LOG= wrappercheck-72 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-72 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-72 line 25: declare -a BACKGROUND wrappercheck-72 line 26: declare -a ENV wrappercheck-72 line 28: '[' 17 -gt 1 ']' wrappercheck-72 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 31: shift wrappercheck-72 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-72 line 53: shift wrappercheck-72 line 28: '[' 15 -gt 1 ']' wrappercheck-72 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 50: break wrappercheck-72 line 56: '[' 15 -gt 1 ']' wrappercheck-72 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 14 -gt 1 ']' wrappercheck-72 line 56: '[' --keep-running '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 13 -gt 1 ']' wrappercheck-72 line 56: '[' -- '!=' -- ']' wrappercheck-72 line 60: shift wrappercheck-72 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-72 line 62: '[' '' ']' wrappercheck-72 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-72 line 72: BACKGROUND_PID=74 wrappercheck-72 line 73: PIDS+=74 wrappercheck-72 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-72 line 75: '[' '' ']' wrappercheck-72 line 84: '[' '' ']' wrappercheck-72 line 93: kill -0 74 wrappercheck-72 line 94: set +e wrappercheck-72 line 95: '[' '' ']' wrappercheck-72 line 99: set -x wrappercheck-72 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::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems wrappercheck-72 line 70: set -x wrappercheck-72 line 70: exec *** 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 --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-xenial-amd64/tests/davical/valgrind.p76.c%p.out ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems Client::Source::davical_caldav::testLinkedSources okay sess: Destroying session. Client::Source::davical_caldav::testImport okay sess: Destroying session. Client::Source::davical_caldavtodo::testImport okay sess: Destroying session. Client::Source::davical_carddav::testImport okay sess: Destroying session. Client::Sync::eds_event::testItems okay Client::Sync::eds_task::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (76): './client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems' (81): returned 0 ==108== Memcheck, a memory error detector ==108== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==108== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==108== Command: ./client-test Client::Source::davical_caldavtodo::testImport ==108== Parent PID: 81 ==108== --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==108== ==108== HEAP SUMMARY: ==108== in use at exit: 558,610 bytes in 4,816 blocks ==108== total heap usage: 137,159 allocs, 132,284 frees, 16,818,712 bytes allocated ==108== ==108== LEAK SUMMARY: ==108== definitely lost: 0 bytes in 0 blocks ==108== indirectly lost: 0 bytes in 0 blocks ==108== possibly lost: 1,248 bytes in 4 blocks ==108== still reachable: 301,693 bytes in 783 blocks ==108== of which reachable via heuristic: ==108== length64 : 1,072 bytes in 19 blocks ==108== newarray : 5,992 bytes in 29 blocks ==108== suppressed: 244,309 bytes in 3,947 blocks ==108== Rerun with --leak-check=full to see details of leaked memory ==108== ==108== For counts of detected and suppressed errors, rerun with: -v ==108== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 1 from 1) ==120== Memcheck, a memory error detector ==120== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==120== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==120== Command: ./client-test Client::Source::davical_carddav::testImport ==120== Parent PID: 81 ==120== --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --120-- Ignoring non-Dwarf2/3/4 block in .debug_info --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --120-- Last block truncated in .debug_info; ignoring --120-- WARNING: Serious error when reading debug info --120-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --120-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==120== ==120== HEAP SUMMARY: ==120== in use at exit: 558,610 bytes in 4,816 blocks ==120== total heap usage: 198,192 allocs, 193,317 frees, 34,122,340 bytes allocated ==120== ==120== LEAK SUMMARY: ==120== definitely lost: 0 bytes in 0 blocks ==120== indirectly lost: 0 bytes in 0 blocks ==120== possibly lost: 1,248 bytes in 4 blocks ==120== still reachable: 301,693 bytes in 783 blocks ==120== of which reachable via heuristic: ==120== length64 : 1,072 bytes in 19 blocks ==120== newarray : 5,992 bytes in 29 blocks ==120== suppressed: 244,309 bytes in 3,947 blocks ==120== Rerun with --leak-check=full to see details of leaked memory ==120== ==120== For counts of detected and suppressed errors, rerun with: -v ==120== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 1 from 1) ==132== Memcheck, a memory error detector ==132== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==132== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==132== Command: ./client-test Client::Sync::eds_event::testItems ==132== Parent PID: 81 ==132== --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --132-- Ignoring non-Dwarf2/3/4 block in .debug_info --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --132-- Last block truncated in .debug_info; ignoring --132-- WARNING: Serious error when reading debug info --132-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --132-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==132== ==132== HEAP SUMMARY: ==132== in use at exit: 3,023,849 bytes in 29,574 blocks ==132== total heap usage: 2,175,809 allocs, 2,146,176 frees, 225,765,777 bytes allocated ==132== ==132== LEAK SUMMARY: ==132== definitely lost: 0 bytes in 0 blocks ==132== indirectly lost: 0 bytes in 0 blocks ==132== possibly lost: 1,248 bytes in 4 blocks ==132== still reachable: 2,421,503 bytes in 21,672 blocks ==132== of which reachable via heuristic: ==132== length64 : 5,176 bytes in 82 blocks ==132== newarray : 6,312 bytes in 49 blocks ==132== suppressed: 537,050 bytes in 7,410 blocks ==132== Rerun with --leak-check=full to see details of leaked memory ==132== ==132== For counts of detected and suppressed errors, rerun with: -v ==132== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==132== could not unlink /tmp/vgdb-pipe-from-vgdb-to-132-by-nightly-on-syncev ==132== could not unlink /tmp/vgdb-pipe-to-vgdb-from-132-by-nightly-on-syncev ==132== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-132-by-nightly-on-syncev ==158== Memcheck, a memory error detector ==158== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==158== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==158== Command: /usr/libexec/syncevo-local-sync ==158== Parent PID: 132 ==158== --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --158-- Ignoring non-Dwarf2/3/4 block in .debug_info --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --158-- Last block truncated in .debug_info; ignoring --158-- WARNING: Serious error when reading debug info --158-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --158-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==158== ==158== HEAP SUMMARY: ==158== in use at exit: 2,730,762 bytes in 25,174 blocks ==158== total heap usage: 389,959 allocs, 364,785 frees, 47,059,539 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: 864 bytes in 3 blocks ==158== still reachable: 2,511,988 bytes in 21,648 blocks ==158== of which reachable via heuristic: ==158== stdstring : 45 bytes in 1 blocks ==158== length64 : 400 bytes in 7 blocks ==158== newarray : 5,944 bytes in 26 blocks ==158== suppressed: 214,542 bytes in 3,495 blocks ==158== Rerun with --leak-check=full to see details of leaked memory ==158== ==158== For counts of detected and suppressed errors, rerun with: -v ==158== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==177== Memcheck, a memory error detector ==177== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==177== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==177== Command: /usr/libexec/syncevo-local-sync ==177== Parent PID: 132 ==177== --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --177-- Ignoring non-Dwarf2/3/4 block in .debug_info --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --177-- Last block truncated in .debug_info; ignoring --177-- WARNING: Serious error when reading debug info --177-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==177== ==177== HEAP SUMMARY: ==177== in use at exit: 2,693,130 bytes in 25,027 blocks ==177== total heap usage: 292,719 allocs, 267,692 frees, 38,709,870 bytes allocated ==177== ==177== LEAK SUMMARY: ==177== definitely lost: 0 bytes in 0 blocks ==177== indirectly lost: 0 bytes in 0 blocks ==177== possibly lost: 864 bytes in 3 blocks ==177== still reachable: 2,474,356 bytes in 21,501 blocks ==177== of which reachable via heuristic: ==177== stdstring : 45 bytes in 1 blocks ==177== length64 : 400 bytes in 7 blocks ==177== newarray : 5,944 bytes in 26 blocks ==177== suppressed: 214,542 bytes in 3,495 blocks ==177== Rerun with --leak-check=full to see details of leaked memory ==177== ==177== For counts of detected and suppressed errors, rerun with: -v ==177== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==214== Memcheck, a memory error detector ==214== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==214== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==214== Command: /usr/libexec/syncevo-local-sync ==214== Parent PID: 132 ==214== --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --214-- Ignoring non-Dwarf2/3/4 block in .debug_info --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --214-- Last block truncated in .debug_info; ignoring --214-- WARNING: Serious error when reading debug info --214-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --214-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==214== ==214== HEAP SUMMARY: ==214== in use at exit: 2,651,618 bytes in 24,942 blocks ==214== total heap usage: 472,209 allocs, 447,267 frees, 53,465,984 bytes allocated ==214== ==214== LEAK SUMMARY: ==214== definitely lost: 0 bytes in 0 blocks ==214== indirectly lost: 0 bytes in 0 blocks ==214== possibly lost: 864 bytes in 3 blocks ==214== still reachable: 2,432,844 bytes in 21,416 blocks ==214== of which reachable via heuristic: ==214== stdstring : 45 bytes in 1 blocks ==214== length64 : 400 bytes in 7 blocks ==214== newarray : 5,944 bytes in 26 blocks ==214== suppressed: 214,542 bytes in 3,495 blocks ==214== Rerun with --leak-check=full to see details of leaked memory ==214== ==214== For counts of detected and suppressed errors, rerun with: -v ==214== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==223== Memcheck, a memory error detector ==223== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==223== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==223== Command: /usr/libexec/syncevo-local-sync ==223== Parent PID: 132 ==223== --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --223-- Ignoring non-Dwarf2/3/4 block in .debug_info --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --223-- Last block truncated in .debug_info; ignoring --223-- WARNING: Serious error when reading debug info --223-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --223-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==223== ==223== HEAP SUMMARY: ==223== in use at exit: 2,730,762 bytes in 25,174 blocks ==223== total heap usage: 378,309 allocs, 353,135 frees, 46,060,967 bytes allocated ==223== ==223== LEAK SUMMARY: ==223== definitely lost: 0 bytes in 0 blocks ==223== indirectly lost: 0 bytes in 0 blocks ==223== possibly lost: 864 bytes in 3 blocks ==223== still reachable: 2,511,988 bytes in 21,648 blocks ==223== of which reachable via heuristic: ==223== stdstring : 45 bytes in 1 blocks ==223== length64 : 400 bytes in 7 blocks ==223== newarray : 5,944 bytes in 26 blocks ==223== suppressed: 214,542 bytes in 3,495 blocks ==223== Rerun with --leak-check=full to see details of leaked memory ==223== ==223== For counts of detected and suppressed errors, rerun with: -v ==223== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==251== Memcheck, a memory error detector ==251== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==251== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==251== Command: ./client-test Client::Sync::eds_task::testItems ==251== Parent PID: 81 ==251== --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --251-- Ignoring non-Dwarf2/3/4 block in .debug_info --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --251-- Last block truncated in .debug_info; ignoring --251-- WARNING: Serious error when reading debug info --251-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --251-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==251== ==251== HEAP SUMMARY: ==251== in use at exit: 3,018,850 bytes in 29,489 blocks ==251== total heap usage: 1,512,703 allocs, 1,483,155 frees, 171,043,253 bytes allocated ==251== ==251== LEAK SUMMARY: ==251== definitely lost: 0 bytes in 0 blocks ==251== indirectly lost: 0 bytes in 0 blocks ==251== possibly lost: 1,248 bytes in 4 blocks ==251== still reachable: 2,418,301 bytes in 21,619 blocks ==251== of which reachable via heuristic: ==251== length64 : 5,176 bytes in 82 blocks ==251== newarray : 6,312 bytes in 49 blocks ==251== suppressed: 535,253 bytes in 7,378 blocks ==251== Rerun with --leak-check=full to see details of leaked memory ==251== ==251== For counts of detected and suppressed errors, rerun with: -v ==251== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==283== Memcheck, a memory error detector ==283== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==283== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==283== Command: /usr/libexec/syncevo-local-sync ==283== Parent PID: 251 ==283== --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==283== ==283== HEAP SUMMARY: ==283== in use at exit: 2,651,618 bytes in 24,942 blocks ==283== total heap usage: 273,570 allocs, 248,628 frees, 37,361,880 bytes allocated ==283== ==283== LEAK SUMMARY: ==283== definitely lost: 0 bytes in 0 blocks ==283== indirectly lost: 0 bytes in 0 blocks ==283== possibly lost: 864 bytes in 3 blocks ==283== still reachable: 2,432,844 bytes in 21,416 blocks ==283== of which reachable via heuristic: ==283== stdstring : 45 bytes in 1 blocks ==283== length64 : 400 bytes in 7 blocks ==283== newarray : 5,944 bytes in 26 blocks ==283== suppressed: 214,542 bytes in 3,495 blocks ==283== Rerun with --leak-check=full to see details of leaked memory ==283== ==283== For counts of detected and suppressed errors, rerun with: -v ==283== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==323== Memcheck, a memory error detector ==323== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==323== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==323== Command: /usr/libexec/syncevo-local-sync ==323== Parent PID: 251 ==323== --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --323-- Ignoring non-Dwarf2/3/4 block in .debug_info --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --323-- Last block truncated in .debug_info; ignoring --323-- WARNING: Serious error when reading debug info --323-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --323-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==323== ==323== HEAP SUMMARY: ==323== in use at exit: 2,651,618 bytes in 24,942 blocks ==323== total heap usage: 257,952 allocs, 233,010 frees, 35,925,236 bytes allocated ==323== ==323== LEAK SUMMARY: ==323== definitely lost: 0 bytes in 0 blocks ==323== indirectly lost: 0 bytes in 0 blocks ==323== possibly lost: 864 bytes in 3 blocks ==323== still reachable: 2,432,844 bytes in 21,416 blocks ==323== of which reachable via heuristic: ==323== stdstring : 45 bytes in 1 blocks ==323== length64 : 400 bytes in 7 blocks ==323== newarray : 5,944 bytes in 26 blocks ==323== suppressed: 214,542 bytes in 3,495 blocks ==323== Rerun with --leak-check=full to see details of leaked memory ==323== ==323== For counts of detected and suppressed errors, rerun with: -v ==323== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==398== Memcheck, a memory error detector ==398== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==398== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==398== Command: /usr/libexec/syncevo-local-sync ==398== Parent PID: 251 ==398== --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --398-- Ignoring non-Dwarf2/3/4 block in .debug_info --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --398-- Last block truncated in .debug_info; ignoring --398-- WARNING: Serious error when reading debug info --398-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --398-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==398== ==398== HEAP SUMMARY: ==398== in use at exit: 2,651,618 bytes in 24,942 blocks ==398== total heap usage: 266,679 allocs, 241,737 frees, 36,668,009 bytes allocated ==398== ==398== LEAK SUMMARY: ==398== definitely lost: 0 bytes in 0 blocks ==398== indirectly lost: 0 bytes in 0 blocks ==398== possibly lost: 864 bytes in 3 blocks ==398== still reachable: 2,432,844 bytes in 21,416 blocks ==398== of which reachable via heuristic: ==398== stdstring : 45 bytes in 1 blocks ==398== length64 : 400 bytes in 7 blocks ==398== newarray : 5,944 bytes in 26 blocks ==398== suppressed: 214,542 bytes in 3,495 blocks ==398== Rerun with --leak-check=full to see details of leaked memory ==398== ==398== For counts of detected and suppressed errors, rerun with: -v ==398== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==414== Memcheck, a memory error detector ==414== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==414== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==414== Command: /usr/libexec/syncevo-local-sync ==414== Parent PID: 251 ==414== --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --414-- Ignoring non-Dwarf2/3/4 block in .debug_info --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --414-- Last block truncated in .debug_info; ignoring --414-- WARNING: Serious error when reading debug info --414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==414== ==414== HEAP SUMMARY: ==414== in use at exit: 2,651,618 bytes in 24,942 blocks ==414== total heap usage: 264,121 allocs, 239,179 frees, 36,412,154 bytes allocated ==414== ==414== LEAK SUMMARY: ==414== definitely lost: 0 bytes in 0 blocks ==414== indirectly lost: 0 bytes in 0 blocks ==414== possibly lost: 864 bytes in 3 blocks ==414== still reachable: 2,432,844 bytes in 21,416 blocks ==414== of which reachable via heuristic: ==414== stdstring : 45 bytes in 1 blocks ==414== length64 : 400 bytes in 7 blocks ==414== newarray : 5,944 bytes in 26 blocks ==414== suppressed: 214,542 bytes in 3,495 blocks ==414== Rerun with --leak-check=full to see details of leaked memory ==414== ==414== For counts of detected and suppressed errors, rerun with: -v ==414== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==455== Memcheck, a memory error detector ==455== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==455== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==455== Command: ./client-test Client::Sync::eds_contact::testItems ==455== Parent PID: 81 ==455== --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --455-- Ignoring non-Dwarf2/3/4 block in .debug_info --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --455-- Last block truncated in .debug_info; ignoring --455-- WARNING: Serious error when reading debug info --455-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --455-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==455== ==455== HEAP SUMMARY: ==455== in use at exit: 3,071,746 bytes in 29,897 blocks ==455== total heap usage: 2,145,722 allocs, 2,115,766 frees, 223,930,942 bytes allocated ==455== ==455== LEAK SUMMARY: ==455== definitely lost: 0 bytes in 0 blocks ==455== indirectly lost: 0 bytes in 0 blocks ==455== possibly lost: 1,632 bytes in 5 blocks ==455== still reachable: 2,495,808 bytes in 21,639 blocks ==455== of which reachable via heuristic: ==455== length64 : 5,152 bytes in 82 blocks ==455== newarray : 6,296 bytes in 48 blocks ==455== suppressed: 490,410 bytes in 7,640 blocks ==455== Rerun with --leak-check=full to see details of leaked memory ==455== ==455== For counts of detected and suppressed errors, rerun with: -v ==455== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==481== Memcheck, a memory error detector ==481== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==481== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==481== Command: /usr/libexec/syncevo-local-sync ==481== Parent PID: 455 ==481== --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --481-- Ignoring non-Dwarf2/3/4 block in .debug_info --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --481-- Last block truncated in .debug_info; ignoring --481-- WARNING: Serious error when reading debug info --481-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --481-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==481== ==481== HEAP SUMMARY: ==481== in use at exit: 2,651,618 bytes in 24,942 blocks ==481== total heap usage: 617,280 allocs, 592,338 frees, 65,624,410 bytes allocated ==481== ==481== LEAK SUMMARY: ==481== definitely lost: 0 bytes in 0 blocks ==481== indirectly lost: 0 bytes in 0 blocks ==481== possibly lost: 864 bytes in 3 blocks ==481== still reachable: 2,432,844 bytes in 21,416 blocks ==481== of which reachable via heuristic: ==481== stdstring : 45 bytes in 1 blocks ==481== length64 : 400 bytes in 7 blocks ==481== newarray : 5,944 bytes in 26 blocks ==481== suppressed: 214,542 bytes in 3,495 blocks ==481== Rerun with --leak-check=full to see details of leaked memory ==481== ==481== For counts of detected and suppressed errors, rerun with: -v ==481== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==502== Memcheck, a memory error detector ==502== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==502== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==502== Command: /usr/libexec/syncevo-local-sync ==502== Parent PID: 455 ==502== --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --502-- Ignoring non-Dwarf2/3/4 block in .debug_info --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --502-- Last block truncated in .debug_info; ignoring --502-- WARNING: Serious error when reading debug info --502-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --502-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==502== ==502== HEAP SUMMARY: ==502== in use at exit: 2,651,618 bytes in 24,942 blocks ==502== total heap usage: 292,227 allocs, 267,285 frees, 38,944,528 bytes allocated ==502== ==502== LEAK SUMMARY: ==502== definitely lost: 0 bytes in 0 blocks ==502== indirectly lost: 0 bytes in 0 blocks ==502== possibly lost: 864 bytes in 3 blocks ==502== still reachable: 2,432,844 bytes in 21,416 blocks ==502== of which reachable via heuristic: ==502== stdstring : 45 bytes in 1 blocks ==502== length64 : 400 bytes in 7 blocks ==502== newarray : 5,944 bytes in 26 blocks ==502== suppressed: 214,542 bytes in 3,495 blocks ==502== Rerun with --leak-check=full to see details of leaked memory ==502== ==502== For counts of detected and suppressed errors, rerun with: -v ==502== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==540== Memcheck, a memory error detector ==540== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==540== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==540== Command: /usr/libexec/syncevo-local-sync ==540== Parent PID: 455 ==540== --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --540-- Ignoring non-Dwarf2/3/4 block in .debug_info --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --540-- Last block truncated in .debug_info; ignoring --540-- WARNING: Serious error when reading debug info --540-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --540-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==540== ==540== HEAP SUMMARY: ==540== in use at exit: 2,651,658 bytes in 24,943 blocks ==540== total heap usage: 574,654 allocs, 549,711 frees, 62,228,090 bytes allocated ==540== ==540== LEAK SUMMARY: ==540== definitely lost: 0 bytes in 0 blocks ==540== indirectly lost: 0 bytes in 0 blocks ==540== possibly lost: 864 bytes in 3 blocks ==540== still reachable: 2,432,844 bytes in 21,416 blocks ==540== of which reachable via heuristic: ==540== stdstring : 45 bytes in 1 blocks ==540== length64 : 440 bytes in 8 blocks ==540== newarray : 5,944 bytes in 26 blocks ==540== suppressed: 214,582 bytes in 3,496 blocks ==540== Rerun with --leak-check=full to see details of leaked memory ==540== ==540== For counts of detected and suppressed errors, rerun with: -v ==540== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==548== Memcheck, a memory error detector ==548== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==548== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==548== Command: /usr/libexec/syncevo-local-sync ==548== Parent PID: 455 ==548== --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --548-- Ignoring non-Dwarf2/3/4 block in .debug_info --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --548-- Last block truncated in .debug_info; ignoring --548-- WARNING: Serious error when reading debug info --548-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --548-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==548== ==548== HEAP SUMMARY: ==548== in use at exit: 2,651,618 bytes in 24,942 blocks ==548== total heap usage: 611,809 allocs, 586,867 frees, 64,925,835 bytes allocated ==548== ==548== LEAK SUMMARY: ==548== definitely lost: 0 bytes in 0 blocks ==548== indirectly lost: 0 bytes in 0 blocks ==548== possibly lost: 864 bytes in 3 blocks ==548== still reachable: 2,432,844 bytes in 21,416 blocks ==548== of which reachable via heuristic: ==548== stdstring : 45 bytes in 1 blocks ==548== length64 : 400 bytes in 7 blocks ==548== newarray : 5,944 bytes in 26 blocks ==548== suppressed: 214,542 bytes in 3,495 blocks ==548== Rerun with --leak-check=full to see details of leaked memory ==548== ==548== For counts of detected and suppressed errors, rerun with: -v ==548== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==81== Memcheck, a memory error detector ==81== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==81== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==81== Command: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ==81== Parent PID: 76 ==81== --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==81== ==81== HEAP SUMMARY: ==81== in use at exit: 554,628 bytes in 4,785 blocks ==81== total heap usage: 139,190 allocs, 134,350 frees, 17,367,753 bytes allocated ==81== ==81== LEAK SUMMARY: ==81== definitely lost: 0 bytes in 0 blocks ==81== indirectly lost: 0 bytes in 0 blocks ==81== possibly lost: 864 bytes in 3 blocks ==81== still reachable: 298,135 bytes in 758 blocks ==81== of which reachable via heuristic: ==81== length64 : 1,072 bytes in 19 blocks ==81== newarray : 5,992 bytes in 29 blocks ==81== suppressed: 244,269 bytes in 3,942 blocks ==81== Rerun with --leak-check=full to see details of leaked memory ==81== ==81== For counts of detected and suppressed errors, rerun with: -v ==81== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==92== Memcheck, a memory error detector ==92== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==92== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==92== Command: ./client-test Client::Source::davical_caldav::testLinkedSources ==92== Parent PID: 81 ==92== --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==92== ==92== HEAP SUMMARY: ==92== in use at exit: 718,971 bytes in 5,478 blocks ==92== total heap usage: 395,010 allocs, 389,445 frees, 54,071,500 bytes allocated ==92== ==92== LEAK SUMMARY: ==92== definitely lost: 0 bytes in 0 blocks ==92== indirectly lost: 0 bytes in 0 blocks ==92== possibly lost: 864 bytes in 3 blocks ==92== still reachable: 462,526 bytes in 1,450 blocks ==92== of which reachable via heuristic: ==92== length64 : 1,072 bytes in 19 blocks ==92== newarray : 5,992 bytes in 29 blocks ==92== suppressed: 244,221 bytes in 3,943 blocks ==92== Rerun with --leak-check=full to see details of leaked memory ==92== ==92== For counts of detected and suppressed errors, rerun with: -v ==92== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 1 from 1) ==92== could not unlink /tmp/vgdb-pipe-from-vgdb-to-92-by-nightly-on-syncev ==92== could not unlink /tmp/vgdb-pipe-to-vgdb-from-92-by-nightly-on-syncev ==92== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-92-by-nightly-on-syncev ==96== Memcheck, a memory error detector ==96== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==96== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==96== Command: ./client-test Client::Source::davical_caldav::testImport ==96== Parent PID: 81 ==96== --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==96== ==96== HEAP SUMMARY: ==96== in use at exit: 718,475 bytes in 5,473 blocks ==96== total heap usage: 183,945 allocs, 178,413 frees, 29,106,247 bytes allocated ==96== ==96== LEAK SUMMARY: ==96== definitely lost: 0 bytes in 0 blocks ==96== indirectly lost: 0 bytes in 0 blocks ==96== possibly lost: 1,248 bytes in 4 blocks ==96== still reachable: 461,558 bytes in 1,440 blocks ==96== of which reachable via heuristic: ==96== length64 : 1,072 bytes in 19 blocks ==96== newarray : 5,992 bytes in 29 blocks ==96== suppressed: 244,309 bytes in 3,947 blocks ==96== Rerun with --leak-check=full to see details of leaked memory ==96== ==96== For counts of detected and suppressed errors, rerun with: -v ==96== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 1 from 1) valgrindcheck: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-72 line 100: RET=0 wrappercheck-72 line 101: set -e wrappercheck-72 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-72 line 108: kill -INT -74 wrappercheck-72 line 108: kill -TERM -74 wrappercheck-72 line 108: kill -TERM 74 wrappercheck-72 line 110: KILL_PID=849 wrappercheck-72 line 115: set +e wrappercheck-72 line 116: wait 74 wrappercheck-72 line 117: SUBRET=143 wrappercheck-72 line 118: case $SUBRET in wrappercheck-72 line 118: SUBRET=0 wrappercheck-72 line 120: SUBRET=0 wrappercheck-72 line 121: '[' 849 ']' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 849 wrappercheck-72 line 122: msg= wrappercheck-72 line 123: grep -q 'No such process' wrappercheck-72 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 849 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 849 wrappercheck-72 line 131: set -e wrappercheck-72 line 132: '[' 0 = 0 ']' wrappercheck-72 line 133: RET=0 wrappercheck-72 line 136: exit 0 wrappercheck-52 line 100: RET=0 wrappercheck-52 line 101: set -e wrappercheck-52 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-52 line 108: kill -INT -54 wrappercheck-52 line 108: kill -TERM -54 wrappercheck-52 line 108: kill -TERM 54 wrappercheck-52 line 110: KILL_PID=854 wrappercheck-52 line 115: set +e wrappercheck-52 line 109: perl -e 'sleep(60); kill(9, -54);' wrappercheck-52 line 116: wait 54 wrappercheck-52 line 117: SUBRET=143 wrappercheck-52 line 118: case $SUBRET in wrappercheck-52 line 118: SUBRET=0 wrappercheck-52 line 120: SUBRET=0 wrappercheck-52 line 121: '[' 854 ']' wwrappercheck-52 line 122: LC_ALL=C wwrappercheck-52 line 122: kill -KILL 854 wrappercheck-52 line 122: msg= wrappercheck-52 line 123: grep -q 'No such process' wrappercheck-52 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 854 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-52 line 127: echo '' wrappercheck-52 line 129: wait 854 wrappercheck-52 line 131: set -e wrappercheck-52 line 132: '[' 0 = 0 ']' wrappercheck-52 line 133: RET=0 wrappercheck-52 line 136: exit 0 wrappercheck-25 line 100: RET=0 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 -28 wrappercheck-25 line 108: kill -TERM -28 wrappercheck-25 line 108: kill -TERM 28 wrappercheck-25 line 110: KILL_PID=859 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 28 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: '[' 859 ']' wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -28);' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 859 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: 859 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 859 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-21 line 108: kill -INT -23 wrappercheck-21 line 108: kill -TERM -23 wrappercheck-21 line 108: kill -TERM 23 wrappercheck-21 line 110: KILL_PID=864 wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 23 wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 864 ']' wrappercheck-21 line 109: perl -e 'sleep(60); kill(9, -23);' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 864 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: echo '' wrappercheck-21 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 864 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 864 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 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.09Cc7AcQBm Fri Jan 5 15:41:35 2018 UTC (+ 440.2s / 500.7s) === cleaning up ===