runtests.py-28560 Fri Jan 5 15:30:48 2018 UTC (+ 2.7s / 72.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-xenial-amd64/home/apple/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-28560 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/apple/.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/apple/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/apple/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/apple/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/apple/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/apple/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/apple/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/apple/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/apple/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/apple/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/apple/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/config old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/apple/data runtests.py-28560 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.9s) === starting apple === runtests.py-28560 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/20-apple, /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/20-apple runtests.py-28560 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/apple (= /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/apple) runtests.py-28560 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/apple; 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/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r apple -- env 'CLIENT_TEST_WEBDAV=apple caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_FAILURES=Client::Sync::eds_contact::testOneWayFromLocal,Client::Sync::eds_contact::testOneWayFromClient,Client::Sync::eds_task::testOneWayFromLocal,Client::Sync::eds_task::testOneWayFromClient, CLIENT_TEST_NO_TIMEZONES=1 CLIENT_TEST_MODE=server schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/apple -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 apple ./syncevolution ) Fri Jan 5 15:30:48 2018 UTC (+ 0.2s / 0.2s) === locking resource(s) ['apple'] === Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.5s) property changed: status = acquired Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.5s) using jobserver Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.5s) === allocating 1 job slot(s) === Fri Jan 5 15:30:58 2018 UTC (+ 9.6s / 10.1s) === 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 apple ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 32 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 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: '[' '' ']' ** Message: couldn't access control socket: /tmp/tmp.Iw09iRHTQD/keyring/control: No such file or directory 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 apple ./syncevolution wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec + 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: '[' '' ']' 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=25 wrappercheck-19 line 73: PIDS+=25 wrappercheck-19 line 75: '[' evolution-source-registry.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec 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 25 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 apple ./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 85: set +x wrappercheck-49 line 70: exec *** 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 apple ./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 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 70: exec wrappercheck-69 line 99: set -x wrappercheck-69 line 99: env /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-xenial-amd64/home/apple/.sync4j/evolution/apple_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/apple_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-[12]/peers/apple_[12]' '/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=apple_1@client-test-apple-1 ++ credentials apple_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template apple --template SyncEvolution_Client username= password= syncURL=local://@client-test-apple 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 apple_1@client-test-apple-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/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources todo eds_task + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 apple_1@client-test-apple-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 apple_1@client-test-apple-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 apple_1@client-test-apple-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 apple_1@client-test-apple-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=user01 databasePassword=user01 sslverifyhost=0 sslverifyserver=0 apple_caldav/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/calendar/ apple_caldavtodo/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/tasks/ apple_carddav/database=http://127.0.0.1:8008/addressbooks/__uids__/10000000-0000-0000-0000-000000000001/addressbook/ apple_caldav/backend=caldav apple_caldavtodo/backend=caldavtodo apple_carddav/backend=carddav apple_1@client-test-apple-1 apple_caldav apple_caldavtodo apple_carddav + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=apple_2@client-test-apple-2 ++ credentials apple_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template apple --template SyncEvolution_Client username= password= syncURL=local://@client-test-apple 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 apple_2@client-test-apple-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/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources todo eds_task + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 apple_2@client-test-apple-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 apple_2@client-test-apple-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 apple_2@client-test-apple-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 apple_2@client-test-apple-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=user01 databasePassword=user01 sslverifyhost=0 sslverifyserver=0 apple_caldav/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/calendar/ apple_caldavtodo/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/tasks/ apple_carddav/database=http://127.0.0.1:8008/addressbooks/__uids__/10000000-0000-0000-0000-000000000001/addressbook/ apple_caldav/backend=caldav apple_caldavtodo/backend=caldavtodo apple_carddav/backend=carddav apple_2@client-test-apple-2 apple_caldav apple_caldavtodo apple_carddav + case $TEST in + rm -rf /data/runtests/work/prebuilt-xenial-amd64/home/apple/config/syncevolution/client-test-apple + ./syncevolution --configure --daemon=no useProxy=0 loglevel=4 sslverifyhost=0 sslverifyserver=0 syncURL=http://127.0.0.1:8008/ printChanges=0 dumpData=0 username=user01 password=user01 caldav/backend=caldav caldavtodo/backend=caldavtodo carddav/backend=carddav target-config@client-test-apple 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 ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 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 ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + 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 ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + 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 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-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 117: SUBRET=143 wrappercheck-69 line 109: perl -e 'sleep(60); kill(9, -71);' 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: echo '' wrappercheck-69 line 123: grep -q 'No such process' /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 -25 wrappercheck-19 line 108: kill -TERM -25 wrappercheck-19 line 108: kill -TERM 25 wrappercheck-19 line 110: KILL_PID=327 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 25 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 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 327 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: grep -q 'No such process' wrappercheck-19 line 123: echo '' /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: echo '' wrappercheck-15 line 123: grep -q 'No such process' /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.Iw09iRHTQD Fri Jan 5 15:31:13 2018 UTC (+ 14.7s / 24.9s) === cleaning up === runtests.py-28560 Fri Jan 5 15:31:13 2018 UTC (+ 24.9s / 97.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/apple; 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/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/apple/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r apple -- 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=apple CLIENT_TEST_SOURCES=apple_caldav,apple_caldavtodo,apple_carddav,eds_event,eds_task,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=2400 'CLIENT_TEST_WEBDAV=apple caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_FAILURES=Client::Sync::eds_contact::testOneWayFromLocal,Client::Sync::eds_contact::testOneWayFromClient,Client::Sync::eds_task::testOneWayFromLocal,Client::Sync::eds_task::testOneWayFromClient, CLIENT_TEST_NO_TIMEZONES=1 CLIENT_TEST_MODE=server CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/apple -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::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 15:31:13 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['apple'] === Fri Jan 5 15:34:03 2018 UTC (+ 170.2s / 170.2s) property changed: status = acquired Fri Jan 5 15:34:03 2018 UTC (+ 0.0s / 170.2s) using jobserver Fri Jan 5 15:34:03 2018 UTC (+ 0.0s / 170.2s) === allocating 1 job slot(s) === Fri Jan 5 15:34:03 2018 UTC (+ 0.3s / 170.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::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges 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.nli0lP2Vwf/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 42 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 40 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 40 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 39 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 38 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=23 wrappercheck-18 line 73: PIDS+=23 wrappercheck-18 line 70: set -x wrappercheck-18 line 70: exec wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 23 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-26 line 16: PIDS= wrappercheck-26 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-26 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-26 line 21: DAEMON_LOG= wrappercheck-26 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-26 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-26 line 25: declare -a BACKGROUND wrappercheck-26 line 26: declare -a ENV wrappercheck-26 line 28: '[' 36 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 31: shift wrappercheck-26 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 34 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 43: shift wrappercheck-26 line 44: DAEMON_SLEEP=5 wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 32 -gt 1 ']' wrappercheck-26 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 35: shift wrappercheck-26 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 30 -gt 1 ']' wrappercheck-26 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 50: break wrappercheck-26 line 56: '[' 30 -gt 1 ']' wrappercheck-26 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-26 line 58: shift wrappercheck-26 line 56: '[' 29 -gt 1 ']' wrappercheck-26 line 56: '[' -- '!=' -- ']' wrappercheck-26 line 60: shift wrappercheck-26 line 62: '[' evolution-source-registry.log ']' wrappercheck-26 line 62: '[' '' ']' wrappercheck-26 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-26 line 72: BACKGROUND_PID=30 wrappercheck-26 line 73: PIDS+=30 wrappercheck-26 line 75: '[' evolution-source-registry.log ']' wrappercheck-26 line 75: '[' '' ']' wrappercheck-26 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-26 line 70: set -x wrappercheck-26 line 70: exec wrappercheck-26 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-26 line 93: kill -0 30 wrappercheck-26 line 94: set +e wrappercheck-26 line 95: '[' 5 ']' wrappercheck-26 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-26 line 97: sleep 5 wrappercheck-26 line 99: set -x wrappercheck-26 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::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges 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: '[' 27 -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: '[' 25 -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: '[' 23 -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: '[' 23 -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: '[' 22 -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: '[' 21 -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 70: set -x wrappercheck-52 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 70: exec wrappercheck-52 line 75: '[' '' ']' 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::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges 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: '[' 19 -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: '[' 17 -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: '[' 17 -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: '[' 16 -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: '[' 15 -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 70: set -x wrappercheck-72 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-72 line 70: exec 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::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems *** 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/apple/valgrind.p77.c%p.out ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems Client::Source::apple_caldav::testChanges okay sess: Destroying session. Client::Source::apple_caldav::testImport okay sess: Destroying session. Client::Source::apple_caldavtodo::testChanges okay sess: Destroying session. Client::Source::apple_caldavtodo::testImport okay sess: Destroying session. Client::Source::apple_carddav::testChanges okay sess: Destroying session. Client::Source::apple_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 (77): './client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems' (83): 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::apple_caldavtodo::testChanges ==108== Parent PID: 83 ==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: 556,010 bytes in 4,809 blocks ==108== total heap usage: 422,891 allocs, 417,989 frees, 50,151,479 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: 864 bytes in 3 blocks ==108== still reachable: 299,589 bytes in 781 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,197 bytes in 3,943 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: 0 from 0) ==108== could not unlink /tmp/vgdb-pipe-from-vgdb-to-108-by-nightly-on-syncev ==108== could not unlink /tmp/vgdb-pipe-to-vgdb-from-108-by-nightly-on-syncev ==108== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-108-by-nightly-on-syncev ==112== Memcheck, a memory error detector ==112== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==112== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==112== Command: ./client-test Client::Source::apple_caldavtodo::testImport ==112== Parent PID: 83 ==112== --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==112== ==112== HEAP SUMMARY: ==112== in use at exit: 558,538 bytes in 4,814 blocks ==112== total heap usage: 148,732 allocs, 143,859 frees, 21,870,950 bytes allocated ==112== ==112== LEAK SUMMARY: ==112== definitely lost: 0 bytes in 0 blocks ==112== indirectly lost: 0 bytes in 0 blocks ==112== possibly lost: 1,248 bytes in 4 blocks ==112== still reachable: 301,693 bytes in 783 blocks ==112== of which reachable via heuristic: ==112== length64 : 1,072 bytes in 19 blocks ==112== newarray : 5,992 bytes in 29 blocks ==112== suppressed: 244,237 bytes in 3,945 blocks ==112== Rerun with --leak-check=full to see details of leaked memory ==112== ==112== For counts of detected and suppressed errors, rerun with: -v ==112== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==124== Memcheck, a memory error detector ==124== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==124== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==124== Command: ./client-test Client::Source::apple_carddav::testChanges ==124== Parent PID: 83 ==124== --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --124-- Ignoring non-Dwarf2/3/4 block in .debug_info --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --124-- Last block truncated in .debug_info; ignoring --124-- WARNING: Serious error when reading debug info --124-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --124-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==124== ==124== HEAP SUMMARY: ==124== in use at exit: 556,010 bytes in 4,809 blocks ==124== total heap usage: 423,027 allocs, 418,125 frees, 50,063,084 bytes allocated ==124== ==124== LEAK SUMMARY: ==124== definitely lost: 0 bytes in 0 blocks ==124== indirectly lost: 0 bytes in 0 blocks ==124== possibly lost: 864 bytes in 3 blocks ==124== still reachable: 299,589 bytes in 781 blocks ==124== of which reachable via heuristic: ==124== length64 : 1,072 bytes in 19 blocks ==124== newarray : 5,992 bytes in 29 blocks ==124== suppressed: 244,197 bytes in 3,943 blocks ==124== Rerun with --leak-check=full to see details of leaked memory ==124== ==124== For counts of detected and suppressed errors, rerun with: -v ==124== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==128== Memcheck, a memory error detector ==128== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==128== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==128== Command: ./client-test Client::Source::apple_carddav::testImport ==128== Parent PID: 83 ==128== --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==128== ==128== HEAP SUMMARY: ==128== in use at exit: 558,586 bytes in 4,816 blocks ==128== total heap usage: 189,723 allocs, 184,848 frees, 30,320,443 bytes allocated ==128== ==128== LEAK SUMMARY: ==128== definitely lost: 0 bytes in 0 blocks ==128== indirectly lost: 0 bytes in 0 blocks ==128== possibly lost: 1,248 bytes in 4 blocks ==128== still reachable: 301,693 bytes in 783 blocks ==128== of which reachable via heuristic: ==128== length64 : 1,072 bytes in 19 blocks ==128== newarray : 5,992 bytes in 29 blocks ==128== suppressed: 244,285 bytes in 3,947 blocks ==128== Rerun with --leak-check=full to see details of leaked memory ==128== ==128== For counts of detected and suppressed errors, rerun with: -v ==128== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==140== Memcheck, a memory error detector ==140== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==140== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==140== Command: ./client-test Client::Sync::eds_event::testItems ==140== Parent PID: 83 ==140== --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --140-- Ignoring non-Dwarf2/3/4 block in .debug_info --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --140-- Last block truncated in .debug_info; ignoring --140-- WARNING: Serious error when reading debug info --140-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --140-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==140== ==140== HEAP SUMMARY: ==140== in use at exit: 3,009,866 bytes in 29,346 blocks ==140== total heap usage: 2,250,182 allocs, 2,220,777 frees, 245,236,023 bytes allocated ==140== ==140== LEAK SUMMARY: ==140== definitely lost: 0 bytes in 0 blocks ==140== indirectly lost: 0 bytes in 0 blocks ==140== possibly lost: 1,248 bytes in 4 blocks ==140== still reachable: 2,414,952 bytes in 21,588 blocks ==140== of which reachable via heuristic: ==140== length64 : 5,176 bytes in 82 blocks ==140== newarray : 6,312 bytes in 49 blocks ==140== suppressed: 529,450 bytes in 7,264 blocks ==140== Rerun with --leak-check=full to see details of leaked memory ==140== ==140== For counts of detected and suppressed errors, rerun with: -v ==140== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==166== Memcheck, a memory error detector ==166== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==166== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==166== Command: /usr/libexec/syncevo-local-sync ==166== Parent PID: 140 ==166== --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --166-- Ignoring non-Dwarf2/3/4 block in .debug_info --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --166-- Last block truncated in .debug_info; ignoring --166-- WARNING: Serious error when reading debug info --166-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --166-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==166== ==166== HEAP SUMMARY: ==166== in use at exit: 2,734,224 bytes in 25,184 blocks ==166== total heap usage: 445,351 allocs, 420,167 frees, 58,915,076 bytes allocated ==166== ==166== LEAK SUMMARY: ==166== definitely lost: 0 bytes in 0 blocks ==166== indirectly lost: 0 bytes in 0 blocks ==166== possibly lost: 864 bytes in 3 blocks ==166== still reachable: 2,515,570 bytes in 21,662 blocks ==166== of which reachable via heuristic: ==166== stdstring : 43 bytes in 1 blocks ==166== length64 : 400 bytes in 7 blocks ==166== newarray : 5,944 bytes in 26 blocks ==166== suppressed: 214,422 bytes in 3,491 blocks ==166== Rerun with --leak-check=full to see details of leaked memory ==166== ==166== For counts of detected and suppressed errors, rerun with: -v ==166== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==185== Memcheck, a memory error detector ==185== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==185== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==185== Command: /usr/libexec/syncevo-local-sync ==185== Parent PID: 140 ==185== --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --185-- Ignoring non-Dwarf2/3/4 block in .debug_info --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --185-- Last block truncated in .debug_info; ignoring --185-- WARNING: Serious error when reading debug info --185-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --185-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==185== ==185== HEAP SUMMARY: ==185== in use at exit: 2,705,808 bytes in 25,073 blocks ==185== total heap usage: 297,418 allocs, 272,345 frees, 39,265,532 bytes allocated ==185== ==185== LEAK SUMMARY: ==185== definitely lost: 0 bytes in 0 blocks ==185== indirectly lost: 0 bytes in 0 blocks ==185== possibly lost: 864 bytes in 3 blocks ==185== still reachable: 2,487,154 bytes in 21,551 blocks ==185== of which reachable via heuristic: ==185== stdstring : 43 bytes in 1 blocks ==185== length64 : 400 bytes in 7 blocks ==185== newarray : 5,944 bytes in 26 blocks ==185== suppressed: 214,422 bytes in 3,491 blocks ==185== Rerun with --leak-check=full to see details of leaked memory ==185== ==185== For counts of detected and suppressed errors, rerun with: -v ==185== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==222== Memcheck, a memory error detector ==222== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==222== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==222== Command: /usr/libexec/syncevo-local-sync ==222== Parent PID: 140 ==222== --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --222-- Ignoring non-Dwarf2/3/4 block in .debug_info --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --222-- Last block truncated in .debug_info; ignoring --222-- WARNING: Serious error when reading debug info --222-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --222-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==222== ==222== HEAP SUMMARY: ==222== in use at exit: 2,651,544 bytes in 24,940 blocks ==222== total heap usage: 488,086 allocs, 463,146 frees, 54,970,517 bytes allocated ==222== ==222== LEAK SUMMARY: ==222== definitely lost: 0 bytes in 0 blocks ==222== indirectly lost: 0 bytes in 0 blocks ==222== possibly lost: 864 bytes in 3 blocks ==222== still reachable: 2,432,842 bytes in 21,416 blocks ==222== of which reachable via heuristic: ==222== stdstring : 43 bytes in 1 blocks ==222== length64 : 400 bytes in 7 blocks ==222== newarray : 5,944 bytes in 26 blocks ==222== suppressed: 214,470 bytes in 3,493 blocks ==222== Rerun with --leak-check=full to see details of leaked memory ==222== ==222== For counts of detected and suppressed errors, rerun with: -v ==222== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==231== Memcheck, a memory error detector ==231== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==231== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==231== Command: /usr/libexec/syncevo-local-sync ==231== Parent PID: 140 ==231== --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --231-- Ignoring non-Dwarf2/3/4 block in .debug_info --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --231-- Last block truncated in .debug_info; ignoring --231-- WARNING: Serious error when reading debug info --231-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --231-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==231== ==231== HEAP SUMMARY: ==231== in use at exit: 2,734,272 bytes in 25,186 blocks ==231== total heap usage: 382,098 allocs, 356,912 frees, 46,364,253 bytes allocated ==231== ==231== LEAK SUMMARY: ==231== definitely lost: 0 bytes in 0 blocks ==231== indirectly lost: 0 bytes in 0 blocks ==231== possibly lost: 864 bytes in 3 blocks ==231== still reachable: 2,515,570 bytes in 21,662 blocks ==231== of which reachable via heuristic: ==231== stdstring : 43 bytes in 1 blocks ==231== length64 : 400 bytes in 7 blocks ==231== newarray : 5,944 bytes in 26 blocks ==231== suppressed: 214,470 bytes in 3,493 blocks ==231== Rerun with --leak-check=full to see details of leaked memory ==231== ==231== For counts of detected and suppressed errors, rerun with: -v ==231== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==260== Memcheck, a memory error detector ==260== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==260== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==260== Command: ./client-test Client::Sync::eds_task::testItems ==260== Parent PID: 83 ==260== --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --260-- Ignoring non-Dwarf2/3/4 block in .debug_info --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --260-- Last block truncated in .debug_info; ignoring --260-- WARNING: Serious error when reading debug info --260-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --260-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==260== ==260== HEAP SUMMARY: ==260== in use at exit: 3,021,075 bytes in 29,540 blocks ==260== total heap usage: 1,522,822 allocs, 1,493,223 frees, 176,094,698 bytes allocated ==260== ==260== LEAK SUMMARY: ==260== definitely lost: 0 bytes in 0 blocks ==260== indirectly lost: 0 bytes in 0 blocks ==260== possibly lost: 1,248 bytes in 4 blocks ==260== still reachable: 2,419,023 bytes in 21,625 blocks ==260== of which reachable via heuristic: ==260== length64 : 5,176 bytes in 82 blocks ==260== newarray : 6,312 bytes in 49 blocks ==260== suppressed: 536,756 bytes in 7,423 blocks ==260== Rerun with --leak-check=full to see details of leaked memory ==260== ==260== For counts of detected and suppressed errors, rerun with: -v ==260== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==292== Memcheck, a memory error detector ==292== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==292== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==292== Command: /usr/libexec/syncevo-local-sync ==292== Parent PID: 260 ==292== --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --292-- Ignoring non-Dwarf2/3/4 block in .debug_info --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --292-- Last block truncated in .debug_info; ignoring --292-- WARNING: Serious error when reading debug info --292-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --292-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==292== ==292== HEAP SUMMARY: ==292== in use at exit: 2,651,496 bytes in 24,938 blocks ==292== total heap usage: 321,904 allocs, 296,966 frees, 48,611,780 bytes allocated ==292== ==292== LEAK SUMMARY: ==292== definitely lost: 0 bytes in 0 blocks ==292== indirectly lost: 0 bytes in 0 blocks ==292== possibly lost: 864 bytes in 3 blocks ==292== still reachable: 2,432,842 bytes in 21,416 blocks ==292== of which reachable via heuristic: ==292== stdstring : 43 bytes in 1 blocks ==292== length64 : 400 bytes in 7 blocks ==292== newarray : 5,944 bytes in 26 blocks ==292== suppressed: 214,422 bytes in 3,491 blocks ==292== Rerun with --leak-check=full to see details of leaked memory ==292== ==292== For counts of detected and suppressed errors, rerun with: -v ==292== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==333== Memcheck, a memory error detector ==333== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==333== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==333== Command: /usr/libexec/syncevo-local-sync ==333== Parent PID: 260 ==333== --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --333-- Ignoring non-Dwarf2/3/4 block in .debug_info --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --333-- Last block truncated in .debug_info; ignoring --333-- WARNING: Serious error when reading debug info --333-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --333-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==333== ==333== HEAP SUMMARY: ==333== in use at exit: 2,651,544 bytes in 24,940 blocks ==333== total heap usage: 257,910 allocs, 232,970 frees, 35,923,503 bytes allocated ==333== ==333== LEAK SUMMARY: ==333== definitely lost: 0 bytes in 0 blocks ==333== indirectly lost: 0 bytes in 0 blocks ==333== possibly lost: 864 bytes in 3 blocks ==333== still reachable: 2,432,842 bytes in 21,416 blocks ==333== of which reachable via heuristic: ==333== stdstring : 43 bytes in 1 blocks ==333== length64 : 400 bytes in 7 blocks ==333== newarray : 5,944 bytes in 26 blocks ==333== suppressed: 214,470 bytes in 3,493 blocks ==333== Rerun with --leak-check=full to see details of leaked memory ==333== ==333== For counts of detected and suppressed errors, rerun with: -v ==333== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==407== Memcheck, a memory error detector ==407== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==407== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==407== Command: /usr/libexec/syncevo-local-sync ==407== Parent PID: 260 ==407== --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --407-- Ignoring non-Dwarf2/3/4 block in .debug_info --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --407-- Last block truncated in .debug_info; ignoring --407-- WARNING: Serious error when reading debug info --407-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --407-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==407== ==407== HEAP SUMMARY: ==407== in use at exit: 2,651,496 bytes in 24,938 blocks ==407== total heap usage: 267,547 allocs, 242,609 frees, 36,775,338 bytes allocated ==407== ==407== LEAK SUMMARY: ==407== definitely lost: 0 bytes in 0 blocks ==407== indirectly lost: 0 bytes in 0 blocks ==407== possibly lost: 864 bytes in 3 blocks ==407== still reachable: 2,432,842 bytes in 21,416 blocks ==407== of which reachable via heuristic: ==407== stdstring : 43 bytes in 1 blocks ==407== length64 : 400 bytes in 7 blocks ==407== newarray : 5,944 bytes in 26 blocks ==407== suppressed: 214,422 bytes in 3,491 blocks ==407== Rerun with --leak-check=full to see details of leaked memory ==407== ==407== For counts of detected and suppressed errors, rerun with: -v ==407== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==423== Memcheck, a memory error detector ==423== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==423== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==423== Command: /usr/libexec/syncevo-local-sync ==423== Parent PID: 260 ==423== --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==423== ==423== HEAP SUMMARY: ==423== in use at exit: 2,651,544 bytes in 24,940 blocks ==423== total heap usage: 263,268 allocs, 238,328 frees, 36,352,491 bytes allocated ==423== ==423== LEAK SUMMARY: ==423== definitely lost: 0 bytes in 0 blocks ==423== indirectly lost: 0 bytes in 0 blocks ==423== possibly lost: 864 bytes in 3 blocks ==423== still reachable: 2,432,842 bytes in 21,416 blocks ==423== of which reachable via heuristic: ==423== stdstring : 43 bytes in 1 blocks ==423== length64 : 400 bytes in 7 blocks ==423== newarray : 5,944 bytes in 26 blocks ==423== suppressed: 214,470 bytes in 3,493 blocks ==423== Rerun with --leak-check=full to see details of leaked memory ==423== ==423== For counts of detected and suppressed errors, rerun with: -v ==423== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==465== Memcheck, a memory error detector ==465== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==465== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==465== Command: ./client-test Client::Sync::eds_contact::testItems ==465== Parent PID: 83 ==465== --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --465-- Ignoring non-Dwarf2/3/4 block in .debug_info --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --465-- Last block truncated in .debug_info; ignoring --465-- WARNING: Serious error when reading debug info --465-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --465-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==465== ==465== HEAP SUMMARY: ==465== in use at exit: 3,073,493 bytes in 29,927 blocks ==465== total heap usage: 2,160,710 allocs, 2,130,724 frees, 229,521,255 bytes allocated ==465== ==465== LEAK SUMMARY: ==465== definitely lost: 0 bytes in 0 blocks ==465== indirectly lost: 0 bytes in 0 blocks ==465== possibly lost: 1,632 bytes in 5 blocks ==465== still reachable: 2,497,329 bytes in 21,665 blocks ==465== of which reachable via heuristic: ==465== length64 : 5,152 bytes in 82 blocks ==465== newarray : 6,296 bytes in 48 blocks ==465== suppressed: 490,636 bytes in 7,644 blocks ==465== Rerun with --leak-check=full to see details of leaked memory ==465== ==465== For counts of detected and suppressed errors, rerun with: -v ==465== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==491== Memcheck, a memory error detector ==491== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==491== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==491== Command: /usr/libexec/syncevo-local-sync ==491== Parent PID: 465 ==491== --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --491-- Ignoring non-Dwarf2/3/4 block in .debug_info --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --491-- Last block truncated in .debug_info; ignoring --491-- WARNING: Serious error when reading debug info --491-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --491-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==491== ==491== HEAP SUMMARY: ==491== in use at exit: 2,651,544 bytes in 24,940 blocks ==491== total heap usage: 712,469 allocs, 687,529 frees, 79,890,369 bytes allocated ==491== ==491== LEAK SUMMARY: ==491== definitely lost: 0 bytes in 0 blocks ==491== indirectly lost: 0 bytes in 0 blocks ==491== possibly lost: 864 bytes in 3 blocks ==491== still reachable: 2,432,842 bytes in 21,416 blocks ==491== of which reachable via heuristic: ==491== stdstring : 43 bytes in 1 blocks ==491== length64 : 400 bytes in 7 blocks ==491== newarray : 5,944 bytes in 26 blocks ==491== suppressed: 214,470 bytes in 3,493 blocks ==491== Rerun with --leak-check=full to see details of leaked memory ==491== ==491== For counts of detected and suppressed errors, rerun with: -v ==491== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==512== Memcheck, a memory error detector ==512== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==512== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==512== Command: /usr/libexec/syncevo-local-sync ==512== Parent PID: 465 ==512== --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --512-- Ignoring non-Dwarf2/3/4 block in .debug_info --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --512-- Last block truncated in .debug_info; ignoring --512-- WARNING: Serious error when reading debug info --512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==512== ==512== HEAP SUMMARY: ==512== in use at exit: 2,651,544 bytes in 24,940 blocks ==512== total heap usage: 291,604 allocs, 266,664 frees, 39,078,487 bytes allocated ==512== ==512== LEAK SUMMARY: ==512== definitely lost: 0 bytes in 0 blocks ==512== indirectly lost: 0 bytes in 0 blocks ==512== possibly lost: 864 bytes in 3 blocks ==512== still reachable: 2,432,842 bytes in 21,416 blocks ==512== of which reachable via heuristic: ==512== stdstring : 43 bytes in 1 blocks ==512== length64 : 400 bytes in 7 blocks ==512== newarray : 5,944 bytes in 26 blocks ==512== suppressed: 214,470 bytes in 3,493 blocks ==512== Rerun with --leak-check=full to see details of leaked memory ==512== ==512== For counts of detected and suppressed errors, rerun with: -v ==512== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==549== Memcheck, a memory error detector ==549== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==549== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==549== Command: /usr/libexec/syncevo-local-sync ==549== Parent PID: 465 ==549== --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --549-- Ignoring non-Dwarf2/3/4 block in .debug_info --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --549-- Last block truncated in .debug_info; ignoring --549-- WARNING: Serious error when reading debug info --549-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --549-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==549== ==549== HEAP SUMMARY: ==549== in use at exit: 2,651,496 bytes in 24,938 blocks ==549== total heap usage: 562,744 allocs, 537,806 frees, 61,352,769 bytes allocated ==549== ==549== LEAK SUMMARY: ==549== definitely lost: 0 bytes in 0 blocks ==549== indirectly lost: 0 bytes in 0 blocks ==549== possibly lost: 864 bytes in 3 blocks ==549== still reachable: 2,432,842 bytes in 21,416 blocks ==549== of which reachable via heuristic: ==549== stdstring : 43 bytes in 1 blocks ==549== length64 : 400 bytes in 7 blocks ==549== newarray : 5,944 bytes in 26 blocks ==549== suppressed: 214,422 bytes in 3,491 blocks ==549== Rerun with --leak-check=full to see details of leaked memory ==549== ==549== For counts of detected and suppressed errors, rerun with: -v ==549== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==557== Memcheck, a memory error detector ==557== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==557== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==557== Command: /usr/libexec/syncevo-local-sync ==557== Parent PID: 465 ==557== --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --557-- Ignoring non-Dwarf2/3/4 block in .debug_info --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --557-- Last block truncated in .debug_info; ignoring --557-- WARNING: Serious error when reading debug info --557-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --557-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==557== ==557== HEAP SUMMARY: ==557== in use at exit: 2,651,496 bytes in 24,938 blocks ==557== total heap usage: 604,903 allocs, 579,965 frees, 64,102,978 bytes allocated ==557== ==557== LEAK SUMMARY: ==557== definitely lost: 0 bytes in 0 blocks ==557== indirectly lost: 0 bytes in 0 blocks ==557== possibly lost: 864 bytes in 3 blocks ==557== still reachable: 2,432,842 bytes in 21,416 blocks ==557== of which reachable via heuristic: ==557== stdstring : 43 bytes in 1 blocks ==557== length64 : 400 bytes in 7 blocks ==557== newarray : 5,944 bytes in 26 blocks ==557== suppressed: 214,422 bytes in 3,491 blocks ==557== Rerun with --leak-check=full to see details of leaked memory ==557== ==557== For counts of detected and suppressed errors, rerun with: -v ==557== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==83== Memcheck, a memory error detector ==83== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==83== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==83== Command: ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ==83== Parent PID: 77 ==83== --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --83-- Ignoring non-Dwarf2/3/4 block in .debug_info --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --83-- Last block truncated in .debug_info; ignoring --83-- WARNING: Serious error when reading debug info --83-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --83-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==83== ==83== HEAP SUMMARY: ==83== in use at exit: 554,604 bytes in 4,785 blocks ==83== total heap usage: 150,232 allocs, 145,392 frees, 22,529,549 bytes allocated ==83== ==83== LEAK SUMMARY: ==83== definitely lost: 0 bytes in 0 blocks ==83== indirectly lost: 0 bytes in 0 blocks ==83== possibly lost: 864 bytes in 3 blocks ==83== still reachable: 298,135 bytes in 758 blocks ==83== of which reachable via heuristic: ==83== length64 : 1,072 bytes in 19 blocks ==83== newarray : 5,992 bytes in 29 blocks ==83== suppressed: 244,245 bytes in 3,942 blocks ==83== Rerun with --leak-check=full to see details of leaked memory ==83== ==83== For counts of detected and suppressed errors, rerun with: -v ==83== 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::apple_caldav::testChanges ==92== Parent PID: 83 ==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: 683,887 bytes in 5,337 blocks ==92== total heap usage: 435,589 allocs, 430,159 frees, 51,452,529 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: 1,248 bytes in 4 blocks ==92== still reachable: 426,994 bytes in 1,304 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,285 bytes in 3,947 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: 0 from 0) ==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::apple_caldav::testImport ==96== Parent PID: 83 ==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: 725,107 bytes in 5,499 blocks ==96== total heap usage: 198,513 allocs, 192,955 frees, 33,912,115 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: 468,214 bytes in 1,466 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,285 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: 0 from 0) valgrindcheck: ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges 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=883 wrappercheck-72 line 115: set +e wrappercheck-72 line 109: perl -e 'sleep(60); kill(9, -74);' 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: '[' 883 ']' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 883 wrappercheck-72 line 122: msg= wrappercheck-72 line 123: echo '' wrappercheck-72 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 883 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 883 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=888 wrappercheck-52 line 115: set +e 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: '[' 888 ']' wrappercheck-52 line 109: perl -e 'sleep(60); kill(9, -54);' wwrappercheck-52 line 122: LC_ALL=C wwrappercheck-52 line 122: kill -KILL 888 wrappercheck-52 line 122: msg= wrappercheck-52 line 123: echo '' wrappercheck-52 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 888 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-52 line 127: echo '' wrappercheck-52 line 129: wait 888 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-26 line 100: RET=0 wrappercheck-26 line 101: set -e wrappercheck-26 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-26 line 108: kill -INT -30 wrappercheck-26 line 108: kill -TERM -30 wrappercheck-26 line 108: kill -TERM 30 wrappercheck-26 line 110: KILL_PID=893 wrappercheck-26 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-26 line 115: set +e wrappercheck-26 line 116: wait 30 wrappercheck-26 line 117: SUBRET=143 wrappercheck-26 line 118: case $SUBRET in wrappercheck-26 line 118: SUBRET=0 wrappercheck-26 line 120: SUBRET=0 wrappercheck-26 line 121: '[' 893 ']' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 893 wrappercheck-26 line 122: msg= wrappercheck-26 line 123: echo '' wrappercheck-26 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 893 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 893 wrappercheck-26 line 131: set -e wrappercheck-26 line 132: '[' 0 = 0 ']' wrappercheck-26 line 133: RET=0 wrappercheck-26 line 136: exit 0 wrappercheck-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -23 wrappercheck-18 line 108: kill -TERM -23 wrappercheck-18 line 108: kill -TERM 23 wrappercheck-18 line 110: KILL_PID=898 wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 23 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -23);' wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 898 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 898 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: echo '' wrappercheck-18 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 898 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 898 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 0 = 0 ']' wrappercheck-18 line 133: RET=0 wrappercheck-18 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.nli0lP2Vwf Fri Jan 5 15:42:35 2018 UTC (+ 512.1s / 682.6s) === cleaning up ===