runtests.py-28554 Fri Jan 5 15:30:47 2018 UTC (+ 2.3s / 72.5s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-xenial-amd64/home/eds/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-28554 Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 72.7s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/.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/eds/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/eds/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/eds/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/eds/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/eds/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/eds/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/eds/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/eds/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/eds/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/eds/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/config old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/eds/data runtests.py-28554 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.8s) === starting eds === runtests.py-28554 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.8s) 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/7-eds, /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/7-eds runtests.py-28554 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.8s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/eds (= /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/eds) runtests.py-28554 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/eds; 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/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r eds -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/eds -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 eds ./syncevolution ) Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.3s) === locking resource(s) ['eds'] === Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.7s) property changed: status = acquired Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.7s) using jobserver Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.7s) === allocating 1 job slot(s) === Fri Jan 5 15:30:49 2018 UTC (+ 0.4s / 1.0s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-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 eds ./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: '[' '' ']' 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 eds ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.cQfaUWtfwE/keyring/control: No such file or directory 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=24 wrappercheck-19 line 73: PIDS+=24 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 24 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 eds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-49 line 16: PIDS= wrappercheck-49 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-49 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-49 line 21: DAEMON_LOG= wrappercheck-49 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-49 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-49 line 25: declare -a BACKGROUND wrappercheck-49 line 26: declare -a ENV wrappercheck-49 line 28: '[' 17 -gt 1 ']' wrappercheck-49 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 31: shift wrappercheck-49 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-49 line 53: shift wrappercheck-49 line 28: '[' 15 -gt 1 ']' wrappercheck-49 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 35: shift wrappercheck-49 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-49 line 53: shift wrappercheck-49 line 28: '[' 13 -gt 1 ']' wrappercheck-49 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-49 line 29: case "$1" in wrappercheck-49 line 50: break wrappercheck-49 line 56: '[' 13 -gt 1 ']' wrappercheck-49 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-49 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-49 line 58: shift wrappercheck-49 line 56: '[' 12 -gt 1 ']' wrappercheck-49 line 56: '[' --keep-running '!=' -- ']' wrappercheck-49 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-49 line 58: shift wrappercheck-49 line 56: '[' 11 -gt 1 ']' wrappercheck-49 line 56: '[' -- '!=' -- ']' wrappercheck-49 line 60: shift wrappercheck-49 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-49 line 62: '[' '' ']' wrappercheck-49 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-49 line 72: BACKGROUND_PID=51 wrappercheck-49 line 73: PIDS+=51 wrappercheck-49 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-49 line 75: '[' '' ']' wrappercheck-49 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-49 line 70: set -x wrappercheck-49 line 70: exec wrappercheck-49 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-49 line 93: kill -0 51 wrappercheck-49 line 94: set +e wrappercheck-49 line 95: '[' '' ']' wrappercheck-49 line 99: set -x wrappercheck-49 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh eds ./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 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: set -x wrappercheck-69 line 70: exec wrappercheck-69 line 99: set -x wrappercheck-69 line 99: env /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution + case $TEST in + case $TEST in + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-contacts=eds_contact + backend=evolution-contacts ++ sed -e 's/.*=//' ++ echo evolution-contacts=eds_contact + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ sed -e 's/.*=//' ++ echo evolution-calendar=eds_event + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ 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 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-memos=eds_memo + 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 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-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=155 wrappercheck-69 line 115: set +e wrappercheck-69 line 116: wait 71 wrappercheck-69 line 117: SUBRET=143 wrappercheck-69 line 118: case $SUBRET in wrappercheck-69 line 118: SUBRET=0 wrappercheck-69 line 120: SUBRET=0 wrappercheck-69 line 121: '[' 155 ']' wrappercheck-69 line 109: perl -e 'sleep(60); kill(9, -71);' wwrappercheck-69 line 122: LC_ALL=C wwrappercheck-69 line 122: kill -KILL 155 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: 155 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-69 line 127: echo '' wrappercheck-69 line 129: wait 155 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=160 wrappercheck-49 line 115: set +e wrappercheck-49 line 116: wait 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: '[' 160 ']' wwrappercheck-49 line 122: LC_ALL=C wwrappercheck-49 line 122: kill -KILL 160 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: 160 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-49 line 127: echo '' wrappercheck-49 line 129: wait 160 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 -24 wrappercheck-19 line 108: kill -TERM -24 wrappercheck-19 line 108: kill -TERM 24 wrappercheck-19 line 110: KILL_PID=165 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -24);' wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 24 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: '[' 165 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 165 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 165 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 165 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=170 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 170 ']' wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 170 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: grep -q 'No such process' wrappercheck-15 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 170 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 170 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.cQfaUWtfwE Fri Jan 5 15:30:57 2018 UTC (+ 8.0s / 9.0s) === cleaning up === runtests.py-28554 Fri Jan 5 15:30:57 2018 UTC (+ 9.1s / 81.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/eds; 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/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/eds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r eds -- 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=eds CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/eds -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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo ) Fri Jan 5 15:30:57 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['eds'] === Fri Jan 5 15:30:57 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:30:57 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:30:57 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:42:50 2018 UTC (+ 713.5s / 713.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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.1aRgypfvqd/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 37 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 35 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 35 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 34 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 33 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + 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: '[' 31 -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: '[' 29 -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: '[' 27 -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: '[' 25 -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: '[' 25 -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: '[' 24 -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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + 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: '[' 22 -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: '[' 20 -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: '[' 18 -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: '[' 18 -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: '[' 17 -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: '[' 16 -gt 1 ']' wrappercheck-52 line 56: '[' -- '!=' -- ']' wrappercheck-52 line 60: shift wrappercheck-52 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 62: '[' '' ']' wrappercheck-52 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-52 line 72: BACKGROUND_PID=54 wrappercheck-52 line 73: PIDS+=54 wrappercheck-52 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 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 70: set -x wrappercheck-52 line 70: exec 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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + 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: '[' 14 -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: '[' 12 -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: '[' 12 -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: '[' 11 -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: '[' 10 -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 75: '[' '' ']' wrappercheck-72 line 70: exec 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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo *** 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/eds/valgrind.p77.c%p.out ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo Client::Source::eds_event::testOpen okay Client::Source::eds_event::testIterateTwice okay Client::Source::eds_event::testDelete404 okay Client::Source::eds_event::testReadItem404 okay Client::Source::eds_event::testSimpleInsert okay Client::Source::eds_event::testLocalDeleteAll okay Client::Source::eds_event::testComplexInsert okay Client::Source::eds_event::testInsertTwice okay Client::Source::eds_event::testLocalUpdate okay Client::Source::eds_event::testChanges okay Client::Source::eds_event::testChangesMultiCycles okay Client::Source::eds_event::testImport okay Client::Source::eds_event::testImportDelete okay Client::Source::eds_event::testRemoveProperties okay Client::Source::eds_event::testManyChanges okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsSingle404 okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsMany404 okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_task::testOpen okay Client::Source::eds_task::testIterateTwice okay Client::Source::eds_task::testDelete404 okay Client::Source::eds_task::testReadItem404 okay Client::Source::eds_task::testSimpleInsert okay Client::Source::eds_task::testLocalDeleteAll okay Client::Source::eds_task::testComplexInsert okay Client::Source::eds_task::testInsertTwice okay Client::Source::eds_task::testLocalUpdate okay Client::Source::eds_task::testChanges okay Client::Source::eds_task::testChangesMultiCycles okay Client::Source::eds_task::testImport okay Client::Source::eds_task::testImportDelete okay Client::Source::eds_task::testRemoveProperties okay Client::Source::eds_task::testManyChanges okay Client::Source::eds_contact::testOpen okay Client::Source::eds_contact::testIterateTwice okay Client::Source::eds_contact::testDelete404 okay Client::Source::eds_contact::testReadItem404 okay Client::Source::eds_contact::testSimpleInsert okay Client::Source::eds_contact::testLocalDeleteAll okay Client::Source::eds_contact::testComplexInsert okay Client::Source::eds_contact::testLocalUpdate okay Client::Source::eds_contact::testChanges okay Client::Source::eds_contact::testChangesMultiCycles okay Client::Source::eds_contact::testImport okay Client::Source::eds_contact::testImportDelete okay Client::Source::eds_contact::testRemoveProperties okay Client::Source::eds_contact::testManyChanges okay Client::Source::eds_memo::testOpen okay Client::Source::eds_memo::testIterateTwice okay Client::Source::eds_memo::testDelete404 okay Client::Source::eds_memo::testReadItem404 okay Client::Source::eds_memo::testSimpleInsert okay Client::Source::eds_memo::testLocalDeleteAll okay Client::Source::eds_memo::testComplexInsert okay Client::Source::eds_memo::testLocalUpdate okay Client::Source::eds_memo::testChanges okay Client::Source::eds_memo::testChangesMultiCycles okay Client::Source::eds_memo::testImport okay Client::Source::eds_memo::testImportDelete okay Client::Source::eds_memo::testRemoveProperties okay Client::Source::eds_memo::testManyChanges okay OKvalgrindcheck (77): './client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo' (83): returned 0 ==1038== Memcheck, a memory error detector ==1038== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1038== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1038== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild ==1038== Parent PID: 83 ==1038== --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1038-- Ignoring non-Dwarf2/3/4 block in .debug_info --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1038-- Last block truncated in .debug_info; ignoring --1038-- WARNING: Serious error when reading debug info --1038-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1038-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1038== ==1038== HEAP SUMMARY: ==1038== in use at exit: 1,100,411 bytes in 11,394 blocks ==1038== total heap usage: 364,040 allocs, 352,646 frees, 28,943,335 bytes allocated ==1038== ==1038== LEAK SUMMARY: ==1038== definitely lost: 0 bytes in 0 blocks ==1038== indirectly lost: 0 bytes in 0 blocks ==1038== possibly lost: 1,248 bytes in 4 blocks ==1038== still reachable: 501,289 bytes in 3,254 blocks ==1038== of which reachable via heuristic: ==1038== length64 : 4,744 bytes in 76 blocks ==1038== newarray : 6,312 bytes in 49 blocks ==1038== suppressed: 534,850 bytes in 7,653 blocks ==1038== Rerun with --leak-check=full to see details of leaked memory ==1038== ==1038== For counts of detected and suppressed errors, rerun with: -v ==1038== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 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::eds_event::testIterateTwice ==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-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --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/evolution-data-server/camel-providers/libcamellocal.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --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/evolution-data-server/camel-providers/libcamelimapx.so: --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/evolution-data-server/camel-providers/libcamelimapx.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --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/evolution-data-server/camel-providers/libcamelsmtp.so: --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/evolution-data-server/camel-providers/libcamelsmtp.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --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/evolution-data-server/camel-providers/libcamelsendmail.so: --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/evolution-data-server/camel-providers/libcamelsendmail.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --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/evolution-data-server/camel-providers/libcamelnntp.so: --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/evolution-data-server/camel-providers/libcamelnntp.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --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/evolution-data-server/camel-providers/libcamelpop3.so: --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/evolution-data-server/camel-providers/libcamelpop3.so: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==108== ==108== HEAP SUMMARY: ==108== in use at exit: 947,438 bytes in 8,976 blocks ==108== total heap usage: 139,783 allocs, 130,807 frees, 13,457,469 bytes allocated ==108== ==108== LEAK SUMMARY: ==108== definitely lost: 0 bytes in 0 blocks ==108== indirectly lost: 0 bytes in 0 blocks ==108== possibly lost: 1,248 bytes in 4 blocks ==108== still reachable: 346,829 bytes in 802 blocks ==108== of which reachable via heuristic: ==108== length64 : 4,744 bytes in 76 blocks ==108== newarray : 6,312 bytes in 49 blocks ==108== suppressed: 536,337 bytes in 7,687 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) ==1112== Memcheck, a memory error detector ==1112== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1112== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1112== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==1112== Parent PID: 83 ==1112== --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1112-- Ignoring non-Dwarf2/3/4 block in .debug_info --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1112-- Last block truncated in .debug_info; ignoring --1112-- WARNING: Serious error when reading debug info --1112-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1112== ==1112== HEAP SUMMARY: ==1112== in use at exit: 1,101,860 bytes in 11,426 blocks ==1112== total heap usage: 309,668 allocs, 298,242 frees, 26,417,026 bytes allocated ==1112== ==1112== LEAK SUMMARY: ==1112== definitely lost: 0 bytes in 0 blocks ==1112== indirectly lost: 0 bytes in 0 blocks ==1112== possibly lost: 1,248 bytes in 4 blocks ==1112== still reachable: 501,469 bytes in 3,253 blocks ==1112== of which reachable via heuristic: ==1112== length64 : 4,744 bytes in 76 blocks ==1112== newarray : 6,312 bytes in 49 blocks ==1112== suppressed: 536,119 bytes in 7,686 blocks ==1112== Rerun with --leak-check=full to see details of leaked memory ==1112== ==1112== For counts of detected and suppressed errors, rerun with: -v ==1112== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1174== Memcheck, a memory error detector ==1174== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1174== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1174== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent ==1174== Parent PID: 83 ==1174== --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1174-- Ignoring non-Dwarf2/3/4 block in .debug_info --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1174-- Last block truncated in .debug_info; ignoring --1174-- WARNING: Serious error when reading debug info --1174-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1174-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1174== ==1174== HEAP SUMMARY: ==1174== in use at exit: 1,106,399 bytes in 11,506 blocks ==1174== total heap usage: 347,706 allocs, 336,200 frees, 28,041,169 bytes allocated ==1174== ==1174== LEAK SUMMARY: ==1174== definitely lost: 0 bytes in 0 blocks ==1174== indirectly lost: 0 bytes in 0 blocks ==1174== possibly lost: 1,248 bytes in 4 blocks ==1174== still reachable: 505,636 bytes in 3,322 blocks ==1174== of which reachable via heuristic: ==1174== length64 : 4,744 bytes in 76 blocks ==1174== newarray : 6,312 bytes in 49 blocks ==1174== suppressed: 536,491 bytes in 7,697 blocks ==1174== Rerun with --leak-check=full to see details of leaked memory ==1174== ==1174== For counts of detected and suppressed errors, rerun with: -v ==1174== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1245== Memcheck, a memory error detector ==1245== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1245== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1245== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1245== Parent PID: 83 ==1245== --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1245-- Ignoring non-Dwarf2/3/4 block in .debug_info --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1245-- Last block truncated in .debug_info; ignoring --1245-- WARNING: Serious error when reading debug info --1245-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1245-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1245== ==1245== HEAP SUMMARY: ==1245== in use at exit: 1,103,574 bytes in 11,454 blocks ==1245== total heap usage: 373,182 allocs, 361,728 frees, 30,166,719 bytes allocated ==1245== ==1245== LEAK SUMMARY: ==1245== definitely lost: 0 bytes in 0 blocks ==1245== indirectly lost: 0 bytes in 0 blocks ==1245== possibly lost: 1,248 bytes in 4 blocks ==1245== still reachable: 502,987 bytes in 3,279 blocks ==1245== of which reachable via heuristic: ==1245== length64 : 4,744 bytes in 76 blocks ==1245== newarray : 6,312 bytes in 49 blocks ==1245== suppressed: 536,315 bytes in 7,688 blocks ==1245== Rerun with --leak-check=full to see details of leaked memory ==1245== ==1245== For counts of detected and suppressed errors, rerun with: -v ==1245== 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::eds_event::testDelete404 ==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-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --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/evolution-data-server/camel-providers/libcamellocal.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --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/evolution-data-server/camel-providers/libcamelimapx.so: --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/evolution-data-server/camel-providers/libcamelimapx.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --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/evolution-data-server/camel-providers/libcamelsmtp.so: --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/evolution-data-server/camel-providers/libcamelsmtp.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --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/evolution-data-server/camel-providers/libcamelsendmail.so: --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/evolution-data-server/camel-providers/libcamelsendmail.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --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/evolution-data-server/camel-providers/libcamelnntp.so: --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/evolution-data-server/camel-providers/libcamelnntp.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --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/evolution-data-server/camel-providers/libcamelpop3.so: --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/evolution-data-server/camel-providers/libcamelpop3.so: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==128== ==128== HEAP SUMMARY: ==128== in use at exit: 942,955 bytes in 8,899 blocks ==128== total heap usage: 140,433 allocs, 131,534 frees, 13,478,418 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: 343,707 bytes in 754 blocks ==128== of which reachable via heuristic: ==128== length64 : 4,744 bytes in 76 blocks ==128== newarray : 6,312 bytes in 49 blocks ==128== suppressed: 534,976 bytes in 7,658 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) ==1329== Memcheck, a memory error detector ==1329== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1329== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1329== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1329== Parent PID: 83 ==1329== --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1329-- Ignoring non-Dwarf2/3/4 block in .debug_info --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1329-- Last block truncated in .debug_info; ignoring --1329-- WARNING: Serious error when reading debug info --1329-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1329-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1329== ==1329== HEAP SUMMARY: ==1329== in use at exit: 1,101,804 bytes in 11,424 blocks ==1329== total heap usage: 393,227 allocs, 381,803 frees, 31,293,610 bytes allocated ==1329== ==1329== LEAK SUMMARY: ==1329== definitely lost: 0 bytes in 0 blocks ==1329== indirectly lost: 0 bytes in 0 blocks ==1329== possibly lost: 1,248 bytes in 4 blocks ==1329== still reachable: 501,392 bytes in 3,253 blocks ==1329== of which reachable via heuristic: ==1329== length64 : 4,744 bytes in 76 blocks ==1329== newarray : 6,312 bytes in 49 blocks ==1329== suppressed: 536,140 bytes in 7,684 blocks ==1329== Rerun with --leak-check=full to see details of leaked memory ==1329== ==1329== For counts of detected and suppressed errors, rerun with: -v ==1329== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1418== Memcheck, a memory error detector ==1418== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1418== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1418== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1418== Parent PID: 83 ==1418== --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1418-- Ignoring non-Dwarf2/3/4 block in .debug_info --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1418-- Last block truncated in .debug_info; ignoring --1418-- WARNING: Serious error when reading debug info --1418-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1418-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1418== ==1418== HEAP SUMMARY: ==1418== in use at exit: 1,102,495 bytes in 11,449 blocks ==1418== total heap usage: 412,352 allocs, 400,903 frees, 32,387,727 bytes allocated ==1418== ==1418== LEAK SUMMARY: ==1418== definitely lost: 0 bytes in 0 blocks ==1418== indirectly lost: 0 bytes in 0 blocks ==1418== possibly lost: 480 bytes in 2 blocks ==1418== still reachable: 493,744 bytes in 3,100 blocks ==1418== of which reachable via heuristic: ==1418== length64 : 4,744 bytes in 76 blocks ==1418== newarray : 6,312 bytes in 49 blocks ==1418== suppressed: 545,247 bytes in 7,864 blocks ==1418== Rerun with --leak-check=full to see details of leaked memory ==1418== ==1418== For counts of detected and suppressed errors, rerun with: -v ==1418== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==148== Memcheck, a memory error detector ==148== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==148== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==148== Command: ./client-test Client::Source::eds_event::testReadItem404 ==148== Parent PID: 83 ==148== --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --148-- Ignoring non-Dwarf2/3/4 block in .debug_info --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --148-- Last block truncated in .debug_info; ignoring --148-- WARNING: Serious error when reading debug info --148-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --148-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==148== ==148== HEAP SUMMARY: ==148== in use at exit: 949,265 bytes in 9,006 blocks ==148== total heap usage: 140,032 allocs, 131,026 frees, 13,463,641 bytes allocated ==148== ==148== LEAK SUMMARY: ==148== definitely lost: 0 bytes in 0 blocks ==148== indirectly lost: 0 bytes in 0 blocks ==148== possibly lost: 1,248 bytes in 4 blocks ==148== still reachable: 348,304 bytes in 826 blocks ==148== of which reachable via heuristic: ==148== length64 : 4,744 bytes in 76 blocks ==148== newarray : 6,312 bytes in 49 blocks ==148== suppressed: 536,689 bytes in 7,693 blocks ==148== Rerun with --leak-check=full to see details of leaked memory ==148== ==148== For counts of detected and suppressed errors, rerun with: -v ==148== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1511== Memcheck, a memory error detector ==1511== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1511== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1511== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1511== Parent PID: 83 ==1511== --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1511-- Ignoring non-Dwarf2/3/4 block in .debug_info --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1511-- Last block truncated in .debug_info; ignoring --1511-- WARNING: Serious error when reading debug info --1511-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1511-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1511== ==1511== HEAP SUMMARY: ==1511== in use at exit: 1,101,999 bytes in 11,449 blocks ==1511== total heap usage: 373,047 allocs, 361,598 frees, 30,157,375 bytes allocated ==1511== ==1511== LEAK SUMMARY: ==1511== definitely lost: 0 bytes in 0 blocks ==1511== indirectly lost: 0 bytes in 0 blocks ==1511== possibly lost: 480 bytes in 2 blocks ==1511== still reachable: 492,599 bytes in 3,074 blocks ==1511== of which reachable via heuristic: ==1511== length64 : 4,744 bytes in 76 blocks ==1511== newarray : 6,312 bytes in 49 blocks ==1511== suppressed: 545,896 bytes in 7,890 blocks ==1511== Rerun with --leak-check=full to see details of leaked memory ==1511== ==1511== For counts of detected and suppressed errors, rerun with: -v ==1511== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1595== Memcheck, a memory error detector ==1595== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1595== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1595== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1595== Parent PID: 83 ==1595== --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1595-- Ignoring non-Dwarf2/3/4 block in .debug_info --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1595-- Last block truncated in .debug_info; ignoring --1595-- WARNING: Serious error when reading debug info --1595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1595== ==1595== HEAP SUMMARY: ==1595== in use at exit: 1,101,861 bytes in 11,426 blocks ==1595== total heap usage: 373,226 allocs, 361,800 frees, 30,126,445 bytes allocated ==1595== ==1595== LEAK SUMMARY: ==1595== definitely lost: 0 bytes in 0 blocks ==1595== indirectly lost: 0 bytes in 0 blocks ==1595== possibly lost: 1,248 bytes in 4 blocks ==1595== still reachable: 501,618 bytes in 3,257 blocks ==1595== of which reachable via heuristic: ==1595== length64 : 4,744 bytes in 76 blocks ==1595== newarray : 6,312 bytes in 49 blocks ==1595== suppressed: 535,971 bytes in 7,682 blocks ==1595== Rerun with --leak-check=full to see details of leaked memory ==1595== ==1595== For counts of detected and suppressed errors, rerun with: -v ==1595== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1679== Memcheck, a memory error detector ==1679== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1679== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1679== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1679== Parent PID: 83 ==1679== --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1679-- Ignoring non-Dwarf2/3/4 block in .debug_info --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1679-- Last block truncated in .debug_info; ignoring --1679-- WARNING: Serious error when reading debug info --1679-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1679-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1679== ==1679== HEAP SUMMARY: ==1679== in use at exit: 1,105,110 bytes in 11,478 blocks ==1679== total heap usage: 348,254 allocs, 336,776 frees, 28,108,031 bytes allocated ==1679== ==1679== LEAK SUMMARY: ==1679== definitely lost: 0 bytes in 0 blocks ==1679== indirectly lost: 0 bytes in 0 blocks ==1679== possibly lost: 1,248 bytes in 4 blocks ==1679== still reachable: 504,651 bytes in 3,300 blocks ==1679== of which reachable via heuristic: ==1679== length64 : 4,744 bytes in 76 blocks ==1679== newarray : 6,312 bytes in 49 blocks ==1679== suppressed: 536,187 bytes in 7,691 blocks ==1679== Rerun with --leak-check=full to see details of leaked memory ==1679== ==1679== For counts of detected and suppressed errors, rerun with: -v ==1679== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==168== Memcheck, a memory error detector ==168== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==168== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==168== Command: ./client-test Client::Source::eds_event::testSimpleInsert ==168== Parent PID: 83 ==168== --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --168-- Ignoring non-Dwarf2/3/4 block in .debug_info --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --168-- Last block truncated in .debug_info; ignoring --168-- WARNING: Serious error when reading debug info --168-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --168-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==168== ==168== HEAP SUMMARY: ==168== in use at exit: 945,951 bytes in 8,975 blocks ==168== total heap usage: 160,892 allocs, 151,917 frees, 14,680,202 bytes allocated ==168== ==168== LEAK SUMMARY: ==168== definitely lost: 0 bytes in 0 blocks ==168== indirectly lost: 0 bytes in 0 blocks ==168== possibly lost: 1,248 bytes in 4 blocks ==168== still reachable: 344,235 bytes in 756 blocks ==168== of which reachable via heuristic: ==168== length64 : 4,744 bytes in 76 blocks ==168== newarray : 6,312 bytes in 49 blocks ==168== suppressed: 537,444 bytes in 7,732 blocks ==168== Rerun with --leak-check=full to see details of leaked memory ==168== ==168== For counts of detected and suppressed errors, rerun with: -v ==168== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1759== Memcheck, a memory error detector ==1759== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1759== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1759== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1759== Parent PID: 83 ==1759== --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1759-- Ignoring non-Dwarf2/3/4 block in .debug_info --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1759-- Last block truncated in .debug_info; ignoring --1759-- WARNING: Serious error when reading debug info --1759-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1759-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1759== ==1759== HEAP SUMMARY: ==1759== in use at exit: 1,100,654 bytes in 11,421 blocks ==1759== total heap usage: 348,799 allocs, 337,378 frees, 28,092,924 bytes allocated ==1759== ==1759== LEAK SUMMARY: ==1759== definitely lost: 0 bytes in 0 blocks ==1759== indirectly lost: 0 bytes in 0 blocks ==1759== possibly lost: 1,248 bytes in 4 blocks ==1759== still reachable: 500,125 bytes in 3,229 blocks ==1759== of which reachable via heuristic: ==1759== length64 : 4,744 bytes in 76 blocks ==1759== newarray : 6,312 bytes in 49 blocks ==1759== suppressed: 536,257 bytes in 7,705 blocks ==1759== Rerun with --leak-check=full to see details of leaked memory ==1759== ==1759== For counts of detected and suppressed errors, rerun with: -v ==1759== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1839== Memcheck, a memory error detector ==1839== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1839== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1839== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==1839== Parent PID: 83 ==1839== --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1839-- Ignoring non-Dwarf2/3/4 block in .debug_info --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1839-- Last block truncated in .debug_info; ignoring --1839-- WARNING: Serious error when reading debug info --1839-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1839-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1839== ==1839== HEAP SUMMARY: ==1839== in use at exit: 1,105,226 bytes in 11,480 blocks ==1839== total heap usage: 260,832 allocs, 249,352 frees, 22,333,873 bytes allocated ==1839== ==1839== LEAK SUMMARY: ==1839== definitely lost: 0 bytes in 0 blocks ==1839== indirectly lost: 0 bytes in 0 blocks ==1839== possibly lost: 480 bytes in 2 blocks ==1839== still reachable: 496,689 bytes in 3,146 blocks ==1839== of which reachable via heuristic: ==1839== length64 : 4,744 bytes in 76 blocks ==1839== newarray : 6,312 bytes in 49 blocks ==1839== suppressed: 545,033 bytes in 7,849 blocks ==1839== Rerun with --leak-check=full to see details of leaked memory ==1839== ==1839== For counts of detected and suppressed errors, rerun with: -v ==1839== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1893== Memcheck, a memory error detector ==1893== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1893== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1893== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1893== Parent PID: 83 ==1893== --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1893-- Ignoring non-Dwarf2/3/4 block in .debug_info --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1893-- Last block truncated in .debug_info; ignoring --1893-- WARNING: Serious error when reading debug info --1893-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1893-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1893== ==1893== HEAP SUMMARY: ==1893== in use at exit: 1,103,519 bytes in 11,452 blocks ==1893== total heap usage: 423,609 allocs, 412,157 frees, 34,358,892 bytes allocated ==1893== ==1893== LEAK SUMMARY: ==1893== definitely lost: 0 bytes in 0 blocks ==1893== indirectly lost: 0 bytes in 0 blocks ==1893== possibly lost: 1,248 bytes in 4 blocks ==1893== still reachable: 503,052 bytes in 3,280 blocks ==1893== of which reachable via heuristic: ==1893== length64 : 4,744 bytes in 76 blocks ==1893== newarray : 6,312 bytes in 49 blocks ==1893== suppressed: 536,195 bytes in 7,685 blocks ==1893== Rerun with --leak-check=full to see details of leaked memory ==1893== ==1893== For counts of detected and suppressed errors, rerun with: -v ==1893== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==194== Memcheck, a memory error detector ==194== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==194== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==194== Command: ./client-test Client::Source::eds_event::testLocalDeleteAll ==194== Parent PID: 83 ==194== --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --194-- Ignoring non-Dwarf2/3/4 block in .debug_info --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --194-- Last block truncated in .debug_info; ignoring --194-- WARNING: Serious error when reading debug info --194-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --194-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==194== ==194== HEAP SUMMARY: ==194== in use at exit: 949,452 bytes in 9,023 blocks ==194== total heap usage: 201,820 allocs, 192,797 frees, 17,045,954 bytes allocated ==194== ==194== LEAK SUMMARY: ==194== definitely lost: 0 bytes in 0 blocks ==194== indirectly lost: 0 bytes in 0 blocks ==194== possibly lost: 1,248 bytes in 4 blocks ==194== still reachable: 348,288 bytes in 828 blocks ==194== of which reachable via heuristic: ==194== length64 : 4,744 bytes in 76 blocks ==194== newarray : 6,312 bytes in 49 blocks ==194== suppressed: 536,724 bytes in 7,706 blocks ==194== Rerun with --leak-check=full to see details of leaked memory ==194== ==194== For counts of detected and suppressed errors, rerun with: -v ==194== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1989== Memcheck, a memory error detector ==1989== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1989== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1989== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1989== Parent PID: 83 ==1989== --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1989-- Ignoring non-Dwarf2/3/4 block in .debug_info --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1989-- Last block truncated in .debug_info; ignoring --1989-- WARNING: Serious error when reading debug info --1989-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1989-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1989== ==1989== HEAP SUMMARY: ==1989== in use at exit: 1,106,999 bytes in 11,508 blocks ==1989== total heap usage: 424,565 allocs, 413,057 frees, 34,407,347 bytes allocated ==1989== ==1989== LEAK SUMMARY: ==1989== definitely lost: 0 bytes in 0 blocks ==1989== indirectly lost: 0 bytes in 0 blocks ==1989== possibly lost: 1,248 bytes in 4 blocks ==1989== still reachable: 505,996 bytes in 3,327 blocks ==1989== of which reachable via heuristic: ==1989== length64 : 4,744 bytes in 76 blocks ==1989== newarray : 6,312 bytes in 49 blocks ==1989== suppressed: 536,731 bytes in 7,694 blocks ==1989== Rerun with --leak-check=full to see details of leaked memory ==1989== ==1989== For counts of detected and suppressed errors, rerun with: -v ==1989== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2083== Memcheck, a memory error detector ==2083== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2083== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2083== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsSingle404 ==2083== Parent PID: 83 ==2083== --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2083-- Ignoring non-Dwarf2/3/4 block in .debug_info --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2083-- Last block truncated in .debug_info; ignoring --2083-- WARNING: Serious error when reading debug info --2083-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2083== ==2083== HEAP SUMMARY: ==2083== in use at exit: 1,103,896 bytes in 11,479 blocks ==2083== total heap usage: 227,581 allocs, 216,102 frees, 19,152,365 bytes allocated ==2083== ==2083== LEAK SUMMARY: ==2083== definitely lost: 0 bytes in 0 blocks ==2083== indirectly lost: 0 bytes in 0 blocks ==2083== possibly lost: 480 bytes in 2 blocks ==2083== still reachable: 493,944 bytes in 3,101 blocks ==2083== of which reachable via heuristic: ==2083== length64 : 4,744 bytes in 76 blocks ==2083== newarray : 6,312 bytes in 49 blocks ==2083== suppressed: 546,448 bytes in 7,893 blocks ==2083== Rerun with --leak-check=full to see details of leaked memory ==2083== ==2083== For counts of detected and suppressed errors, rerun with: -v ==2083== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2121== Memcheck, a memory error detector ==2121== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2121== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2121== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsMany404 ==2121== Parent PID: 83 ==2121== --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2121-- Ignoring non-Dwarf2/3/4 block in .debug_info --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2121-- Last block truncated in .debug_info; ignoring --2121-- WARNING: Serious error when reading debug info --2121-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2121== ==2121== HEAP SUMMARY: ==2121== in use at exit: 1,105,226 bytes in 11,480 blocks ==2121== total heap usage: 274,291 allocs, 262,811 frees, 22,496,494 bytes allocated ==2121== ==2121== LEAK SUMMARY: ==2121== definitely lost: 0 bytes in 0 blocks ==2121== indirectly lost: 0 bytes in 0 blocks ==2121== possibly lost: 1,248 bytes in 4 blocks ==2121== still reachable: 504,415 bytes in 3,302 blocks ==2121== of which reachable via heuristic: ==2121== length64 : 4,744 bytes in 76 blocks ==2121== newarray : 6,312 bytes in 49 blocks ==2121== suppressed: 536,539 bytes in 7,691 blocks ==2121== Rerun with --leak-check=full to see details of leaked memory ==2121== ==2121== For counts of detected and suppressed errors, rerun with: -v ==2121== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2169== Memcheck, a memory error detector ==2169== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2169== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2169== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent ==2169== Parent PID: 83 ==2169== --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2169-- Ignoring non-Dwarf2/3/4 block in .debug_info --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2169-- Last block truncated in .debug_info; ignoring --2169-- WARNING: Serious error when reading debug info --2169-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2169-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2169== ==2169== HEAP SUMMARY: ==2169== in use at exit: 1,101,865 bytes in 11,427 blocks ==2169== total heap usage: 317,422 allocs, 305,995 frees, 25,002,511 bytes allocated ==2169== ==2169== LEAK SUMMARY: ==2169== definitely lost: 0 bytes in 0 blocks ==2169== indirectly lost: 0 bytes in 0 blocks ==2169== possibly lost: 1,248 bytes in 4 blocks ==2169== still reachable: 501,622 bytes in 3,258 blocks ==2169== of which reachable via heuristic: ==2169== length64 : 4,744 bytes in 76 blocks ==2169== newarray : 6,312 bytes in 49 blocks ==2169== suppressed: 535,971 bytes in 7,682 blocks ==2169== Rerun with --leak-check=full to see details of leaked memory ==2169== ==2169== For counts of detected and suppressed errors, rerun with: -v ==2169== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2236== Memcheck, a memory error detector ==2236== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2236== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2236== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild ==2236== Parent PID: 83 ==2236== --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2236-- Ignoring non-Dwarf2/3/4 block in .debug_info --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2236-- Last block truncated in .debug_info; ignoring --2236-- WARNING: Serious error when reading debug info --2236-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2236-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2236== ==2236== HEAP SUMMARY: ==2236== in use at exit: 1,105,162 bytes in 11,481 blocks ==2236== total heap usage: 314,143 allocs, 302,662 frees, 24,798,496 bytes allocated ==2236== ==2236== LEAK SUMMARY: ==2236== definitely lost: 0 bytes in 0 blocks ==2236== indirectly lost: 0 bytes in 0 blocks ==2236== possibly lost: 1,248 bytes in 4 blocks ==2236== still reachable: 504,655 bytes in 3,301 blocks ==2236== of which reachable via heuristic: ==2236== length64 : 4,744 bytes in 76 blocks ==2236== newarray : 6,312 bytes in 49 blocks ==2236== suppressed: 536,235 bytes in 7,693 blocks ==2236== Rerun with --leak-check=full to see details of leaked memory ==2236== ==2236== For counts of detected and suppressed errors, rerun with: -v ==2236== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==228== Memcheck, a memory error detector ==228== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==228== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==228== Command: ./client-test Client::Source::eds_event::testComplexInsert ==228== Parent PID: 83 ==228== --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --228-- Ignoring non-Dwarf2/3/4 block in .debug_info --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --228-- Last block truncated in .debug_info; ignoring --228-- WARNING: Serious error when reading debug info --228-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --228-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==228== ==228== HEAP SUMMARY: ==228== in use at exit: 947,352 bytes in 8,980 blocks ==228== total heap usage: 219,024 allocs, 210,044 frees, 18,023,379 bytes allocated ==228== ==228== LEAK SUMMARY: ==228== definitely lost: 0 bytes in 0 blocks ==228== indirectly lost: 0 bytes in 0 blocks ==228== possibly lost: 1,248 bytes in 4 blocks ==228== still reachable: 346,999 bytes in 800 blocks ==228== of which reachable via heuristic: ==228== length64 : 4,744 bytes in 76 blocks ==228== newarray : 6,312 bytes in 49 blocks ==228== suppressed: 536,081 bytes in 7,693 blocks ==228== Rerun with --leak-check=full to see details of leaked memory ==228== ==228== For counts of detected and suppressed errors, rerun with: -v ==228== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2302== Memcheck, a memory error detector ==2302== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2302== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2302== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==2302== Parent PID: 83 ==2302== --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2302-- Ignoring non-Dwarf2/3/4 block in .debug_info --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2302-- Last block truncated in .debug_info; ignoring --2302-- WARNING: Serious error when reading debug info --2302-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2302-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2302== ==2302== HEAP SUMMARY: ==2302== in use at exit: 1,093,550 bytes in 11,287 blocks ==2302== total heap usage: 365,521 allocs, 354,234 frees, 29,040,959 bytes allocated ==2302== ==2302== LEAK SUMMARY: ==2302== definitely lost: 0 bytes in 0 blocks ==2302== indirectly lost: 0 bytes in 0 blocks ==2302== possibly lost: 1,248 bytes in 4 blocks ==2302== still reachable: 499,228 bytes in 3,247 blocks ==2302== of which reachable via heuristic: ==2302== length64 : 4,744 bytes in 76 blocks ==2302== newarray : 6,312 bytes in 49 blocks ==2302== suppressed: 530,050 bytes in 7,553 blocks ==2302== Rerun with --leak-check=full to see details of leaked memory ==2302== ==2302== For counts of detected and suppressed errors, rerun with: -v ==2302== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2377== Memcheck, a memory error detector ==2377== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2377== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2377== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==2377== Parent PID: 83 ==2377== --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2377-- Ignoring non-Dwarf2/3/4 block in .debug_info --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2377-- Last block truncated in .debug_info; ignoring --2377-- WARNING: Serious error when reading debug info --2377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2377== ==2377== HEAP SUMMARY: ==2377== in use at exit: 1,105,286 bytes in 11,483 blocks ==2377== total heap usage: 310,539 allocs, 299,056 frees, 26,501,774 bytes allocated ==2377== ==2377== LEAK SUMMARY: ==2377== definitely lost: 0 bytes in 0 blocks ==2377== indirectly lost: 0 bytes in 0 blocks ==2377== possibly lost: 1,248 bytes in 4 blocks ==2377== still reachable: 504,218 bytes in 3,300 blocks ==2377== of which reachable via heuristic: ==2377== length64 : 4,744 bytes in 76 blocks ==2377== newarray : 6,312 bytes in 49 blocks ==2377== suppressed: 536,796 bytes in 7,696 blocks ==2377== Rerun with --leak-check=full to see details of leaked memory ==2377== ==2377== For counts of detected and suppressed errors, rerun with: -v ==2377== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2439== Memcheck, a memory error detector ==2439== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2439== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2439== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==2439== Parent PID: 83 ==2439== --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2439-- Ignoring non-Dwarf2/3/4 block in .debug_info --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2439-- Last block truncated in .debug_info; ignoring --2439-- WARNING: Serious error when reading debug info --2439-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2439-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2439== ==2439== HEAP SUMMARY: ==2439== in use at exit: 1,102,351 bytes in 11,436 blocks ==2439== total heap usage: 349,941 allocs, 338,505 frees, 28,179,573 bytes allocated ==2439== ==2439== LEAK SUMMARY: ==2439== definitely lost: 0 bytes in 0 blocks ==2439== indirectly lost: 0 bytes in 0 blocks ==2439== possibly lost: 1,248 bytes in 4 blocks ==2439== still reachable: 501,922 bytes in 3,257 blocks ==2439== of which reachable via heuristic: ==2439== length64 : 4,744 bytes in 76 blocks ==2439== newarray : 6,312 bytes in 49 blocks ==2439== suppressed: 536,157 bytes in 7,692 blocks ==2439== Rerun with --leak-check=full to see details of leaked memory ==2439== ==2439== For counts of detected and suppressed errors, rerun with: -v ==2439== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2510== Memcheck, a memory error detector ==2510== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2510== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2510== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2510== Parent PID: 83 ==2510== --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2510-- Ignoring non-Dwarf2/3/4 block in .debug_info --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2510-- Last block truncated in .debug_info; ignoring --2510-- WARNING: Serious error when reading debug info --2510-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2510== ==2510== HEAP SUMMARY: ==2510== in use at exit: 1,108,633 bytes in 11,536 blocks ==2510== total heap usage: 374,148 allocs, 362,612 frees, 30,266,432 bytes allocated ==2510== ==2510== LEAK SUMMARY: ==2510== definitely lost: 0 bytes in 0 blocks ==2510== indirectly lost: 0 bytes in 0 blocks ==2510== possibly lost: 1,248 bytes in 4 blocks ==2510== still reachable: 507,237 bytes in 3,341 blocks ==2510== of which reachable via heuristic: ==2510== length64 : 4,744 bytes in 76 blocks ==2510== newarray : 6,312 bytes in 49 blocks ==2510== suppressed: 537,124 bytes in 7,708 blocks ==2510== Rerun with --leak-check=full to see details of leaked memory ==2510== ==2510== For counts of detected and suppressed errors, rerun with: -v ==2510== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2595== Memcheck, a memory error detector ==2595== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2595== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2595== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2595== Parent PID: 83 ==2595== --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2595-- Ignoring non-Dwarf2/3/4 block in .debug_info --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2595-- Last block truncated in .debug_info; ignoring --2595-- WARNING: Serious error when reading debug info --2595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2595== ==2595== HEAP SUMMARY: ==2595== in use at exit: 1,107,003 bytes in 11,509 blocks ==2595== total heap usage: 394,557 allocs, 383,048 frees, 31,410,245 bytes allocated ==2595== ==2595== LEAK SUMMARY: ==2595== definitely lost: 0 bytes in 0 blocks ==2595== indirectly lost: 0 bytes in 0 blocks ==2595== possibly lost: 1,248 bytes in 4 blocks ==2595== still reachable: 505,936 bytes in 3,327 blocks ==2595== of which reachable via heuristic: ==2595== length64 : 4,744 bytes in 76 blocks ==2595== newarray : 6,312 bytes in 49 blocks ==2595== suppressed: 536,795 bytes in 7,695 blocks ==2595== Rerun with --leak-check=full to see details of leaked memory ==2595== ==2595== For counts of detected and suppressed errors, rerun with: -v ==2595== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==266== Memcheck, a memory error detector ==266== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==266== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==266== Command: ./client-test Client::Source::eds_event::testInsertTwice ==266== Parent PID: 83 ==266== --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --266-- Ignoring non-Dwarf2/3/4 block in .debug_info --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --266-- Last block truncated in .debug_info; ignoring --266-- WARNING: Serious error when reading debug info --266-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --266-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==266== ==266== HEAP SUMMARY: ==266== in use at exit: 941,250 bytes in 8,871 blocks ==266== total heap usage: 182,176 allocs, 173,305 frees, 15,902,750 bytes allocated ==266== ==266== LEAK SUMMARY: ==266== definitely lost: 0 bytes in 0 blocks ==266== indirectly lost: 0 bytes in 0 blocks ==266== possibly lost: 480 bytes in 2 blocks ==266== still reachable: 335,354 bytes in 593 blocks ==266== of which reachable via heuristic: ==266== length64 : 4,744 bytes in 76 blocks ==266== newarray : 6,312 bytes in 49 blocks ==266== suppressed: 542,392 bytes in 7,793 blocks ==266== Rerun with --leak-check=full to see details of leaked memory ==266== ==266== For counts of detected and suppressed errors, rerun with: -v ==266== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2684== Memcheck, a memory error detector ==2684== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2684== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2684== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2684== Parent PID: 83 ==2684== --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2684-- Ignoring non-Dwarf2/3/4 block in .debug_info --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2684-- Last block truncated in .debug_info; ignoring --2684-- WARNING: Serious error when reading debug info --2684-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2684-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2684== ==2684== HEAP SUMMARY: ==2684== in use at exit: 1,101,738 bytes in 11,427 blocks ==2684== total heap usage: 413,142 allocs, 401,715 frees, 32,467,782 bytes allocated ==2684== ==2684== LEAK SUMMARY: ==2684== definitely lost: 0 bytes in 0 blocks ==2684== indirectly lost: 0 bytes in 0 blocks ==2684== possibly lost: 1,248 bytes in 4 blocks ==2684== still reachable: 501,647 bytes in 3,253 blocks ==2684== of which reachable via heuristic: ==2684== length64 : 4,744 bytes in 76 blocks ==2684== newarray : 6,312 bytes in 49 blocks ==2684== suppressed: 535,819 bytes in 7,687 blocks ==2684== Rerun with --leak-check=full to see details of leaked memory ==2684== ==2684== For counts of detected and suppressed errors, rerun with: -v ==2684== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2777== Memcheck, a memory error detector ==2777== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2777== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2777== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2777== Parent PID: 83 ==2777== --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2777-- Ignoring non-Dwarf2/3/4 block in .debug_info --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2777-- Last block truncated in .debug_info; ignoring --2777-- WARNING: Serious error when reading debug info --2777-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2777-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2777== ==2777== HEAP SUMMARY: ==2777== in use at exit: 1,105,162 bytes in 11,481 blocks ==2777== total heap usage: 373,835 allocs, 362,354 frees, 30,235,315 bytes allocated ==2777== ==2777== LEAK SUMMARY: ==2777== definitely lost: 0 bytes in 0 blocks ==2777== indirectly lost: 0 bytes in 0 blocks ==2777== possibly lost: 1,248 bytes in 4 blocks ==2777== still reachable: 504,591 bytes in 3,300 blocks ==2777== of which reachable via heuristic: ==2777== length64 : 4,744 bytes in 76 blocks ==2777== newarray : 6,312 bytes in 49 blocks ==2777== suppressed: 536,299 bytes in 7,694 blocks ==2777== Rerun with --leak-check=full to see details of leaked memory ==2777== ==2777== For counts of detected and suppressed errors, rerun with: -v ==2777== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2862== Memcheck, a memory error detector ==2862== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2862== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2862== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2862== Parent PID: 83 ==2862== --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2862-- Ignoring non-Dwarf2/3/4 block in .debug_info --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2862-- Last block truncated in .debug_info; ignoring --2862-- WARNING: Serious error when reading debug info --2862-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2862-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2862== ==2862== HEAP SUMMARY: ==2862== in use at exit: 1,093,913 bytes in 11,320 blocks ==2862== total heap usage: 374,580 allocs, 363,260 frees, 30,221,382 bytes allocated ==2862== ==2862== LEAK SUMMARY: ==2862== definitely lost: 0 bytes in 0 blocks ==2862== indirectly lost: 0 bytes in 0 blocks ==2862== possibly lost: 480 bytes in 2 blocks ==2862== still reachable: 490,467 bytes in 3,070 blocks ==2862== of which reachable via heuristic: ==2862== length64 : 4,744 bytes in 76 blocks ==2862== newarray : 6,312 bytes in 49 blocks ==2862== suppressed: 539,774 bytes in 7,763 blocks ==2862== Rerun with --leak-check=full to see details of leaked memory ==2862== ==2862== For counts of detected and suppressed errors, rerun with: -v ==2862== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2946== Memcheck, a memory error detector ==2946== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==2946== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==2946== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2946== Parent PID: 83 ==2946== --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2946-- Ignoring non-Dwarf2/3/4 block in .debug_info --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2946-- Last block truncated in .debug_info; ignoring --2946-- WARNING: Serious error when reading debug info --2946-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --2946-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==2946== ==2946== HEAP SUMMARY: ==2946== in use at exit: 1,107,003 bytes in 11,509 blocks ==2946== total heap usage: 349,441 allocs, 337,932 frees, 28,186,782 bytes allocated ==2946== ==2946== LEAK SUMMARY: ==2946== definitely lost: 0 bytes in 0 blocks ==2946== indirectly lost: 0 bytes in 0 blocks ==2946== possibly lost: 480 bytes in 2 blocks ==2946== still reachable: 498,274 bytes in 3,172 blocks ==2946== of which reachable via heuristic: ==2946== length64 : 4,744 bytes in 76 blocks ==2946== newarray : 6,312 bytes in 49 blocks ==2946== suppressed: 545,225 bytes in 7,852 blocks ==2946== Rerun with --leak-check=full to see details of leaked memory ==2946== ==2946== For counts of detected and suppressed errors, rerun with: -v ==2946== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==296== Memcheck, a memory error detector ==296== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==296== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==296== Command: ./client-test Client::Source::eds_event::testLocalUpdate ==296== Parent PID: 83 ==296== --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --296-- Ignoring non-Dwarf2/3/4 block in .debug_info --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --296-- Last block truncated in .debug_info; ignoring --296-- WARNING: Serious error when reading debug info --296-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --296-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==296== ==296== HEAP SUMMARY: ==296== in use at exit: 945,934 bytes in 8,953 blocks ==296== total heap usage: 242,275 allocs, 233,322 frees, 19,376,770 bytes allocated ==296== ==296== LEAK SUMMARY: ==296== definitely lost: 0 bytes in 0 blocks ==296== indirectly lost: 0 bytes in 0 blocks ==296== possibly lost: 1,248 bytes in 4 blocks ==296== still reachable: 345,220 bytes in 776 blocks ==296== of which reachable via heuristic: ==296== length64 : 4,744 bytes in 76 blocks ==296== newarray : 6,312 bytes in 49 blocks ==296== suppressed: 536,442 bytes in 7,690 blocks ==296== Rerun with --leak-check=full to see details of leaked memory ==296== ==296== For counts of detected and suppressed errors, rerun with: -v ==296== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3026== Memcheck, a memory error detector ==3026== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3026== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3026== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==3026== Parent PID: 83 ==3026== --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3026-- Ignoring non-Dwarf2/3/4 block in .debug_info --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3026-- Last block truncated in .debug_info; ignoring --3026-- WARNING: Serious error when reading debug info --3026-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3026-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3026== ==3026== HEAP SUMMARY: ==3026== in use at exit: 1,098,225 bytes in 11,386 blocks ==3026== total heap usage: 349,523 allocs, 338,137 frees, 28,156,996 bytes allocated ==3026== ==3026== LEAK SUMMARY: ==3026== definitely lost: 0 bytes in 0 blocks ==3026== indirectly lost: 0 bytes in 0 blocks ==3026== possibly lost: 1,248 bytes in 4 blocks ==3026== still reachable: 500,242 bytes in 3,257 blocks ==3026== of which reachable via heuristic: ==3026== length64 : 4,744 bytes in 76 blocks ==3026== newarray : 6,312 bytes in 49 blocks ==3026== suppressed: 533,543 bytes in 7,640 blocks ==3026== Rerun with --leak-check=full to see details of leaked memory ==3026== ==3026== For counts of detected and suppressed errors, rerun with: -v ==3026== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3106== Memcheck, a memory error detector ==3106== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3106== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3106== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==3106== Parent PID: 83 ==3106== --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3106-- Ignoring non-Dwarf2/3/4 block in .debug_info --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3106-- Last block truncated in .debug_info; ignoring --3106-- WARNING: Serious error when reading debug info --3106-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3106== ==3106== HEAP SUMMARY: ==3106== in use at exit: 1,100,658 bytes in 11,422 blocks ==3106== total heap usage: 261,668 allocs, 250,246 frees, 22,394,188 bytes allocated ==3106== ==3106== LEAK SUMMARY: ==3106== definitely lost: 0 bytes in 0 blocks ==3106== indirectly lost: 0 bytes in 0 blocks ==3106== possibly lost: 1,248 bytes in 4 blocks ==3106== still reachable: 500,065 bytes in 3,229 blocks ==3106== of which reachable via heuristic: ==3106== length64 : 4,744 bytes in 76 blocks ==3106== newarray : 6,312 bytes in 49 blocks ==3106== suppressed: 536,321 bytes in 7,706 blocks ==3106== Rerun with --leak-check=full to see details of leaked memory ==3106== ==3106== For counts of detected and suppressed errors, rerun with: -v ==3106== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3159== Memcheck, a memory error detector ==3159== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3159== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3159== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3159== Parent PID: 83 ==3159== --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3159-- Ignoring non-Dwarf2/3/4 block in .debug_info --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3159-- Last block truncated in .debug_info; ignoring --3159-- WARNING: Serious error when reading debug info --3159-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3159-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3159== ==3159== HEAP SUMMARY: ==3159== in use at exit: 1,096,004 bytes in 11,353 blocks ==3159== total heap usage: 426,631 allocs, 415,278 frees, 34,547,380 bytes allocated ==3159== ==3159== LEAK SUMMARY: ==3159== definitely lost: 0 bytes in 0 blocks ==3159== indirectly lost: 0 bytes in 0 blocks ==3159== possibly lost: 1,248 bytes in 4 blocks ==3159== still reachable: 499,676 bytes in 3,254 blocks ==3159== of which reachable via heuristic: ==3159== length64 : 4,744 bytes in 76 blocks ==3159== newarray : 6,312 bytes in 49 blocks ==3159== suppressed: 531,888 bytes in 7,610 blocks ==3159== Rerun with --leak-check=full to see details of leaked memory ==3159== ==3159== For counts of detected and suppressed errors, rerun with: -v ==3159== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3255== Memcheck, a memory error detector ==3255== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3255== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3255== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3255== Parent PID: 83 ==3255== --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3255-- Ignoring non-Dwarf2/3/4 block in .debug_info --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3255-- Last block truncated in .debug_info; ignoring --3255-- WARNING: Serious error when reading debug info --3255-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3255-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3255== ==3255== HEAP SUMMARY: ==3255== in use at exit: 1,103,150 bytes in 11,466 blocks ==3255== total heap usage: 426,988 allocs, 415,522 frees, 34,601,296 bytes allocated ==3255== ==3255== LEAK SUMMARY: ==3255== definitely lost: 0 bytes in 0 blocks ==3255== indirectly lost: 0 bytes in 0 blocks ==3255== possibly lost: 1,248 bytes in 4 blocks ==3255== still reachable: 501,714 bytes in 3,262 blocks ==3255== of which reachable via heuristic: ==3255== length64 : 4,744 bytes in 76 blocks ==3255== newarray : 6,312 bytes in 49 blocks ==3255== suppressed: 536,996 bytes in 7,715 blocks ==3255== Rerun with --leak-check=full to see details of leaked memory ==3255== ==3255== For counts of detected and suppressed errors, rerun with: -v ==3255== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3349== Memcheck, a memory error detector ==3349== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3349== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3349== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent ==3349== Parent PID: 83 ==3349== --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3349-- Ignoring non-Dwarf2/3/4 block in .debug_info --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3349-- Last block truncated in .debug_info; ignoring --3349-- WARNING: Serious error when reading debug info --3349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3349== ==3349== HEAP SUMMARY: ==3349== in use at exit: 944,221 bytes in 8,927 blocks ==3349== total heap usage: 302,180 allocs, 293,253 frees, 22,831,819 bytes allocated ==3349== ==3349== LEAK SUMMARY: ==3349== definitely lost: 0 bytes in 0 blocks ==3349== indirectly lost: 0 bytes in 0 blocks ==3349== possibly lost: 1,248 bytes in 4 blocks ==3349== still reachable: 343,956 bytes in 758 blocks ==3349== of which reachable via heuristic: ==3349== length64 : 4,744 bytes in 76 blocks ==3349== newarray : 6,312 bytes in 49 blocks ==3349== suppressed: 535,993 bytes in 7,682 blocks ==3349== Rerun with --leak-check=full to see details of leaked memory ==3349== ==3349== For counts of detected and suppressed errors, rerun with: -v ==3349== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==339== Memcheck, a memory error detector ==339== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==339== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==339== Command: ./client-test Client::Source::eds_event::testChanges ==339== Parent PID: 83 ==339== --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --339-- Ignoring non-Dwarf2/3/4 block in .debug_info --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --339-- Last block truncated in .debug_info; ignoring --339-- WARNING: Serious error when reading debug info --339-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --339-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==339== ==339== HEAP SUMMARY: ==339== in use at exit: 949,460 bytes in 9,011 blocks ==339== total heap usage: 884,269 allocs, 875,258 frees, 56,397,615 bytes allocated ==339== ==339== LEAK SUMMARY: ==339== definitely lost: 0 bytes in 0 blocks ==339== indirectly lost: 0 bytes in 0 blocks ==339== possibly lost: 1,248 bytes in 4 blocks ==339== still reachable: 348,411 bytes in 828 blocks ==339== of which reachable via heuristic: ==339== length64 : 4,744 bytes in 76 blocks ==339== newarray : 6,312 bytes in 49 blocks ==339== suppressed: 536,777 bytes in 7,696 blocks ==339== Rerun with --leak-check=full to see details of leaked memory ==339== ==339== For counts of detected and suppressed errors, rerun with: -v ==339== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3414== Memcheck, a memory error detector ==3414== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3414== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3414== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild ==3414== Parent PID: 83 ==3414== --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3414-- Ignoring non-Dwarf2/3/4 block in .debug_info --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3414-- Last block truncated in .debug_info; ignoring --3414-- WARNING: Serious error when reading debug info --3414-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3414-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3414== ==3414== HEAP SUMMARY: ==3414== in use at exit: 943,238 bytes in 8,924 blocks ==3414== total heap usage: 302,547 allocs, 293,623 frees, 22,822,187 bytes allocated ==3414== ==3414== LEAK SUMMARY: ==3414== definitely lost: 0 bytes in 0 blocks ==3414== indirectly lost: 0 bytes in 0 blocks ==3414== possibly lost: 1,248 bytes in 4 blocks ==3414== still reachable: 343,063 bytes in 751 blocks ==3414== of which reachable via heuristic: ==3414== length64 : 4,744 bytes in 76 blocks ==3414== newarray : 6,312 bytes in 49 blocks ==3414== suppressed: 535,903 bytes in 7,686 blocks ==3414== Rerun with --leak-check=full to see details of leaked memory ==3414== ==3414== For counts of detected and suppressed errors, rerun with: -v ==3414== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3479== Memcheck, a memory error detector ==3479== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3479== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3479== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild ==3479== Parent PID: 83 ==3479== --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3479-- Ignoring non-Dwarf2/3/4 block in .debug_info --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3479-- Last block truncated in .debug_info; ignoring --3479-- WARNING: Serious error when reading debug info --3479-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3479-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3479== ==3479== HEAP SUMMARY: ==3479== in use at exit: 941,035 bytes in 8,871 blocks ==3479== total heap usage: 345,170 allocs, 336,299 frees, 25,337,219 bytes allocated ==3479== ==3479== LEAK SUMMARY: ==3479== definitely lost: 0 bytes in 0 blocks ==3479== indirectly lost: 0 bytes in 0 blocks ==3479== possibly lost: 480 bytes in 2 blocks ==3479== still reachable: 334,621 bytes in 573 blocks ==3479== of which reachable via heuristic: ==3479== length64 : 4,744 bytes in 76 blocks ==3479== newarray : 6,312 bytes in 49 blocks ==3479== suppressed: 542,910 bytes in 7,813 blocks ==3479== Rerun with --leak-check=full to see details of leaked memory ==3479== ==3479== For counts of detected and suppressed errors, rerun with: -v ==3479== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3554== Memcheck, a memory error detector ==3554== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3554== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3554== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==3554== Parent PID: 83 ==3554== --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3554-- Ignoring non-Dwarf2/3/4 block in .debug_info --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3554-- Last block truncated in .debug_info; ignoring --3554-- WARNING: Serious error when reading debug info --3554-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3554-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3554== ==3554== HEAP SUMMARY: ==3554== in use at exit: 943,294 bytes in 8,926 blocks ==3554== total heap usage: 286,652 allocs, 277,726 frees, 21,913,502 bytes allocated ==3554== ==3554== LEAK SUMMARY: ==3554== definitely lost: 0 bytes in 0 blocks ==3554== indirectly lost: 0 bytes in 0 blocks ==3554== possibly lost: 1,248 bytes in 4 blocks ==3554== still reachable: 343,288 bytes in 755 blocks ==3554== of which reachable via heuristic: ==3554== length64 : 4,744 bytes in 76 blocks ==3554== newarray : 6,312 bytes in 49 blocks ==3554== suppressed: 535,734 bytes in 7,684 blocks ==3554== Rerun with --leak-check=full to see details of leaked memory ==3554== ==3554== For counts of detected and suppressed errors, rerun with: -v ==3554== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3616== Memcheck, a memory error detector ==3616== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3616== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3616== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent ==3616== Parent PID: 83 ==3616== --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3616-- Ignoring non-Dwarf2/3/4 block in .debug_info --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3616-- Last block truncated in .debug_info; ignoring --3616-- WARNING: Serious error when reading debug info --3616-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3616-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3616== ==3616== HEAP SUMMARY: ==3616== in use at exit: 945,935 bytes in 8,955 blocks ==3616== total heap usage: 329,754 allocs, 320,799 frees, 24,461,134 bytes allocated ==3616== ==3616== LEAK SUMMARY: ==3616== definitely lost: 0 bytes in 0 blocks ==3616== indirectly lost: 0 bytes in 0 blocks ==3616== possibly lost: 1,248 bytes in 4 blocks ==3616== still reachable: 345,454 bytes in 782 blocks ==3616== of which reachable via heuristic: ==3616== length64 : 4,744 bytes in 76 blocks ==3616== newarray : 6,312 bytes in 49 blocks ==3616== suppressed: 536,209 bytes in 7,686 blocks ==3616== Rerun with --leak-check=full to see details of leaked memory ==3616== ==3616== For counts of detected and suppressed errors, rerun with: -v ==3616== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3688== Memcheck, a memory error detector ==3688== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3688== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3688== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3688== Parent PID: 83 ==3688== --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3688-- Ignoring non-Dwarf2/3/4 block in .debug_info --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3688-- Last block truncated in .debug_info; ignoring --3688-- WARNING: Serious error when reading debug info --3688-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3688-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3688== ==3688== HEAP SUMMARY: ==3688== in use at exit: 950,610 bytes in 9,035 blocks ==3688== total heap usage: 350,617 allocs, 341,582 frees, 25,716,564 bytes allocated ==3688== ==3688== LEAK SUMMARY: ==3688== definitely lost: 0 bytes in 0 blocks ==3688== indirectly lost: 0 bytes in 0 blocks ==3688== possibly lost: 1,248 bytes in 4 blocks ==3688== still reachable: 349,385 bytes in 851 blocks ==3688== of which reachable via heuristic: ==3688== length64 : 4,744 bytes in 76 blocks ==3688== newarray : 6,312 bytes in 49 blocks ==3688== suppressed: 536,953 bytes in 7,697 blocks ==3688== Rerun with --leak-check=full to see details of leaked memory ==3688== ==3688== For counts of detected and suppressed errors, rerun with: -v ==3688== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3773== Memcheck, a memory error detector ==3773== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3773== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3773== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3773== Parent PID: 83 ==3773== --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3773-- Ignoring non-Dwarf2/3/4 block in .debug_info --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3773-- Last block truncated in .debug_info; ignoring --3773-- WARNING: Serious error when reading debug info --3773-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3773-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3773== ==3773== HEAP SUMMARY: ==3773== in use at exit: 939,418 bytes in 8,845 blocks ==3773== total heap usage: 370,783 allocs, 361,938 frees, 26,844,010 bytes allocated ==3773== ==3773== LEAK SUMMARY: ==3773== definitely lost: 0 bytes in 0 blocks ==3773== indirectly lost: 0 bytes in 0 blocks ==3773== possibly lost: 1,248 bytes in 4 blocks ==3773== still reachable: 341,827 bytes in 727 blocks ==3773== of which reachable via heuristic: ==3773== length64 : 4,744 bytes in 76 blocks ==3773== newarray : 6,312 bytes in 49 blocks ==3773== suppressed: 533,319 bytes in 7,631 blocks ==3773== Rerun with --leak-check=full to see details of leaked memory ==3773== ==3773== For counts of detected and suppressed errors, rerun with: -v ==3773== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3863== Memcheck, a memory error detector ==3863== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3863== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3863== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3863== Parent PID: 83 ==3863== --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3863-- Ignoring non-Dwarf2/3/4 block in .debug_info --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3863-- Last block truncated in .debug_info; ignoring --3863-- WARNING: Serious error when reading debug info --3863-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3863-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3863== ==3863== HEAP SUMMARY: ==3863== in use at exit: 944,640 bytes in 8,941 blocks ==3863== total heap usage: 389,614 allocs, 380,673 frees, 27,925,056 bytes allocated ==3863== ==3863== LEAK SUMMARY: ==3863== definitely lost: 0 bytes in 0 blocks ==3863== indirectly lost: 0 bytes in 0 blocks ==3863== possibly lost: 1,248 bytes in 4 blocks ==3863== still reachable: 344,176 bytes in 761 blocks ==3863== of which reachable via heuristic: ==3863== length64 : 4,744 bytes in 76 blocks ==3863== newarray : 6,312 bytes in 49 blocks ==3863== suppressed: 536,024 bytes in 7,691 blocks ==3863== Rerun with --leak-check=full to see details of leaked memory ==3863== ==3863== For counts of detected and suppressed errors, rerun with: -v ==3863== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3956== Memcheck, a memory error detector ==3956== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==3956== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==3956== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3956== Parent PID: 83 ==3956== --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3956-- Ignoring non-Dwarf2/3/4 block in .debug_info --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3956-- Last block truncated in .debug_info; ignoring --3956-- WARNING: Serious error when reading debug info --3956-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --3956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==3956== ==3956== HEAP SUMMARY: ==3956== in use at exit: 941,203 bytes in 8,871 blocks ==3956== total heap usage: 347,465 allocs, 338,594 frees, 25,503,271 bytes allocated ==3956== ==3956== LEAK SUMMARY: ==3956== definitely lost: 0 bytes in 0 blocks ==3956== indirectly lost: 0 bytes in 0 blocks ==3956== possibly lost: 480 bytes in 2 blocks ==3956== still reachable: 335,446 bytes in 598 blocks ==3956== of which reachable via heuristic: ==3956== length64 : 4,744 bytes in 76 blocks ==3956== newarray : 6,312 bytes in 49 blocks ==3956== suppressed: 542,253 bytes in 7,788 blocks ==3956== Rerun with --leak-check=full to see details of leaked memory ==3956== ==3956== For counts of detected and suppressed errors, rerun with: -v ==3956== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4041== Memcheck, a memory error detector ==4041== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4041== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4041== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==4041== Parent PID: 83 ==4041== --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4041-- Ignoring non-Dwarf2/3/4 block in .debug_info --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4041-- Last block truncated in .debug_info; ignoring --4041-- WARNING: Serious error when reading debug info --4041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4041== ==4041== HEAP SUMMARY: ==4041== in use at exit: 948,085 bytes in 9,012 blocks ==4041== total heap usage: 347,897 allocs, 338,885 frees, 25,479,881 bytes allocated ==4041== ==4041== LEAK SUMMARY: ==4041== definitely lost: 0 bytes in 0 blocks ==4041== indirectly lost: 0 bytes in 0 blocks ==4041== possibly lost: 1,248 bytes in 4 blocks ==4041== still reachable: 345,498 bytes in 774 blocks ==4041== of which reachable via heuristic: ==4041== length64 : 4,744 bytes in 76 blocks ==4041== newarray : 6,312 bytes in 49 blocks ==4041== suppressed: 538,147 bytes in 7,749 blocks ==4041== Rerun with --leak-check=full to see details of leaked memory ==4041== ==4041== For counts of detected and suppressed errors, rerun with: -v ==4041== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4125== Memcheck, a memory error detector ==4125== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4125== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4125== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==4125== Parent PID: 83 ==4125== --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4125-- Ignoring non-Dwarf2/3/4 block in .debug_info --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4125-- Last block truncated in .debug_info; ignoring --4125-- WARNING: Serious error when reading debug info --4125-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4125-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4125== ==4125== HEAP SUMMARY: ==4125== in use at exit: 934,783 bytes in 8,777 blocks ==4125== total heap usage: 328,774 allocs, 319,997 frees, 24,412,432 bytes allocated ==4125== ==4125== LEAK SUMMARY: ==4125== definitely lost: 0 bytes in 0 blocks ==4125== indirectly lost: 0 bytes in 0 blocks ==4125== possibly lost: 1,248 bytes in 4 blocks ==4125== still reachable: 340,434 bytes in 726 blocks ==4125== of which reachable via heuristic: ==4125== length64 : 4,744 bytes in 76 blocks ==4125== newarray : 6,312 bytes in 49 blocks ==4125== suppressed: 529,909 bytes in 7,562 blocks ==4125== Rerun with --leak-check=full to see details of leaked memory ==4125== ==4125== For counts of detected and suppressed errors, rerun with: -v ==4125== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4205== Memcheck, a memory error detector ==4205== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4205== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4205== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4205== Parent PID: 83 ==4205== --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4205-- Ignoring non-Dwarf2/3/4 block in .debug_info --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4205-- Last block truncated in .debug_info; ignoring --4205-- WARNING: Serious error when reading debug info --4205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4205== ==4205== HEAP SUMMARY: ==4205== in use at exit: 942,436 bytes in 8,901 blocks ==4205== total heap usage: 327,624 allocs, 318,723 frees, 24,328,406 bytes allocated ==4205== ==4205== LEAK SUMMARY: ==4205== definitely lost: 0 bytes in 0 blocks ==4205== indirectly lost: 0 bytes in 0 blocks ==4205== possibly lost: 1,248 bytes in 4 blocks ==4205== still reachable: 342,675 bytes in 732 blocks ==4205== of which reachable via heuristic: ==4205== length64 : 4,744 bytes in 76 blocks ==4205== newarray : 6,312 bytes in 49 blocks ==4205== suppressed: 535,489 bytes in 7,682 blocks ==4205== Rerun with --leak-check=full to see details of leaked memory ==4205== ==4205== For counts of detected and suppressed errors, rerun with: -v ==4205== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4285== Memcheck, a memory error detector ==4285== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4285== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4285== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==4285== Parent PID: 83 ==4285== --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4285-- Ignoring non-Dwarf2/3/4 block in .debug_info --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4285-- Last block truncated in .debug_info; ignoring --4285-- WARNING: Serious error when reading debug info --4285-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4285== ==4285== HEAP SUMMARY: ==4285== in use at exit: 947,630 bytes in 8,985 blocks ==4285== total heap usage: 243,922 allocs, 234,937 frees, 19,443,943 bytes allocated ==4285== ==4285== LEAK SUMMARY: ==4285== definitely lost: 0 bytes in 0 blocks ==4285== indirectly lost: 0 bytes in 0 blocks ==4285== possibly lost: 1,248 bytes in 4 blocks ==4285== still reachable: 347,013 bytes in 802 blocks ==4285== of which reachable via heuristic: ==4285== length64 : 4,744 bytes in 76 blocks ==4285== newarray : 6,312 bytes in 49 blocks ==4285== suppressed: 536,345 bytes in 7,696 blocks ==4285== Rerun with --leak-check=full to see details of leaked memory ==4285== ==4285== For counts of detected and suppressed errors, rerun with: -v ==4285== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4338== Memcheck, a memory error detector ==4338== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4338== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4338== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4338== Parent PID: 83 ==4338== --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4338-- Ignoring non-Dwarf2/3/4 block in .debug_info --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4338-- Last block truncated in .debug_info; ignoring --4338-- WARNING: Serious error when reading debug info --4338-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4338== ==4338== HEAP SUMMARY: ==4338== in use at exit: 949,204 bytes in 9,022 blocks ==4338== total heap usage: 394,242 allocs, 385,220 frees, 28,255,732 bytes allocated ==4338== ==4338== LEAK SUMMARY: ==4338== definitely lost: 0 bytes in 0 blocks ==4338== indirectly lost: 0 bytes in 0 blocks ==4338== possibly lost: 1,248 bytes in 4 blocks ==4338== still reachable: 348,304 bytes in 830 blocks ==4338== of which reachable via heuristic: ==4338== length64 : 4,744 bytes in 76 blocks ==4338== newarray : 6,312 bytes in 49 blocks ==4338== suppressed: 536,460 bytes in 7,703 blocks ==4338== Rerun with --leak-check=full to see details of leaked memory ==4338== ==4338== For counts of detected and suppressed errors, rerun with: -v ==4338== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4435== Memcheck, a memory error detector ==4435== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4435== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4435== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4435== Parent PID: 83 ==4435== --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4435-- Ignoring non-Dwarf2/3/4 block in .debug_info --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4435-- Last block truncated in .debug_info; ignoring --4435-- WARNING: Serious error when reading debug info --4435-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4435-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4435== ==4435== HEAP SUMMARY: ==4435== in use at exit: 933,442 bytes in 8,751 blocks ==4435== total heap usage: 395,886 allocs, 387,135 frees, 28,334,184 bytes allocated ==4435== ==4435== LEAK SUMMARY: ==4435== definitely lost: 0 bytes in 0 blocks ==4435== indirectly lost: 0 bytes in 0 blocks ==4435== possibly lost: 1,248 bytes in 4 blocks ==4435== still reachable: 340,191 bytes in 719 blocks ==4435== of which reachable via heuristic: ==4435== length64 : 4,744 bytes in 76 blocks ==4435== newarray : 6,312 bytes in 49 blocks ==4435== suppressed: 528,811 bytes in 7,543 blocks ==4435== Rerun with --leak-check=full to see details of leaked memory ==4435== ==4435== For counts of detected and suppressed errors, rerun with: -v ==4435== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4529== Memcheck, a memory error detector ==4529== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4529== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4529== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent ==4529== Parent PID: 83 ==4529== --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4529-- Ignoring non-Dwarf2/3/4 block in .debug_info --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4529-- Last block truncated in .debug_info; ignoring --4529-- WARNING: Serious error when reading debug info --4529-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4529-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4529== ==4529== HEAP SUMMARY: ==4529== in use at exit: 947,566 bytes in 8,981 blocks ==4529== total heap usage: 302,052 allocs, 293,071 frees, 22,827,850 bytes allocated ==4529== ==4529== LEAK SUMMARY: ==4529== definitely lost: 0 bytes in 0 blocks ==4529== indirectly lost: 0 bytes in 0 blocks ==4529== possibly lost: 1,248 bytes in 4 blocks ==4529== still reachable: 346,981 bytes in 799 blocks ==4529== of which reachable via heuristic: ==4529== length64 : 4,744 bytes in 76 blocks ==4529== newarray : 6,312 bytes in 49 blocks ==4529== suppressed: 536,313 bytes in 7,695 blocks ==4529== Rerun with --leak-check=full to see details of leaked memory ==4529== ==4529== For counts of detected and suppressed errors, rerun with: -v ==4529== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4595== Memcheck, a memory error detector ==4595== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4595== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4595== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild ==4595== Parent PID: 83 ==4595== --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4595-- Ignoring non-Dwarf2/3/4 block in .debug_info --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4595-- Last block truncated in .debug_info; ignoring --4595-- WARNING: Serious error when reading debug info --4595-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4595== ==4595== HEAP SUMMARY: ==4595== in use at exit: 949,399 bytes in 9,009 blocks ==4595== total heap usage: 301,578 allocs, 292,569 frees, 22,784,375 bytes allocated ==4595== ==4595== LEAK SUMMARY: ==4595== definitely lost: 0 bytes in 0 blocks ==4595== indirectly lost: 0 bytes in 0 blocks ==4595== possibly lost: 480 bytes in 2 blocks ==4595== still reachable: 340,367 bytes in 666 blocks ==4595== of which reachable via heuristic: ==4595== length64 : 4,744 bytes in 76 blocks ==4595== newarray : 6,312 bytes in 49 blocks ==4595== suppressed: 545,528 bytes in 7,858 blocks ==4595== Rerun with --leak-check=full to see details of leaked memory ==4595== ==4595== For counts of detected and suppressed errors, rerun with: -v ==4595== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4660== Memcheck, a memory error detector ==4660== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4660== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4660== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==4660== Parent PID: 83 ==4660== --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4660-- Ignoring non-Dwarf2/3/4 block in .debug_info --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4660-- Last block truncated in .debug_info; ignoring --4660-- WARNING: Serious error when reading debug info --4660-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4660-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4660== ==4660== HEAP SUMMARY: ==4660== in use at exit: 946,090 bytes in 8,959 blocks ==4660== total heap usage: 345,595 allocs, 336,636 frees, 25,345,045 bytes allocated ==4660== ==4660== LEAK SUMMARY: ==4660== definitely lost: 0 bytes in 0 blocks ==4660== indirectly lost: 0 bytes in 0 blocks ==4660== possibly lost: 1,248 bytes in 4 blocks ==4660== still reachable: 345,226 bytes in 767 blocks ==4660== of which reachable via heuristic: ==4660== length64 : 4,744 bytes in 76 blocks ==4660== newarray : 6,312 bytes in 49 blocks ==4660== suppressed: 536,424 bytes in 7,703 blocks ==4660== Rerun with --leak-check=full to see details of leaked memory ==4660== ==4660== For counts of detected and suppressed errors, rerun with: -v ==4660== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4734== Memcheck, a memory error detector ==4734== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4734== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4734== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==4734== Parent PID: 83 ==4734== --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4734-- Ignoring non-Dwarf2/3/4 block in .debug_info --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4734-- Last block truncated in .debug_info; ignoring --4734-- WARNING: Serious error when reading debug info --4734-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4734-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4734== ==4734== HEAP SUMMARY: ==4734== in use at exit: 945,927 bytes in 8,953 blocks ==4734== total heap usage: 286,122 allocs, 277,169 frees, 21,884,491 bytes allocated ==4734== ==4734== LEAK SUMMARY: ==4734== definitely lost: 0 bytes in 0 blocks ==4734== indirectly lost: 0 bytes in 0 blocks ==4734== possibly lost: 1,248 bytes in 4 blocks ==4734== still reachable: 345,157 bytes in 775 blocks ==4734== of which reachable via heuristic: ==4734== length64 : 4,744 bytes in 76 blocks ==4734== newarray : 6,312 bytes in 49 blocks ==4734== suppressed: 536,498 bytes in 7,691 blocks ==4734== Rerun with --leak-check=full to see details of leaked memory ==4734== ==4734== For counts of detected and suppressed errors, rerun with: -v ==4734== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4796== Memcheck, a memory error detector ==4796== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4796== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4796== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==4796== Parent PID: 83 ==4796== --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4796-- Ignoring non-Dwarf2/3/4 block in .debug_info --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4796-- Last block truncated in .debug_info; ignoring --4796-- WARNING: Serious error when reading debug info --4796-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4796-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4796== ==4796== HEAP SUMMARY: ==4796== in use at exit: 945,135 bytes in 8,944 blocks ==4796== total heap usage: 329,433 allocs, 320,489 frees, 24,442,209 bytes allocated ==4796== ==4796== LEAK SUMMARY: ==4796== definitely lost: 0 bytes in 0 blocks ==4796== indirectly lost: 0 bytes in 0 blocks ==4796== possibly lost: 480 bytes in 2 blocks ==4796== still reachable: 336,868 bytes in 605 blocks ==4796== of which reachable via heuristic: ==4796== length64 : 4,744 bytes in 76 blocks ==4796== newarray : 6,312 bytes in 49 blocks ==4796== suppressed: 544,763 bytes in 7,854 blocks ==4796== Rerun with --leak-check=full to see details of leaked memory ==4796== ==4796== For counts of detected and suppressed errors, rerun with: -v ==4796== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4867== Memcheck, a memory error detector ==4867== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4867== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4867== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4867== Parent PID: 83 ==4867== --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4867-- Ignoring non-Dwarf2/3/4 block in .debug_info --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4867-- Last block truncated in .debug_info; ignoring --4867-- WARNING: Serious error when reading debug info --4867-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4867-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4867== ==4867== HEAP SUMMARY: ==4867== in use at exit: 947,518 bytes in 8,979 blocks ==4867== total heap usage: 350,641 allocs, 341,662 frees, 25,702,248 bytes allocated ==4867== ==4867== LEAK SUMMARY: ==4867== definitely lost: 0 bytes in 0 blocks ==4867== indirectly lost: 0 bytes in 0 blocks ==4867== possibly lost: 1,248 bytes in 4 blocks ==4867== still reachable: 347,045 bytes in 800 blocks ==4867== of which reachable via heuristic: ==4867== length64 : 4,744 bytes in 76 blocks ==4867== newarray : 6,312 bytes in 49 blocks ==4867== suppressed: 536,201 bytes in 7,692 blocks ==4867== Rerun with --leak-check=full to see details of leaked memory ==4867== ==4867== For counts of detected and suppressed errors, rerun with: -v ==4867== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4952== Memcheck, a memory error detector ==4952== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==4952== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==4952== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4952== Parent PID: 83 ==4952== --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4952-- Ignoring non-Dwarf2/3/4 block in .debug_info --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4952-- Last block truncated in .debug_info; ignoring --4952-- WARNING: Serious error when reading debug info --4952-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --4952-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==4952== ==4952== HEAP SUMMARY: ==4952== in use at exit: 950,650 bytes in 9,035 blocks ==4952== total heap usage: 369,987 allocs, 360,952 frees, 26,800,489 bytes allocated ==4952== ==4952== LEAK SUMMARY: ==4952== definitely lost: 0 bytes in 0 blocks ==4952== indirectly lost: 0 bytes in 0 blocks ==4952== possibly lost: 1,248 bytes in 4 blocks ==4952== still reachable: 349,377 bytes in 849 blocks ==4952== of which reachable via heuristic: ==4952== length64 : 4,744 bytes in 76 blocks ==4952== newarray : 6,312 bytes in 49 blocks ==4952== suppressed: 537,001 bytes in 7,699 blocks ==4952== Rerun with --leak-check=full to see details of leaked memory ==4952== ==4952== For counts of detected and suppressed errors, rerun with: -v ==4952== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5041== Memcheck, a memory error detector ==5041== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5041== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5041== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==5041== Parent PID: 83 ==5041== --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5041-- Ignoring non-Dwarf2/3/4 block in .debug_info --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5041-- Last block truncated in .debug_info; ignoring --5041-- WARNING: Serious error when reading debug info --5041-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5041-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5041== ==5041== HEAP SUMMARY: ==5041== in use at exit: 950,650 bytes in 9,035 blocks ==5041== total heap usage: 388,753 allocs, 379,718 frees, 27,887,766 bytes allocated ==5041== ==5041== LEAK SUMMARY: ==5041== definitely lost: 0 bytes in 0 blocks ==5041== indirectly lost: 0 bytes in 0 blocks ==5041== possibly lost: 1,248 bytes in 4 blocks ==5041== still reachable: 349,313 bytes in 848 blocks ==5041== of which reachable via heuristic: ==5041== length64 : 4,744 bytes in 76 blocks ==5041== newarray : 6,312 bytes in 49 blocks ==5041== suppressed: 537,065 bytes in 7,700 blocks ==5041== Rerun with --leak-check=full to see details of leaked memory ==5041== ==5041== For counts of detected and suppressed errors, rerun with: -v ==5041== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5134== Memcheck, a memory error detector ==5134== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5134== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5134== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==5134== Parent PID: 83 ==5134== --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5134-- Ignoring non-Dwarf2/3/4 block in .debug_info --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5134-- Last block truncated in .debug_info; ignoring --5134-- WARNING: Serious error when reading debug info --5134-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5134== ==5134== HEAP SUMMARY: ==5134== in use at exit: 947,642 bytes in 8,981 blocks ==5134== total heap usage: 347,295 allocs, 338,314 frees, 25,493,615 bytes allocated ==5134== ==5134== LEAK SUMMARY: ==5134== definitely lost: 0 bytes in 0 blocks ==5134== indirectly lost: 0 bytes in 0 blocks ==5134== possibly lost: 480 bytes in 2 blocks ==5134== still reachable: 339,171 bytes in 648 blocks ==5134== of which reachable via heuristic: ==5134== length64 : 4,744 bytes in 76 blocks ==5134== newarray : 6,312 bytes in 49 blocks ==5134== suppressed: 544,967 bytes in 7,848 blocks ==5134== Rerun with --leak-check=full to see details of leaked memory ==5134== ==5134== For counts of detected and suppressed errors, rerun with: -v ==5134== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5218== Memcheck, a memory error detector ==5218== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5218== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5218== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5218== Parent PID: 83 ==5218== --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5218-- Ignoring non-Dwarf2/3/4 block in .debug_info --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5218-- Last block truncated in .debug_info; ignoring --5218-- WARNING: Serious error when reading debug info --5218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5218== ==5218== HEAP SUMMARY: ==5218== in use at exit: 949,407 bytes in 9,009 blocks ==5218== total heap usage: 347,210 allocs, 338,201 frees, 25,449,053 bytes allocated ==5218== ==5218== LEAK SUMMARY: ==5218== definitely lost: 0 bytes in 0 blocks ==5218== indirectly lost: 0 bytes in 0 blocks ==5218== possibly lost: 480 bytes in 2 blocks ==5218== still reachable: 340,600 bytes in 670 blocks ==5218== of which reachable via heuristic: ==5218== length64 : 4,744 bytes in 76 blocks ==5218== newarray : 6,312 bytes in 49 blocks ==5218== suppressed: 545,303 bytes in 7,854 blocks ==5218== Rerun with --leak-check=full to see details of leaked memory ==5218== ==5218== For counts of detected and suppressed errors, rerun with: -v ==5218== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==523== Memcheck, a memory error detector ==523== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==523== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==523== Command: ./client-test Client::Source::eds_event::testChangesMultiCycles ==523== Parent PID: 83 ==523== --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --523-- Ignoring non-Dwarf2/3/4 block in .debug_info --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --523-- Last block truncated in .debug_info; ignoring --523-- WARNING: Serious error when reading debug info --523-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --523-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==523== ==523== HEAP SUMMARY: ==523== in use at exit: 941,250 bytes in 8,871 blocks ==523== total heap usage: 799,304 allocs, 790,433 frees, 48,752,697 bytes allocated ==523== ==523== LEAK SUMMARY: ==523== definitely lost: 0 bytes in 0 blocks ==523== indirectly lost: 0 bytes in 0 blocks ==523== possibly lost: 1,248 bytes in 4 blocks ==523== still reachable: 343,079 bytes in 749 blocks ==523== of which reachable via heuristic: ==523== length64 : 4,744 bytes in 76 blocks ==523== newarray : 6,312 bytes in 49 blocks ==523== suppressed: 533,899 bytes in 7,635 blocks ==523== Rerun with --leak-check=full to see details of leaked memory ==523== ==523== For counts of detected and suppressed errors, rerun with: -v ==523== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5303== Memcheck, a memory error detector ==5303== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5303== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5303== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5303== Parent PID: 83 ==5303== --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5303-- Ignoring non-Dwarf2/3/4 block in .debug_info --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5303-- Last block truncated in .debug_info; ignoring --5303-- WARNING: Serious error when reading debug info --5303-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5303== ==5303== HEAP SUMMARY: ==5303== in use at exit: 941,597 bytes in 8,896 blocks ==5303== total heap usage: 327,710 allocs, 318,814 frees, 24,366,758 bytes allocated ==5303== ==5303== LEAK SUMMARY: ==5303== definitely lost: 0 bytes in 0 blocks ==5303== indirectly lost: 0 bytes in 0 blocks ==5303== possibly lost: 1,248 bytes in 4 blocks ==5303== still reachable: 342,844 bytes in 754 blocks ==5303== of which reachable via heuristic: ==5303== length64 : 4,744 bytes in 76 blocks ==5303== newarray : 6,312 bytes in 49 blocks ==5303== suppressed: 534,481 bytes in 7,655 blocks ==5303== Rerun with --leak-check=full to see details of leaked memory ==5303== ==5303== For counts of detected and suppressed errors, rerun with: -v ==5303== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5383== Memcheck, a memory error detector ==5383== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5383== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5383== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5383== Parent PID: 83 ==5383== --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5383-- Ignoring non-Dwarf2/3/4 block in .debug_info --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5383-- Last block truncated in .debug_info; ignoring --5383-- WARNING: Serious error when reading debug info --5383-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5383-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5383== ==5383== HEAP SUMMARY: ==5383== in use at exit: 945,927 bytes in 8,953 blocks ==5383== total heap usage: 327,788 allocs, 318,835 frees, 24,327,339 bytes allocated ==5383== ==5383== LEAK SUMMARY: ==5383== definitely lost: 0 bytes in 0 blocks ==5383== indirectly lost: 0 bytes in 0 blocks ==5383== possibly lost: 1,248 bytes in 4 blocks ==5383== still reachable: 345,382 bytes in 779 blocks ==5383== of which reachable via heuristic: ==5383== length64 : 4,744 bytes in 76 blocks ==5383== newarray : 6,312 bytes in 49 blocks ==5383== suppressed: 536,273 bytes in 7,687 blocks ==5383== Rerun with --leak-check=full to see details of leaked memory ==5383== ==5383== For counts of detected and suppressed errors, rerun with: -v ==5383== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5463== Memcheck, a memory error detector ==5463== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5463== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5463== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==5463== Parent PID: 83 ==5463== --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5463-- Ignoring non-Dwarf2/3/4 block in .debug_info --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5463-- Last block truncated in .debug_info; ignoring --5463-- WARNING: Serious error when reading debug info --5463-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5463-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5463== ==5463== HEAP SUMMARY: ==5463== in use at exit: 942,164 bytes in 8,896 blocks ==5463== total heap usage: 243,909 allocs, 235,013 frees, 19,433,917 bytes allocated ==5463== ==5463== LEAK SUMMARY: ==5463== definitely lost: 0 bytes in 0 blocks ==5463== indirectly lost: 0 bytes in 0 blocks ==5463== possibly lost: 480 bytes in 2 blocks ==5463== still reachable: 334,652 bytes in 569 blocks ==5463== of which reachable via heuristic: ==5463== length64 : 4,744 bytes in 76 blocks ==5463== newarray : 6,312 bytes in 49 blocks ==5463== suppressed: 544,008 bytes in 7,842 blocks ==5463== Rerun with --leak-check=full to see details of leaked memory ==5463== ==5463== For counts of detected and suppressed errors, rerun with: -v ==5463== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5516== Memcheck, a memory error detector ==5516== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5516== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5516== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5516== Parent PID: 83 ==5516== --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5516-- Ignoring non-Dwarf2/3/4 block in .debug_info --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5516-- Last block truncated in .debug_info; ignoring --5516-- WARNING: Serious error when reading debug info --5516-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5516-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5516== ==5516== HEAP SUMMARY: ==5516== in use at exit: 945,927 bytes in 8,953 blocks ==5516== total heap usage: 394,051 allocs, 385,098 frees, 28,234,758 bytes allocated ==5516== ==5516== LEAK SUMMARY: ==5516== definitely lost: 0 bytes in 0 blocks ==5516== indirectly lost: 0 bytes in 0 blocks ==5516== possibly lost: 1,248 bytes in 4 blocks ==5516== still reachable: 345,221 bytes in 776 blocks ==5516== of which reachable via heuristic: ==5516== length64 : 4,744 bytes in 76 blocks ==5516== newarray : 6,312 bytes in 49 blocks ==5516== suppressed: 536,434 bytes in 7,690 blocks ==5516== Rerun with --leak-check=full to see details of leaked memory ==5516== ==5516== For counts of detected and suppressed errors, rerun with: -v ==5516== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5611== Memcheck, a memory error detector ==5611== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5611== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5611== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5611== Parent PID: 83 ==5611== --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5611-- Ignoring non-Dwarf2/3/4 block in .debug_info --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5611-- Last block truncated in .debug_info; ignoring --5611-- WARNING: Serious error when reading debug info --5611-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5611-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5611== ==5611== HEAP SUMMARY: ==5611== in use at exit: 945,849 bytes in 8,955 blocks ==5611== total heap usage: 394,442 allocs, 385,487 frees, 28,265,220 bytes allocated ==5611== ==5611== LEAK SUMMARY: ==5611== definitely lost: 0 bytes in 0 blocks ==5611== indirectly lost: 0 bytes in 0 blocks ==5611== possibly lost: 1,248 bytes in 4 blocks ==5611== still reachable: 345,552 bytes in 777 blocks ==5611== of which reachable via heuristic: ==5611== length64 : 4,744 bytes in 76 blocks ==5611== newarray : 6,312 bytes in 49 blocks ==5611== suppressed: 536,025 bytes in 7,691 blocks ==5611== Rerun with --leak-check=full to see details of leaked memory ==5611== ==5611== For counts of detected and suppressed errors, rerun with: -v ==5611== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5705== Memcheck, a memory error detector ==5705== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5705== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5705== Command: ./client-test Client::Source::eds_task::testOpen ==5705== Parent PID: 83 ==5705== --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5705-- Ignoring non-Dwarf2/3/4 block in .debug_info --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5705-- Last block truncated in .debug_info; ignoring --5705-- WARNING: Serious error when reading debug info --5705-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5705-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5705== ==5705== HEAP SUMMARY: ==5705== in use at exit: 941,361 bytes in 8,866 blocks ==5705== total heap usage: 120,445 allocs, 111,579 frees, 12,363,291 bytes allocated ==5705== ==5705== LEAK SUMMARY: ==5705== definitely lost: 0 bytes in 0 blocks ==5705== indirectly lost: 0 bytes in 0 blocks ==5705== possibly lost: 1,248 bytes in 4 blocks ==5705== still reachable: 345,864 bytes in 758 blocks ==5705== of which reachable via heuristic: ==5705== length64 : 4,504 bytes in 73 blocks ==5705== newarray : 6,296 bytes in 48 blocks ==5705== suppressed: 532,841 bytes in 7,639 blocks ==5705== Rerun with --leak-check=full to see details of leaked memory ==5705== ==5705== For counts of detected and suppressed errors, rerun with: -v ==5705== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5722== Memcheck, a memory error detector ==5722== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5722== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5722== Command: ./client-test Client::Source::eds_task::testIterateTwice ==5722== Parent PID: 83 ==5722== --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5722-- Ignoring non-Dwarf2/3/4 block in .debug_info --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5722-- Last block truncated in .debug_info; ignoring --5722-- WARNING: Serious error when reading debug info --5722-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5722-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5722== ==5722== HEAP SUMMARY: ==5722== in use at exit: 942,492 bytes in 8,894 blocks ==5722== total heap usage: 124,290 allocs, 115,396 frees, 12,554,883 bytes allocated ==5722== ==5722== LEAK SUMMARY: ==5722== definitely lost: 0 bytes in 0 blocks ==5722== indirectly lost: 0 bytes in 0 blocks ==5722== possibly lost: 1,248 bytes in 4 blocks ==5722== still reachable: 343,576 bytes in 750 blocks ==5722== of which reachable via heuristic: ==5722== length64 : 4,744 bytes in 76 blocks ==5722== newarray : 6,312 bytes in 49 blocks ==5722== suppressed: 534,644 bytes in 7,657 blocks ==5722== Rerun with --leak-check=full to see details of leaked memory ==5722== ==5722== For counts of detected and suppressed errors, rerun with: -v ==5722== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5740== Memcheck, a memory error detector ==5740== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5740== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5740== Command: ./client-test Client::Source::eds_task::testDelete404 ==5740== Parent PID: 83 ==5740== --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5740-- Ignoring non-Dwarf2/3/4 block in .debug_info --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5740-- Last block truncated in .debug_info; ignoring --5740-- WARNING: Serious error when reading debug info --5740-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5740-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5740== ==5740== HEAP SUMMARY: ==5740== in use at exit: 944,632 bytes in 8,940 blocks ==5740== total heap usage: 124,879 allocs, 115,939 frees, 12,568,552 bytes allocated ==5740== ==5740== LEAK SUMMARY: ==5740== definitely lost: 0 bytes in 0 blocks ==5740== indirectly lost: 0 bytes in 0 blocks ==5740== possibly lost: 480 bytes in 2 blocks ==5740== still reachable: 336,418 bytes in 602 blocks ==5740== of which reachable via heuristic: ==5740== length64 : 4,744 bytes in 76 blocks ==5740== newarray : 6,312 bytes in 49 blocks ==5740== suppressed: 544,542 bytes in 7,851 blocks ==5740== Rerun with --leak-check=full to see details of leaked memory ==5740== ==5740== For counts of detected and suppressed errors, rerun with: -v ==5740== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5758== Memcheck, a memory error detector ==5758== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5758== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5758== Command: ./client-test Client::Source::eds_task::testReadItem404 ==5758== Parent PID: 83 ==5758== --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5758-- Ignoring non-Dwarf2/3/4 block in .debug_info --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5758-- Last block truncated in .debug_info; ignoring --5758-- WARNING: Serious error when reading debug info --5758-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5758-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5758== ==5758== HEAP SUMMARY: ==5758== in use at exit: 933,002 bytes in 8,744 blocks ==5758== total heap usage: 125,326 allocs, 116,582 frees, 12,582,226 bytes allocated ==5758== ==5758== LEAK SUMMARY: ==5758== definitely lost: 0 bytes in 0 blocks ==5758== indirectly lost: 0 bytes in 0 blocks ==5758== possibly lost: 1,248 bytes in 4 blocks ==5758== still reachable: 340,159 bytes in 716 blocks ==5758== of which reachable via heuristic: ==5758== length64 : 4,744 bytes in 76 blocks ==5758== newarray : 6,312 bytes in 49 blocks ==5758== suppressed: 528,403 bytes in 7,539 blocks ==5758== Rerun with --leak-check=full to see details of leaked memory ==5758== ==5758== For counts of detected and suppressed errors, rerun with: -v ==5758== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5776== Memcheck, a memory error detector ==5776== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5776== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5776== Command: ./client-test Client::Source::eds_task::testSimpleInsert ==5776== Parent PID: 83 ==5776== --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5776-- Ignoring non-Dwarf2/3/4 block in .debug_info --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5776-- Last block truncated in .debug_info; ignoring --5776-- WARNING: Serious error when reading debug info --5776-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5776-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5776== ==5776== HEAP SUMMARY: ==5776== in use at exit: 940,739 bytes in 8,864 blocks ==5776== total heap usage: 147,272 allocs, 138,408 frees, 13,821,467 bytes allocated ==5776== ==5776== LEAK SUMMARY: ==5776== definitely lost: 0 bytes in 0 blocks ==5776== indirectly lost: 0 bytes in 0 blocks ==5776== possibly lost: 1,248 bytes in 4 blocks ==5776== still reachable: 343,096 bytes in 749 blocks ==5776== of which reachable via heuristic: ==5776== length64 : 4,744 bytes in 76 blocks ==5776== newarray : 6,312 bytes in 49 blocks ==5776== suppressed: 533,371 bytes in 7,628 blocks ==5776== Rerun with --leak-check=full to see details of leaked memory ==5776== ==5776== For counts of detected and suppressed errors, rerun with: -v ==5776== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5807== Memcheck, a memory error detector ==5807== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5807== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5807== Command: ./client-test Client::Source::eds_task::testLocalDeleteAll ==5807== Parent PID: 83 ==5807== --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5807-- Ignoring non-Dwarf2/3/4 block in .debug_info --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5807-- Last block truncated in .debug_info; ignoring --5807-- WARNING: Serious error when reading debug info --5807-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5807-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5807== ==5807== HEAP SUMMARY: ==5807== in use at exit: 949,167 bytes in 9,009 blocks ==5807== total heap usage: 192,204 allocs, 183,195 frees, 16,289,214 bytes allocated ==5807== ==5807== LEAK SUMMARY: ==5807== definitely lost: 0 bytes in 0 blocks ==5807== indirectly lost: 0 bytes in 0 blocks ==5807== possibly lost: 1,248 bytes in 4 blocks ==5807== still reachable: 348,406 bytes in 827 blocks ==5807== of which reachable via heuristic: ==5807== length64 : 4,744 bytes in 76 blocks ==5807== newarray : 6,312 bytes in 49 blocks ==5807== suppressed: 536,489 bytes in 7,695 blocks ==5807== Rerun with --leak-check=full to see details of leaked memory ==5807== ==5807== For counts of detected and suppressed errors, rerun with: -v ==5807== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5861== Memcheck, a memory error detector ==5861== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5861== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5861== Command: ./client-test Client::Source::eds_task::testComplexInsert ==5861== Parent PID: 83 ==5861== --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5861-- Ignoring non-Dwarf2/3/4 block in .debug_info --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5861-- Last block truncated in .debug_info; ignoring --5861-- WARNING: Serious error when reading debug info --5861-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5861-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5861== ==5861== HEAP SUMMARY: ==5861== in use at exit: 950,410 bytes in 9,035 blocks ==5861== total heap usage: 211,672 allocs, 202,637 frees, 17,349,840 bytes allocated ==5861== ==5861== LEAK SUMMARY: ==5861== definitely lost: 0 bytes in 0 blocks ==5861== indirectly lost: 0 bytes in 0 blocks ==5861== possibly lost: 1,248 bytes in 4 blocks ==5861== still reachable: 349,329 bytes in 848 blocks ==5861== of which reachable via heuristic: ==5861== length64 : 4,744 bytes in 76 blocks ==5861== newarray : 6,312 bytes in 49 blocks ==5861== suppressed: 536,809 bytes in 7,700 blocks ==5861== Rerun with --leak-check=full to see details of leaked memory ==5861== ==5861== For counts of detected and suppressed errors, rerun with: -v ==5861== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5927== Memcheck, a memory error detector ==5927== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5927== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5927== Command: ./client-test Client::Source::eds_task::testInsertTwice ==5927== Parent PID: 83 ==5927== --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5927-- Ignoring non-Dwarf2/3/4 block in .debug_info --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5927-- Last block truncated in .debug_info; ignoring --5927-- WARNING: Serious error when reading debug info --5927-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5927-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5927== ==5927== HEAP SUMMARY: ==5927== in use at exit: 942,628 bytes in 8,897 blocks ==5927== total heap usage: 169,904 allocs, 161,007 frees, 15,081,858 bytes allocated ==5927== ==5927== LEAK SUMMARY: ==5927== definitely lost: 0 bytes in 0 blocks ==5927== indirectly lost: 0 bytes in 0 blocks ==5927== possibly lost: 1,248 bytes in 4 blocks ==5927== still reachable: 343,700 bytes in 754 blocks ==5927== of which reachable via heuristic: ==5927== length64 : 4,744 bytes in 76 blocks ==5927== newarray : 6,312 bytes in 49 blocks ==5927== suppressed: 534,656 bytes in 7,656 blocks ==5927== Rerun with --leak-check=full to see details of leaked memory ==5927== ==5927== For counts of detected and suppressed errors, rerun with: -v ==5927== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5969== Memcheck, a memory error detector ==5969== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==5969== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==5969== Command: ./client-test Client::Source::eds_task::testLocalUpdate ==5969== Parent PID: 83 ==5969== --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5969-- Ignoring non-Dwarf2/3/4 block in .debug_info --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5969-- Last block truncated in .debug_info; ignoring --5969-- WARNING: Serious error when reading debug info --5969-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --5969-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==5969== ==5969== HEAP SUMMARY: ==5969== in use at exit: 944,511 bytes in 8,942 blocks ==5969== total heap usage: 236,242 allocs, 227,300 frees, 18,732,894 bytes allocated ==5969== ==5969== LEAK SUMMARY: ==5969== definitely lost: 0 bytes in 0 blocks ==5969== indirectly lost: 0 bytes in 0 blocks ==5969== possibly lost: 1,248 bytes in 4 blocks ==5969== still reachable: 344,458 bytes in 761 blocks ==5969== of which reachable via heuristic: ==5969== length64 : 4,744 bytes in 76 blocks ==5969== newarray : 6,312 bytes in 49 blocks ==5969== suppressed: 535,781 bytes in 7,694 blocks ==5969== Rerun with --leak-check=full to see details of leaked memory ==5969== ==5969== For counts of detected and suppressed errors, rerun with: -v ==5969== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6048== Memcheck, a memory error detector ==6048== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==6048== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==6048== Command: ./client-test Client::Source::eds_task::testChanges ==6048== Parent PID: 83 ==6048== --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6048-- Ignoring non-Dwarf2/3/4 block in .debug_info --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6048-- Last block truncated in .debug_info; ignoring --6048-- WARNING: Serious error when reading debug info --6048-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6048-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==6048== ==6048== HEAP SUMMARY: ==6048== in use at exit: 941,390 bytes in 8,883 blocks ==6048== total heap usage: 946,508 allocs, 937,625 frees, 57,759,138 bytes allocated ==6048== ==6048== LEAK SUMMARY: ==6048== definitely lost: 0 bytes in 0 blocks ==6048== indirectly lost: 0 bytes in 0 blocks ==6048== possibly lost: 480 bytes in 2 blocks ==6048== still reachable: 334,624 bytes in 570 blocks ==6048== of which reachable via heuristic: ==6048== length64 : 4,744 bytes in 76 blocks ==6048== newarray : 6,312 bytes in 49 blocks ==6048== suppressed: 543,094 bytes in 7,826 blocks ==6048== Rerun with --leak-check=full to see details of leaked memory ==6048== ==6048== For counts of detected and suppressed errors, rerun with: -v ==6048== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6512== Memcheck, a memory error detector ==6512== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==6512== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==6512== Command: ./client-test Client::Source::eds_task::testChangesMultiCycles ==6512== Parent PID: 83 ==6512== --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6512-- Ignoring non-Dwarf2/3/4 block in .debug_info --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6512-- Last block truncated in .debug_info; ignoring --6512-- WARNING: Serious error when reading debug info --6512-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6512-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==6512== ==6512== HEAP SUMMARY: ==6512== in use at exit: 943,047 bytes in 8,911 blocks ==6512== total heap usage: 859,465 allocs, 850,554 frees, 50,177,372 bytes allocated ==6512== ==6512== LEAK SUMMARY: ==6512== definitely lost: 0 bytes in 0 blocks ==6512== indirectly lost: 0 bytes in 0 blocks ==6512== possibly lost: 480 bytes in 2 blocks ==6512== still reachable: 336,194 bytes in 601 blocks ==6512== of which reachable via heuristic: ==6512== length64 : 4,744 bytes in 76 blocks ==6512== newarray : 6,312 bytes in 49 blocks ==6512== suppressed: 543,181 bytes in 7,823 blocks ==6512== Rerun with --leak-check=full to see details of leaked memory ==6512== ==6512== For counts of detected and suppressed errors, rerun with: -v ==6512== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6976== Memcheck, a memory error detector ==6976== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==6976== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==6976== Command: ./client-test Client::Source::eds_task::testImport ==6976== Parent PID: 83 ==6976== --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6976-- Ignoring non-Dwarf2/3/4 block in .debug_info --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6976-- Last block truncated in .debug_info; ignoring --6976-- WARNING: Serious error when reading debug info --6976-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --6976-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==6976== ==6976== HEAP SUMMARY: ==6976== in use at exit: 1,125,230 bytes in 11,797 blocks ==6976== total heap usage: 211,567 allocs, 199,770 frees, 19,129,315 bytes allocated ==6976== ==6976== LEAK SUMMARY: ==6976== definitely lost: 0 bytes in 0 blocks ==6976== indirectly lost: 0 bytes in 0 blocks ==6976== possibly lost: 1,248 bytes in 4 blocks ==6976== still reachable: 526,179 bytes in 3,650 blocks ==6976== of which reachable via heuristic: ==6976== length64 : 4,744 bytes in 76 blocks ==6976== newarray : 6,312 bytes in 49 blocks ==6976== suppressed: 534,779 bytes in 7,660 blocks ==6976== Rerun with --leak-check=full to see details of leaked memory ==6976== ==6976== For counts of detected and suppressed errors, rerun with: -v ==6976== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7040== Memcheck, a memory error detector ==7040== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7040== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7040== Command: ./client-test Client::Source::eds_task::testImportDelete ==7040== Parent PID: 83 ==7040== --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7040-- Ignoring non-Dwarf2/3/4 block in .debug_info --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7040-- Last block truncated in .debug_info; ignoring --7040-- WARNING: Serious error when reading debug info --7040-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7040-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7040== ==7040== HEAP SUMMARY: ==7040== in use at exit: 1,127,146 bytes in 11,838 blocks ==7040== total heap usage: 256,347 allocs, 244,509 frees, 21,563,516 bytes allocated ==7040== ==7040== LEAK SUMMARY: ==7040== definitely lost: 0 bytes in 0 blocks ==7040== indirectly lost: 0 bytes in 0 blocks ==7040== possibly lost: 480 bytes in 2 blocks ==7040== still reachable: 518,796 bytes in 3,498 blocks ==7040== of which reachable via heuristic: ==7040== length64 : 4,744 bytes in 76 blocks ==7040== newarray : 6,312 bytes in 49 blocks ==7040== suppressed: 544,678 bytes in 7,853 blocks ==7040== Rerun with --leak-check=full to see details of leaked memory ==7040== ==7040== For counts of detected and suppressed errors, rerun with: -v ==7040== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==707== Memcheck, a memory error detector ==707== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==707== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==707== Command: ./client-test Client::Source::eds_event::testImport ==707== Parent PID: 83 ==707== --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --707-- Ignoring non-Dwarf2/3/4 block in .debug_info --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --707-- Last block truncated in .debug_info; ignoring --707-- WARNING: Serious error when reading debug info --707-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --707-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==707== ==707== HEAP SUMMARY: ==707== in use at exit: 1,105,810 bytes in 11,497 blocks ==707== total heap usage: 278,501 allocs, 267,004 frees, 25,400,874 bytes allocated ==707== ==707== LEAK SUMMARY: ==707== definitely lost: 0 bytes in 0 blocks ==707== indirectly lost: 0 bytes in 0 blocks ==707== possibly lost: 1,248 bytes in 4 blocks ==707== still reachable: 504,980 bytes in 3,308 blocks ==707== of which reachable via heuristic: ==707== length64 : 4,744 bytes in 76 blocks ==707== newarray : 6,312 bytes in 49 blocks ==707== suppressed: 536,390 bytes in 7,700 blocks ==707== Rerun with --leak-check=full to see details of leaked memory ==707== ==707== For counts of detected and suppressed errors, rerun with: -v ==707== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7129== Memcheck, a memory error detector ==7129== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7129== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7129== Command: ./client-test Client::Source::eds_task::testRemoveProperties ==7129== Parent PID: 83 ==7129== --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7129-- Ignoring non-Dwarf2/3/4 block in .debug_info --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7129-- Last block truncated in .debug_info; ignoring --7129-- WARNING: Serious error when reading debug info --7129-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7129-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7129== ==7129== HEAP SUMMARY: ==7129== in use at exit: 1,123,855 bytes in 11,792 blocks ==7129== total heap usage: 241,913 allocs, 230,121 frees, 21,847,886 bytes allocated ==7129== ==7129== LEAK SUMMARY: ==7129== definitely lost: 0 bytes in 0 blocks ==7129== indirectly lost: 0 bytes in 0 blocks ==7129== possibly lost: 480 bytes in 2 blocks ==7129== still reachable: 517,613 bytes in 3,494 blocks ==7129== of which reachable via heuristic: ==7129== length64 : 4,744 bytes in 76 blocks ==7129== newarray : 6,312 bytes in 49 blocks ==7129== suppressed: 542,738 bytes in 7,813 blocks ==7129== Rerun with --leak-check=full to see details of leaked memory ==7129== ==7129== For counts of detected and suppressed errors, rerun with: -v ==7129== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7205== Memcheck, a memory error detector ==7205== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7205== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7205== Command: ./client-test Client::Source::eds_task::testManyChanges ==7205== Parent PID: 83 ==7205== --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7205-- Ignoring non-Dwarf2/3/4 block in .debug_info --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7205-- Last block truncated in .debug_info; ignoring --7205-- WARNING: Serious error when reading debug info --7205-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7205-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7205== ==7205== HEAP SUMMARY: ==7205== in use at exit: 947,403 bytes in 8,993 blocks ==7205== total heap usage: 549,821 allocs, 540,828 frees, 43,954,408 bytes allocated ==7205== ==7205== LEAK SUMMARY: ==7205== definitely lost: 0 bytes in 0 blocks ==7205== indirectly lost: 0 bytes in 0 blocks ==7205== possibly lost: 1,248 bytes in 4 blocks ==7205== still reachable: 345,408 bytes in 764 blocks ==7205== of which reachable via heuristic: ==7205== length64 : 4,744 bytes in 76 blocks ==7205== newarray : 6,312 bytes in 49 blocks ==7205== suppressed: 537,555 bytes in 7,740 blocks ==7205== Rerun with --leak-check=full to see details of leaked memory ==7205== ==7205== For counts of detected and suppressed errors, rerun with: -v ==7205== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7308== Memcheck, a memory error detector ==7308== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7308== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7308== Command: ./client-test Client::Source::eds_contact::testOpen ==7308== Parent PID: 83 ==7308== --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7308-- Ignoring non-Dwarf2/3/4 block in .debug_info --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7308-- Last block truncated in .debug_info; ignoring --7308-- WARNING: Serious error when reading debug info --7308-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7308-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7308== ==7308== HEAP SUMMARY: ==7308== in use at exit: 842,158 bytes in 8,156 blocks ==7308== total heap usage: 129,609 allocs, 121,453 frees, 12,965,272 bytes allocated ==7308== ==7308== LEAK SUMMARY: ==7308== definitely lost: 0 bytes in 0 blocks ==7308== indirectly lost: 0 bytes in 0 blocks ==7308== possibly lost: 480 bytes in 2 blocks ==7308== still reachable: 334,667 bytes in 589 blocks ==7308== of which reachable via heuristic: ==7308== length64 : 4,480 bytes in 73 blocks ==7308== newarray : 6,280 bytes in 47 blocks ==7308== suppressed: 446,411 bytes in 7,109 blocks ==7308== Rerun with --leak-check=full to see details of leaked memory ==7308== ==7308== For counts of detected and suppressed errors, rerun with: -v ==7308== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7327== Memcheck, a memory error detector ==7327== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7327== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7327== Command: ./client-test Client::Source::eds_contact::testIterateTwice ==7327== Parent PID: 83 ==7327== --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7327-- Ignoring non-Dwarf2/3/4 block in .debug_info --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7327-- Last block truncated in .debug_info; ignoring --7327-- WARNING: Serious error when reading debug info --7327-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7327-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7327== ==7327== HEAP SUMMARY: ==7327== in use at exit: 862,837 bytes in 8,477 blocks ==7327== total heap usage: 133,245 allocs, 124,768 frees, 13,147,734 bytes allocated ==7327== ==7327== LEAK SUMMARY: ==7327== definitely lost: 0 bytes in 0 blocks ==7327== indirectly lost: 0 bytes in 0 blocks ==7327== possibly lost: 1,248 bytes in 4 blocks ==7327== still reachable: 347,065 bytes in 799 blocks ==7327== of which reachable via heuristic: ==7327== length64 : 4,720 bytes in 76 blocks ==7327== newarray : 6,296 bytes in 48 blocks ==7327== suppressed: 452,348 bytes in 7,201 blocks ==7327== Rerun with --leak-check=full to see details of leaked memory ==7327== ==7327== For counts of detected and suppressed errors, rerun with: -v ==7327== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7348== Memcheck, a memory error detector ==7348== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7348== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7348== Command: ./client-test Client::Source::eds_contact::testDelete404 ==7348== Parent PID: 83 ==7348== --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7348-- Ignoring non-Dwarf2/3/4 block in .debug_info --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7348-- Last block truncated in .debug_info; ignoring --7348-- WARNING: Serious error when reading debug info --7348-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7348-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7348== ==7348== HEAP SUMMARY: ==7348== in use at exit: 856,502 bytes in 8,367 blocks ==7348== total heap usage: 133,903 allocs, 125,536 frees, 13,168,956 bytes allocated ==7348== ==7348== LEAK SUMMARY: ==7348== definitely lost: 0 bytes in 0 blocks ==7348== indirectly lost: 0 bytes in 0 blocks ==7348== possibly lost: 480 bytes in 2 blocks ==7348== still reachable: 335,486 bytes in 595 blocks ==7348== of which reachable via heuristic: ==7348== length64 : 4,720 bytes in 76 blocks ==7348== newarray : 6,296 bytes in 48 blocks ==7348== suppressed: 458,360 bytes in 7,297 blocks ==7348== Rerun with --leak-check=full to see details of leaked memory ==7348== ==7348== For counts of detected and suppressed errors, rerun with: -v ==7348== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7369== Memcheck, a memory error detector ==7369== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7369== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7369== Command: ./client-test Client::Source::eds_contact::testReadItem404 ==7369== Parent PID: 83 ==7369== --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7369-- Ignoring non-Dwarf2/3/4 block in .debug_info --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7369-- Last block truncated in .debug_info; ignoring --7369-- WARNING: Serious error when reading debug info --7369-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7369-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7369== ==7369== HEAP SUMMARY: ==7369== in use at exit: 862,892 bytes in 8,477 blocks ==7369== total heap usage: 133,593 allocs, 125,116 frees, 13,161,090 bytes allocated ==7369== ==7369== LEAK SUMMARY: ==7369== definitely lost: 0 bytes in 0 blocks ==7369== indirectly lost: 0 bytes in 0 blocks ==7369== possibly lost: 1,248 bytes in 4 blocks ==7369== still reachable: 346,864 bytes in 801 blocks ==7369== of which reachable via heuristic: ==7369== length64 : 4,720 bytes in 76 blocks ==7369== newarray : 6,296 bytes in 48 blocks ==7369== suppressed: 452,604 bytes in 7,199 blocks ==7369== Rerun with --leak-check=full to see details of leaked memory ==7369== ==7369== For counts of detected and suppressed errors, rerun with: -v ==7369== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7390== Memcheck, a memory error detector ==7390== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7390== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7390== Command: ./client-test Client::Source::eds_contact::testSimpleInsert ==7390== Parent PID: 83 ==7390== --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7390-- Ignoring non-Dwarf2/3/4 block in .debug_info --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7390-- Last block truncated in .debug_info; ignoring --7390-- WARNING: Serious error when reading debug info --7390-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7390-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7390== ==7390== HEAP SUMMARY: ==7390== in use at exit: 910,838 bytes in 8,816 blocks ==7390== total heap usage: 153,304 allocs, 144,488 frees, 14,368,236 bytes allocated ==7390== ==7390== LEAK SUMMARY: ==7390== definitely lost: 0 bytes in 0 blocks ==7390== indirectly lost: 0 bytes in 0 blocks ==7390== possibly lost: 1,632 bytes in 5 blocks ==7390== still reachable: 345,212 bytes in 751 blocks ==7390== of which reachable via heuristic: ==7390== length64 : 4,720 bytes in 76 blocks ==7390== newarray : 6,296 bytes in 48 blocks ==7390== suppressed: 481,122 bytes in 7,452 blocks ==7390== Rerun with --leak-check=full to see details of leaked memory ==7390== ==7390== For counts of detected and suppressed errors, rerun with: -v ==7390== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7417== Memcheck, a memory error detector ==7417== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7417== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7417== Command: ./client-test Client::Source::eds_contact::testLocalDeleteAll ==7417== Parent PID: 83 ==7417== --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7417-- Ignoring non-Dwarf2/3/4 block in .debug_info --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7417-- Last block truncated in .debug_info; ignoring --7417-- WARNING: Serious error when reading debug info --7417-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7417-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7417== ==7417== HEAP SUMMARY: ==7417== in use at exit: 917,284 bytes in 8,928 blocks ==7417== total heap usage: 188,098 allocs, 179,170 frees, 16,473,710 bytes allocated ==7417== ==7417== LEAK SUMMARY: ==7417== definitely lost: 0 bytes in 0 blocks ==7417== indirectly lost: 0 bytes in 0 blocks ==7417== possibly lost: 1,632 bytes in 5 blocks ==7417== still reachable: 349,012 bytes in 805 blocks ==7417== of which reachable via heuristic: ==7417== length64 : 4,720 bytes in 76 blocks ==7417== newarray : 6,296 bytes in 48 blocks ==7417== suppressed: 483,768 bytes in 7,510 blocks ==7417== Rerun with --leak-check=full to see details of leaked memory ==7417== ==7417== For counts of detected and suppressed errors, rerun with: -v ==7417== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7454== Memcheck, a memory error detector ==7454== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7454== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7454== Command: ./client-test Client::Source::eds_contact::testComplexInsert ==7454== Parent PID: 83 ==7454== --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7454-- Ignoring non-Dwarf2/3/4 block in .debug_info --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7454-- Last block truncated in .debug_info; ignoring --7454-- WARNING: Serious error when reading debug info --7454-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7454-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7454== ==7454== HEAP SUMMARY: ==7454== in use at exit: 913,523 bytes in 8,871 blocks ==7454== total heap usage: 203,353 allocs, 194,482 frees, 17,377,261 bytes allocated ==7454== ==7454== LEAK SUMMARY: ==7454== definitely lost: 0 bytes in 0 blocks ==7454== indirectly lost: 0 bytes in 0 blocks ==7454== possibly lost: 1,632 bytes in 5 blocks ==7454== still reachable: 346,235 bytes in 755 blocks ==7454== of which reachable via heuristic: ==7454== length64 : 4,720 bytes in 76 blocks ==7454== newarray : 6,296 bytes in 48 blocks ==7454== suppressed: 482,784 bytes in 7,503 blocks ==7454== Rerun with --leak-check=full to see details of leaked memory ==7454== ==7454== For counts of detected and suppressed errors, rerun with: -v ==7454== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7494== Memcheck, a memory error detector ==7494== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7494== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7494== Command: ./client-test Client::Source::eds_contact::testLocalUpdate ==7494== Parent PID: 83 ==7494== --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7494-- Ignoring non-Dwarf2/3/4 block in .debug_info --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7494-- Last block truncated in .debug_info; ignoring --7494-- WARNING: Serious error when reading debug info --7494-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7494-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7494== ==7494== HEAP SUMMARY: ==7494== in use at exit: 909,149 bytes in 8,788 blocks ==7494== total heap usage: 223,500 allocs, 214,712 frees, 18,602,585 bytes allocated ==7494== ==7494== LEAK SUMMARY: ==7494== definitely lost: 0 bytes in 0 blocks ==7494== indirectly lost: 0 bytes in 0 blocks ==7494== possibly lost: 864 bytes in 3 blocks ==7494== still reachable: 336,889 bytes in 593 blocks ==7494== of which reachable via heuristic: ==7494== length64 : 4,720 bytes in 76 blocks ==7494== newarray : 6,296 bytes in 48 blocks ==7494== suppressed: 488,524 bytes in 7,584 blocks ==7494== Rerun with --leak-check=full to see details of leaked memory ==7494== ==7494== For counts of detected and suppressed errors, rerun with: -v ==7494== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==752== Memcheck, a memory error detector ==752== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==752== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==752== Command: ./client-test Client::Source::eds_event::testImportDelete ==752== Parent PID: 83 ==752== --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --752-- Ignoring non-Dwarf2/3/4 block in .debug_info --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --752-- Last block truncated in .debug_info; ignoring --752-- WARNING: Serious error when reading debug info --752-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --752-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==752== ==752== HEAP SUMMARY: ==752== in use at exit: 1,105,020 bytes in 11,480 blocks ==752== total heap usage: 363,211 allocs, 351,731 frees, 30,475,962 bytes allocated ==752== ==752== LEAK SUMMARY: ==752== definitely lost: 0 bytes in 0 blocks ==752== indirectly lost: 0 bytes in 0 blocks ==752== possibly lost: 1,248 bytes in 4 blocks ==752== still reachable: 504,505 bytes in 3,305 blocks ==752== of which reachable via heuristic: ==752== length64 : 4,744 bytes in 76 blocks ==752== newarray : 6,312 bytes in 49 blocks ==752== suppressed: 536,243 bytes in 7,688 blocks ==752== Rerun with --leak-check=full to see details of leaked memory ==752== ==752== For counts of detected and suppressed errors, rerun with: -v ==752== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7541== Memcheck, a memory error detector ==7541== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7541== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7541== Command: ./client-test Client::Source::eds_contact::testChanges ==7541== Parent PID: 83 ==7541== --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7541-- Ignoring non-Dwarf2/3/4 block in .debug_info --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7541-- Last block truncated in .debug_info; ignoring --7541-- WARNING: Serious error when reading debug info --7541-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7541-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7541== ==7541== HEAP SUMMARY: ==7541== in use at exit: 915,629 bytes in 8,902 blocks ==7541== total heap usage: 784,137 allocs, 775,235 frees, 52,397,126 bytes allocated ==7541== ==7541== LEAK SUMMARY: ==7541== definitely lost: 0 bytes in 0 blocks ==7541== indirectly lost: 0 bytes in 0 blocks ==7541== possibly lost: 864 bytes in 3 blocks ==7541== still reachable: 339,855 bytes in 626 blocks ==7541== of which reachable via heuristic: ==7541== length64 : 4,720 bytes in 76 blocks ==7541== newarray : 6,296 bytes in 48 blocks ==7541== suppressed: 492,038 bytes in 7,665 blocks ==7541== Rerun with --leak-check=full to see details of leaked memory ==7541== ==7541== For counts of detected and suppressed errors, rerun with: -v ==7541== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7741== Memcheck, a memory error detector ==7741== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7741== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7741== Command: ./client-test Client::Source::eds_contact::testChangesMultiCycles ==7741== Parent PID: 83 ==7741== --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7741-- Ignoring non-Dwarf2/3/4 block in .debug_info --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7741-- Last block truncated in .debug_info; ignoring --7741-- WARNING: Serious error when reading debug info --7741-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7741-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7741== ==7741== HEAP SUMMARY: ==7741== in use at exit: 915,629 bytes in 8,902 blocks ==7741== total heap usage: 697,942 allocs, 689,040 frees, 44,840,691 bytes allocated ==7741== ==7741== LEAK SUMMARY: ==7741== definitely lost: 0 bytes in 0 blocks ==7741== indirectly lost: 0 bytes in 0 blocks ==7741== possibly lost: 864 bytes in 3 blocks ==7741== still reachable: 339,855 bytes in 626 blocks ==7741== of which reachable via heuristic: ==7741== length64 : 4,720 bytes in 76 blocks ==7741== newarray : 6,296 bytes in 48 blocks ==7741== suppressed: 492,038 bytes in 7,665 blocks ==7741== Rerun with --leak-check=full to see details of leaked memory ==7741== ==7741== For counts of detected and suppressed errors, rerun with: -v ==7741== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7941== Memcheck, a memory error detector ==7941== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7941== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7941== Command: ./client-test Client::Source::eds_contact::testImport ==7941== Parent PID: 83 ==7941== --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7941-- Ignoring non-Dwarf2/3/4 block in .debug_info --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7941-- Last block truncated in .debug_info; ignoring --7941-- WARNING: Serious error when reading debug info --7941-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7941-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7941== ==7941== HEAP SUMMARY: ==7941== in use at exit: 913,803 bytes in 8,879 blocks ==7941== total heap usage: 251,364 allocs, 242,485 frees, 22,610,790 bytes allocated ==7941== ==7941== LEAK SUMMARY: ==7941== definitely lost: 0 bytes in 0 blocks ==7941== indirectly lost: 0 bytes in 0 blocks ==7941== possibly lost: 1,632 bytes in 5 blocks ==7941== still reachable: 346,347 bytes in 769 blocks ==7941== of which reachable via heuristic: ==7941== length64 : 4,720 bytes in 76 blocks ==7941== newarray : 6,296 bytes in 48 blocks ==7941== suppressed: 482,952 bytes in 7,497 blocks ==7941== Rerun with --leak-check=full to see details of leaked memory ==7941== ==7941== For counts of detected and suppressed errors, rerun with: -v ==7941== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7988== Memcheck, a memory error detector ==7988== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==7988== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==7988== Command: ./client-test Client::Source::eds_contact::testImportDelete ==7988== Parent PID: 83 ==7988== --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7988-- Ignoring non-Dwarf2/3/4 block in .debug_info --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7988-- Last block truncated in .debug_info; ignoring --7988-- WARNING: Serious error when reading debug info --7988-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --7988-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==7988== ==7988== HEAP SUMMARY: ==7988== in use at exit: 917,745 bytes in 8,938 blocks ==7988== total heap usage: 307,355 allocs, 298,417 frees, 26,209,259 bytes allocated ==7988== ==7988== LEAK SUMMARY: ==7988== definitely lost: 0 bytes in 0 blocks ==7988== indirectly lost: 0 bytes in 0 blocks ==7988== possibly lost: 1,632 bytes in 5 blocks ==7988== still reachable: 349,729 bytes in 816 blocks ==7988== of which reachable via heuristic: ==7988== length64 : 4,720 bytes in 76 blocks ==7988== newarray : 6,296 bytes in 48 blocks ==7988== suppressed: 483,512 bytes in 7,509 blocks ==7988== Rerun with --leak-check=full to see details of leaked memory ==7988== ==7988== For counts of detected and suppressed errors, rerun with: -v ==7988== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8047== Memcheck, a memory error detector ==8047== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8047== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8047== Command: ./client-test Client::Source::eds_contact::testRemoveProperties ==8047== Parent PID: 83 ==8047== --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8047-- Ignoring non-Dwarf2/3/4 block in .debug_info --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8047-- Last block truncated in .debug_info; ignoring --8047-- WARNING: Serious error when reading debug info --8047-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8047-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8047== ==8047== HEAP SUMMARY: ==8047== in use at exit: 910,894 bytes in 8,818 blocks ==8047== total heap usage: 315,903 allocs, 307,085 frees, 29,275,059 bytes allocated ==8047== ==8047== LEAK SUMMARY: ==8047== definitely lost: 0 bytes in 0 blocks ==8047== indirectly lost: 0 bytes in 0 blocks ==8047== possibly lost: 1,632 bytes in 5 blocks ==8047== still reachable: 345,212 bytes in 751 blocks ==8047== of which reachable via heuristic: ==8047== length64 : 4,720 bytes in 76 blocks ==8047== newarray : 6,296 bytes in 48 blocks ==8047== suppressed: 481,178 bytes in 7,454 blocks ==8047== Rerun with --leak-check=full to see details of leaked memory ==8047== ==8047== For counts of detected and suppressed errors, rerun with: -v ==8047== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==806== Memcheck, a memory error detector ==806== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==806== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==806== Command: ./client-test Client::Source::eds_event::testRemoveProperties ==806== Parent PID: 83 ==806== --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --806-- Ignoring non-Dwarf2/3/4 block in .debug_info --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --806-- Last block truncated in .debug_info; ignoring --806-- WARNING: Serious error when reading debug info --806-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --806-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==806== ==806== HEAP SUMMARY: ==806== in use at exit: 1,105,284 bytes in 11,483 blocks ==806== total heap usage: 362,108 allocs, 350,625 frees, 34,268,582 bytes allocated ==806== ==806== LEAK SUMMARY: ==806== definitely lost: 0 bytes in 0 blocks ==806== indirectly lost: 0 bytes in 0 blocks ==806== possibly lost: 1,248 bytes in 4 blocks ==806== still reachable: 504,441 bytes in 3,304 blocks ==806== of which reachable via heuristic: ==806== length64 : 4,744 bytes in 76 blocks ==806== newarray : 6,312 bytes in 49 blocks ==806== suppressed: 536,571 bytes in 7,692 blocks ==806== Rerun with --leak-check=full to see details of leaked memory ==806== ==806== For counts of detected and suppressed errors, rerun with: -v ==806== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8099== Memcheck, a memory error detector ==8099== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8099== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8099== Command: ./client-test Client::Source::eds_contact::testManyChanges ==8099== Parent PID: 83 ==8099== --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8099-- Ignoring non-Dwarf2/3/4 block in .debug_info --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8099-- Last block truncated in .debug_info; ignoring --8099-- WARNING: Serious error when reading debug info --8099-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8099-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8099== ==8099== HEAP SUMMARY: ==8099== in use at exit: 917,341 bytes in 8,906 blocks ==8099== total heap usage: 501,631 allocs, 492,725 frees, 42,275,645 bytes allocated ==8099== ==8099== LEAK SUMMARY: ==8099== definitely lost: 0 bytes in 0 blocks ==8099== indirectly lost: 0 bytes in 0 blocks ==8099== possibly lost: 1,632 bytes in 5 blocks ==8099== still reachable: 349,406 bytes in 770 blocks ==8099== of which reachable via heuristic: ==8099== length64 : 4,720 bytes in 76 blocks ==8099== newarray : 6,296 bytes in 48 blocks ==8099== suppressed: 483,263 bytes in 7,521 blocks ==8099== Rerun with --leak-check=full to see details of leaked memory ==8099== ==8099== For counts of detected and suppressed errors, rerun with: -v ==8099== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8155== Memcheck, a memory error detector ==8155== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8155== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8155== Command: ./client-test Client::Source::eds_memo::testOpen ==8155== Parent PID: 83 ==8155== --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8155-- Ignoring non-Dwarf2/3/4 block in .debug_info --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8155-- Last block truncated in .debug_info; ignoring --8155-- WARNING: Serious error when reading debug info --8155-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8155== ==8155== HEAP SUMMARY: ==8155== in use at exit: 937,882 bytes in 8,810 blocks ==8155== total heap usage: 120,375 allocs, 111,565 frees, 12,360,138 bytes allocated ==8155== ==8155== LEAK SUMMARY: ==8155== definitely lost: 0 bytes in 0 blocks ==8155== indirectly lost: 0 bytes in 0 blocks ==8155== possibly lost: 480 bytes in 2 blocks ==8155== still reachable: 336,080 bytes in 569 blocks ==8155== of which reachable via heuristic: ==8155== length64 : 4,504 bytes in 73 blocks ==8155== newarray : 6,296 bytes in 48 blocks ==8155== suppressed: 539,914 bytes in 7,774 blocks ==8155== Rerun with --leak-check=full to see details of leaked memory ==8155== ==8155== For counts of detected and suppressed errors, rerun with: -v ==8155== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8172== Memcheck, a memory error detector ==8172== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8172== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8172== Command: ./client-test Client::Source::eds_memo::testIterateTwice ==8172== Parent PID: 83 ==8172== --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8172-- Ignoring non-Dwarf2/3/4 block in .debug_info --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8172-- Last block truncated in .debug_info; ignoring --8172-- WARNING: Serious error when reading debug info --8172-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8172-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8172== ==8172== HEAP SUMMARY: ==8172== in use at exit: 941,197 bytes in 8,891 blocks ==8172== total heap usage: 124,471 allocs, 115,580 frees, 12,559,869 bytes allocated ==8172== ==8172== LEAK SUMMARY: ==8172== definitely lost: 0 bytes in 0 blocks ==8172== indirectly lost: 0 bytes in 0 blocks ==8172== possibly lost: 1,248 bytes in 4 blocks ==8172== still reachable: 342,768 bytes in 750 blocks ==8172== of which reachable via heuristic: ==8172== length64 : 4,744 bytes in 76 blocks ==8172== newarray : 6,312 bytes in 49 blocks ==8172== suppressed: 534,157 bytes in 7,654 blocks ==8172== Rerun with --leak-check=full to see details of leaked memory ==8172== ==8172== For counts of detected and suppressed errors, rerun with: -v ==8172== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8190== Memcheck, a memory error detector ==8190== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8190== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8190== Command: ./client-test Client::Source::eds_memo::testDelete404 ==8190== Parent PID: 83 ==8190== --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8190-- Ignoring non-Dwarf2/3/4 block in .debug_info --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8190-- Last block truncated in .debug_info; ignoring --8190-- WARNING: Serious error when reading debug info --8190-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8190-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8190== ==8190== HEAP SUMMARY: ==8190== in use at exit: 943,295 bytes in 8,911 blocks ==8190== total heap usage: 124,874 allocs, 115,963 frees, 12,568,482 bytes allocated ==8190== ==8190== LEAK SUMMARY: ==8190== definitely lost: 0 bytes in 0 blocks ==8190== indirectly lost: 0 bytes in 0 blocks ==8190== possibly lost: 1,248 bytes in 4 blocks ==8190== still reachable: 343,912 bytes in 756 blocks ==8190== of which reachable via heuristic: ==8190== length64 : 4,744 bytes in 76 blocks ==8190== newarray : 6,312 bytes in 49 blocks ==8190== suppressed: 534,943 bytes in 7,666 blocks ==8190== Rerun with --leak-check=full to see details of leaked memory ==8190== ==8190== For counts of detected and suppressed errors, rerun with: -v ==8190== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8208== Memcheck, a memory error detector ==8208== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8208== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8208== Command: ./client-test Client::Source::eds_memo::testReadItem404 ==8208== Parent PID: 83 ==8208== --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8208-- Ignoring non-Dwarf2/3/4 block in .debug_info --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8208-- Last block truncated in .debug_info; ignoring --8208-- WARNING: Serious error when reading debug info --8208-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8208-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8208== ==8208== HEAP SUMMARY: ==8208== in use at exit: 945,320 bytes in 8,947 blocks ==8208== total heap usage: 124,279 allocs, 115,332 frees, 12,544,826 bytes allocated ==8208== ==8208== LEAK SUMMARY: ==8208== definitely lost: 0 bytes in 0 blocks ==8208== indirectly lost: 0 bytes in 0 blocks ==8208== possibly lost: 480 bytes in 2 blocks ==8208== still reachable: 337,665 bytes in 622 blocks ==8208== of which reachable via heuristic: ==8208== length64 : 4,744 bytes in 76 blocks ==8208== newarray : 6,312 bytes in 49 blocks ==8208== suppressed: 544,151 bytes in 7,840 blocks ==8208== Rerun with --leak-check=full to see details of leaked memory ==8208== ==8208== For counts of detected and suppressed errors, rerun with: -v ==8208== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8226== Memcheck, a memory error detector ==8226== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8226== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8226== Command: ./client-test Client::Source::eds_memo::testSimpleInsert ==8226== Parent PID: 83 ==8226== --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8226-- Ignoring non-Dwarf2/3/4 block in .debug_info --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8226-- Last block truncated in .debug_info; ignoring --8226-- WARNING: Serious error when reading debug info --8226-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8226-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8226== ==8226== HEAP SUMMARY: ==8226== in use at exit: 946,921 bytes in 8,975 blocks ==8226== total heap usage: 146,390 allocs, 137,415 frees, 13,785,537 bytes allocated ==8226== ==8226== LEAK SUMMARY: ==8226== definitely lost: 0 bytes in 0 blocks ==8226== indirectly lost: 0 bytes in 0 blocks ==8226== possibly lost: 1,248 bytes in 4 blocks ==8226== still reachable: 347,048 bytes in 800 blocks ==8226== of which reachable via heuristic: ==8226== length64 : 4,744 bytes in 76 blocks ==8226== newarray : 6,312 bytes in 49 blocks ==8226== suppressed: 535,601 bytes in 7,688 blocks ==8226== Rerun with --leak-check=full to see details of leaked memory ==8226== ==8226== For counts of detected and suppressed errors, rerun with: -v ==8226== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8256== Memcheck, a memory error detector ==8256== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8256== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8256== Command: ./client-test Client::Source::eds_memo::testLocalDeleteAll ==8256== Parent PID: 83 ==8256== --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8256-- Ignoring non-Dwarf2/3/4 block in .debug_info --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8256-- Last block truncated in .debug_info; ignoring --8256-- WARNING: Serious error when reading debug info --8256-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8256-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8256== ==8256== HEAP SUMMARY: ==8256== in use at exit: 944,632 bytes in 8,940 blocks ==8256== total heap usage: 192,680 allocs, 183,740 frees, 16,291,874 bytes allocated ==8256== ==8256== LEAK SUMMARY: ==8256== definitely lost: 0 bytes in 0 blocks ==8256== indirectly lost: 0 bytes in 0 blocks ==8256== possibly lost: 1,248 bytes in 4 blocks ==8256== still reachable: 344,216 bytes in 759 blocks ==8256== of which reachable via heuristic: ==8256== length64 : 4,744 bytes in 76 blocks ==8256== newarray : 6,312 bytes in 49 blocks ==8256== suppressed: 535,976 bytes in 7,692 blocks ==8256== Rerun with --leak-check=full to see details of leaked memory ==8256== ==8256== For counts of detected and suppressed errors, rerun with: -v ==8256== 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::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo ==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: 465,227 bytes in 3,619 blocks ==83== total heap usage: 138,888 allocs, 135,269 frees, 17,044,493 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: 96 bytes in 1 blocks ==83== still reachable: 280,519 bytes in 502 blocks ==83== of which reachable via heuristic: ==83== newarray : 5,800 bytes in 17 blocks ==83== suppressed: 184,612 bytes in 3,116 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) ==8311== Memcheck, a memory error detector ==8311== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8311== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8311== Command: ./client-test Client::Source::eds_memo::testComplexInsert ==8311== Parent PID: 83 ==8311== --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8311-- Ignoring non-Dwarf2/3/4 block in .debug_info --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8311-- Last block truncated in .debug_info; ignoring --8311-- WARNING: Serious error when reading debug info --8311-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8311-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8311== ==8311== HEAP SUMMARY: ==8311== in use at exit: 937,613 bytes in 8,836 blocks ==8311== total heap usage: 212,073 allocs, 203,237 frees, 17,356,048 bytes allocated ==8311== ==8311== LEAK SUMMARY: ==8311== definitely lost: 0 bytes in 0 blocks ==8311== indirectly lost: 0 bytes in 0 blocks ==8311== possibly lost: 1,248 bytes in 4 blocks ==8311== still reachable: 341,746 bytes in 746 blocks ==8311== of which reachable via heuristic: ==8311== length64 : 4,744 bytes in 76 blocks ==8311== newarray : 6,312 bytes in 49 blocks ==8311== suppressed: 531,595 bytes in 7,603 blocks ==8311== Rerun with --leak-check=full to see details of leaked memory ==8311== ==8311== For counts of detected and suppressed errors, rerun with: -v ==8311== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8377== Memcheck, a memory error detector ==8377== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8377== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8377== Command: ./client-test Client::Source::eds_memo::testLocalUpdate ==8377== Parent PID: 83 ==8377== --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8377-- Ignoring non-Dwarf2/3/4 block in .debug_info --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8377-- Last block truncated in .debug_info; ignoring --8377-- WARNING: Serious error when reading debug info --8377-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8377-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8377== ==8377== HEAP SUMMARY: ==8377== in use at exit: 945,208 bytes in 8,955 blocks ==8377== total heap usage: 235,960 allocs, 227,005 frees, 18,706,872 bytes allocated ==8377== ==8377== LEAK SUMMARY: ==8377== definitely lost: 0 bytes in 0 blocks ==8377== indirectly lost: 0 bytes in 0 blocks ==8377== possibly lost: 1,248 bytes in 4 blocks ==8377== still reachable: 344,600 bytes in 763 blocks ==8377== of which reachable via heuristic: ==8377== length64 : 4,744 bytes in 76 blocks ==8377== newarray : 6,312 bytes in 49 blocks ==8377== suppressed: 536,168 bytes in 7,703 blocks ==8377== Rerun with --leak-check=full to see details of leaked memory ==8377== ==8377== For counts of detected and suppressed errors, rerun with: -v ==8377== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8456== Memcheck, a memory error detector ==8456== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8456== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8456== Command: ./client-test Client::Source::eds_memo::testChanges ==8456== Parent PID: 83 ==8456== --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8456-- Ignoring non-Dwarf2/3/4 block in .debug_info --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8456-- Last block truncated in .debug_info; ignoring --8456-- WARNING: Serious error when reading debug info --8456-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8456-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8456== ==8456== HEAP SUMMARY: ==8456== in use at exit: 943,311 bytes in 8,913 blocks ==8456== total heap usage: 940,284 allocs, 931,371 frees, 57,439,981 bytes allocated ==8456== ==8456== LEAK SUMMARY: ==8456== definitely lost: 0 bytes in 0 blocks ==8456== indirectly lost: 0 bytes in 0 blocks ==8456== possibly lost: 480 bytes in 2 blocks ==8456== still reachable: 336,226 bytes in 601 blocks ==8456== of which reachable via heuristic: ==8456== length64 : 4,744 bytes in 76 blocks ==8456== newarray : 6,312 bytes in 49 blocks ==8456== suppressed: 543,413 bytes in 7,825 blocks ==8456== Rerun with --leak-check=full to see details of leaked memory ==8456== ==8456== For counts of detected and suppressed errors, rerun with: -v ==8456== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==856== Memcheck, a memory error detector ==856== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==856== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==856== Command: ./client-test Client::Source::eds_event::testManyChanges ==856== Parent PID: 83 ==856== --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --856-- Ignoring non-Dwarf2/3/4 block in .debug_info --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --856-- Last block truncated in .debug_info; ignoring --856-- WARNING: Serious error when reading debug info --856-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --856-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==856== ==856== HEAP SUMMARY: ==856== in use at exit: 949,232 bytes in 8,985 blocks ==856== total heap usage: 599,493 allocs, 590,508 frees, 48,816,641 bytes allocated ==856== ==856== LEAK SUMMARY: ==856== definitely lost: 0 bytes in 0 blocks ==856== indirectly lost: 0 bytes in 0 blocks ==856== possibly lost: 1,248 bytes in 4 blocks ==856== still reachable: 348,951 bytes in 807 blocks ==856== of which reachable via heuristic: ==856== length64 : 4,744 bytes in 76 blocks ==856== newarray : 6,312 bytes in 49 blocks ==856== suppressed: 536,009 bytes in 7,691 blocks ==856== Rerun with --leak-check=full to see details of leaked memory ==856== ==856== For counts of detected and suppressed errors, rerun with: -v ==856== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==89== Memcheck, a memory error detector ==89== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==89== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==89== Command: ./client-test Client::Source::eds_event::testOpen ==89== Parent PID: 83 ==89== --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --89-- Ignoring non-Dwarf2/3/4 block in .debug_info --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --89-- Last block truncated in .debug_info; ignoring --89-- WARNING: Serious error when reading debug info --89-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --89-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==89== ==89== HEAP SUMMARY: ==89== in use at exit: 937,227 bytes in 8,804 blocks ==89== total heap usage: 136,229 allocs, 127,425 frees, 13,175,237 bytes allocated ==89== ==89== LEAK SUMMARY: ==89== definitely lost: 0 bytes in 0 blocks ==89== indirectly lost: 0 bytes in 0 blocks ==89== possibly lost: 1,248 bytes in 4 blocks ==89== still reachable: 344,310 bytes in 748 blocks ==89== of which reachable via heuristic: ==89== length64 : 4,504 bytes in 73 blocks ==89== newarray : 6,296 bytes in 48 blocks ==89== suppressed: 530,261 bytes in 7,587 blocks ==89== Rerun with --leak-check=full to see details of leaked memory ==89== ==89== For counts of detected and suppressed errors, rerun with: -v ==89== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8918== Memcheck, a memory error detector ==8918== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==8918== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==8918== Command: ./client-test Client::Source::eds_memo::testChangesMultiCycles ==8918== Parent PID: 83 ==8918== --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8918-- Ignoring non-Dwarf2/3/4 block in .debug_info --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8918-- Last block truncated in .debug_info; ignoring --8918-- WARNING: Serious error when reading debug info --8918-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --8918-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==8918== ==8918== HEAP SUMMARY: ==8918== in use at exit: 944,632 bytes in 8,940 blocks ==8918== total heap usage: 857,317 allocs, 848,377 frees, 49,973,448 bytes allocated ==8918== ==8918== LEAK SUMMARY: ==8918== definitely lost: 0 bytes in 0 blocks ==8918== indirectly lost: 0 bytes in 0 blocks ==8918== possibly lost: 1,248 bytes in 4 blocks ==8918== still reachable: 344,216 bytes in 759 blocks ==8918== of which reachable via heuristic: ==8918== length64 : 4,744 bytes in 76 blocks ==8918== newarray : 6,312 bytes in 49 blocks ==8918== suppressed: 535,976 bytes in 7,692 blocks ==8918== Rerun with --leak-check=full to see details of leaked memory ==8918== ==8918== For counts of detected and suppressed errors, rerun with: -v ==8918== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==908== Memcheck, a memory error detector ==908== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==908== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==908== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent ==908== Parent PID: 83 ==908== --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --908-- Ignoring non-Dwarf2/3/4 block in .debug_info --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --908-- Last block truncated in .debug_info; ignoring --908-- WARNING: Serious error when reading debug info --908-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --908-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==908== ==908== HEAP SUMMARY: ==908== in use at exit: 1,108,664 bytes in 11,548 blocks ==908== total heap usage: 313,610 allocs, 302,062 frees, 24,775,012 bytes allocated ==908== ==908== LEAK SUMMARY: ==908== definitely lost: 0 bytes in 0 blocks ==908== indirectly lost: 0 bytes in 0 blocks ==908== possibly lost: 1,248 bytes in 4 blocks ==908== still reachable: 507,404 bytes in 3,359 blocks ==908== of which reachable via heuristic: ==908== length64 : 4,744 bytes in 76 blocks ==908== newarray : 6,312 bytes in 49 blocks ==908== suppressed: 536,820 bytes in 7,700 blocks ==908== Rerun with --leak-check=full to see details of leaked memory ==908== ==908== For counts of detected and suppressed errors, rerun with: -v ==908== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9381== Memcheck, a memory error detector ==9381== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==9381== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==9381== Command: ./client-test Client::Source::eds_memo::testImport ==9381== Parent PID: 83 ==9381== --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9381-- Ignoring non-Dwarf2/3/4 block in .debug_info --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9381-- Last block truncated in .debug_info; ignoring --9381-- WARNING: Serious error when reading debug info --9381-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==9381== ==9381== HEAP SUMMARY: ==9381== in use at exit: 942,452 bytes in 8,896 blocks ==9381== total heap usage: 201,836 allocs, 192,940 frees, 17,076,405 bytes allocated ==9381== ==9381== LEAK SUMMARY: ==9381== definitely lost: 0 bytes in 0 blocks ==9381== indirectly lost: 0 bytes in 0 blocks ==9381== possibly lost: 1,248 bytes in 4 blocks ==9381== still reachable: 343,732 bytes in 754 blocks ==9381== of which reachable via heuristic: ==9381== length64 : 4,744 bytes in 76 blocks ==9381== newarray : 6,312 bytes in 49 blocks ==9381== suppressed: 534,448 bytes in 7,655 blocks ==9381== Rerun with --leak-check=full to see details of leaked memory ==9381== ==9381== For counts of detected and suppressed errors, rerun with: -v ==9381== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9445== Memcheck, a memory error detector ==9445== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==9445== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==9445== Command: ./client-test Client::Source::eds_memo::testImportDelete ==9445== Parent PID: 83 ==9445== --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9445-- Ignoring non-Dwarf2/3/4 block in .debug_info --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9445-- Last block truncated in .debug_info; ignoring --9445-- WARNING: Serious error when reading debug info --9445-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9445-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==9445== ==9445== HEAP SUMMARY: ==9445== in use at exit: 943,311 bytes in 8,913 blocks ==9445== total heap usage: 251,747 allocs, 242,834 frees, 19,820,464 bytes allocated ==9445== ==9445== LEAK SUMMARY: ==9445== definitely lost: 0 bytes in 0 blocks ==9445== indirectly lost: 0 bytes in 0 blocks ==9445== possibly lost: 1,248 bytes in 4 blocks ==9445== still reachable: 343,952 bytes in 757 blocks ==9445== of which reachable via heuristic: ==9445== length64 : 4,744 bytes in 76 blocks ==9445== newarray : 6,312 bytes in 49 blocks ==9445== suppressed: 534,919 bytes in 7,667 blocks ==9445== Rerun with --leak-check=full to see details of leaked memory ==9445== ==9445== For counts of detected and suppressed errors, rerun with: -v ==9445== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9533== Memcheck, a memory error detector ==9533== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==9533== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==9533== Command: ./client-test Client::Source::eds_memo::testRemoveProperties ==9533== Parent PID: 83 ==9533== --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9533-- Ignoring non-Dwarf2/3/4 block in .debug_info --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9533-- Last block truncated in .debug_info; ignoring --9533-- WARNING: Serious error when reading debug info --9533-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9533-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==9533== ==9533== HEAP SUMMARY: ==9533== in use at exit: 945,379 bytes in 8,952 blocks ==9533== total heap usage: 231,210 allocs, 222,258 frees, 19,108,363 bytes allocated ==9533== ==9533== LEAK SUMMARY: ==9533== definitely lost: 0 bytes in 0 blocks ==9533== indirectly lost: 0 bytes in 0 blocks ==9533== possibly lost: 1,248 bytes in 4 blocks ==9533== still reachable: 345,538 bytes in 776 blocks ==9533== of which reachable via heuristic: ==9533== length64 : 4,744 bytes in 76 blocks ==9533== newarray : 6,312 bytes in 49 blocks ==9533== suppressed: 535,569 bytes in 7,689 blocks ==9533== Rerun with --leak-check=full to see details of leaked memory ==9533== ==9533== For counts of detected and suppressed errors, rerun with: -v ==9533== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9609== Memcheck, a memory error detector ==9609== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==9609== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==9609== Command: ./client-test Client::Source::eds_memo::testManyChanges ==9609== Parent PID: 83 ==9609== --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9609-- Ignoring non-Dwarf2/3/4 block in .debug_info --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9609-- Last block truncated in .debug_info; ignoring --9609-- WARNING: Serious error when reading debug info --9609-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --9609-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==9609== ==9609== HEAP SUMMARY: ==9609== in use at exit: 945,200 bytes in 8,939 blocks ==9609== total heap usage: 503,902 allocs, 494,963 frees, 41,019,667 bytes allocated ==9609== ==9609== LEAK SUMMARY: ==9609== definitely lost: 0 bytes in 0 blocks ==9609== indirectly lost: 0 bytes in 0 blocks ==9609== possibly lost: 1,248 bytes in 4 blocks ==9609== still reachable: 345,240 bytes in 760 blocks ==9609== of which reachable via heuristic: ==9609== length64 : 4,744 bytes in 76 blocks ==9609== newarray : 6,312 bytes in 49 blocks ==9609== suppressed: 535,520 bytes in 7,690 blocks ==9609== Rerun with --leak-check=full to see details of leaked memory ==9609== ==9609== For counts of detected and suppressed errors, rerun with: -v ==9609== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==973== Memcheck, a memory error detector ==973== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==973== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==973== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild ==973== Parent PID: 83 ==973== --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --973-- Ignoring non-Dwarf2/3/4 block in .debug_info --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --973-- Last block truncated in .debug_info; ignoring --973-- WARNING: Serious error when reading debug info --973-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --973-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==973== ==973== HEAP SUMMARY: ==973== in use at exit: 1,105,280 bytes in 11,482 blocks ==973== total heap usage: 313,789 allocs, 302,307 frees, 24,764,813 bytes allocated ==973== ==973== LEAK SUMMARY: ==973== definitely lost: 0 bytes in 0 blocks ==973== indirectly lost: 0 bytes in 0 blocks ==973== possibly lost: 480 bytes in 2 blocks ==973== still reachable: 496,487 bytes in 3,143 blocks ==973== of which reachable via heuristic: ==973== length64 : 4,744 bytes in 76 blocks ==973== newarray : 6,312 bytes in 49 blocks ==973== suppressed: 545,289 bytes in 7,854 blocks ==973== Rerun with --leak-check=full to see details of leaked memory ==973== ==973== For counts of detected and suppressed errors, rerun with: -v ==973== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) valgrindcheck: ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo: 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=11294 wrappercheck-72 line 115: set +e wrappercheck-72 line 116: wait 74 wrappercheck-72 line 109: perl -e 'sleep(60); kill(9, -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: '[' 11294 ']' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 11294 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: 11294 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 11294 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=11299 wrappercheck-52 line 115: set +e wrappercheck-52 line 116: wait 54 wrappercheck-52 line 109: perl -e 'sleep(60); kill(9, -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: '[' 11299 ']' wwrappercheck-52 line 122: LC_ALL=C wwrappercheck-52 line 122: kill -KILL 11299 wrappercheck-52 line 122: msg= wrappercheck-52 line 123: grep -q 'No such process' wrappercheck-52 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 11299 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-52 line 127: echo '' wrappercheck-52 line 129: wait 11299 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=11304 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: '[' 11304 ']' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 11304 wrappercheck-26 line 122: msg= wrappercheck-26 line 123: grep -q 'No such process' wrappercheck-26 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 11304 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 11304 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=11309 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -23);' wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 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: '[' 11309 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 11309 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: 11309 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 11309 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.1aRgypfvqd Fri Jan 5 16:20:55 2018 UTC (+ 2284.6s / 2998.1s) === cleaning up ===