runtests.py-28555 Fri Jan 5 15:30:47 2018 UTC (+ 2.4s / 72.6s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-xenial-amd64/home/file/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-28555 Fri Jan 5 15:30:48 2018 UTC (+ 0.2s / 72.8s) target /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/.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/file/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/file/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/file/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/file/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/file/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/file/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/file/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/file/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/file/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/file/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/config old /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/home/file/data runtests.py-28555 Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 72.8s) === starting file === runtests.py-28555 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/9-file, /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/9-file runtests.py-28555 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/file (= /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/file) runtests.py-28555 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/file; 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/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r file -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP=Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/file -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 file ./syncevolution ) Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.3s) === locking resource(s) ['file'] === Fri Jan 5 15:30:48 2018 UTC (+ 0.3s / 0.6s) property changed: status = acquired Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.6s) using jobserver Fri Jan 5 15:30:48 2018 UTC (+ 0.0s / 0.6s) === allocating 1 job slot(s) === Fri Jan 5 15:31:06 2018 UTC (+ 18.0s / 18.7s) === 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 file ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used 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 '!=' -- ']' ** Message: couldn't access control socket: /tmp/tmp.yujKOtqG3b/keyring/control: No such file or directory wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec 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 file ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-22 line 16: PIDS= wrappercheck-22 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-22 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-22 line 21: DAEMON_LOG= wrappercheck-22 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-22 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-22 line 25: declare -a BACKGROUND wrappercheck-22 line 26: declare -a ENV wrappercheck-22 line 28: '[' 26 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 31: shift wrappercheck-22 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 24 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 43: shift wrappercheck-22 line 44: DAEMON_SLEEP=5 wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 22 -gt 1 ']' wrappercheck-22 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 35: shift wrappercheck-22 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 20 -gt 1 ']' wrappercheck-22 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 50: break wrappercheck-22 line 56: '[' 20 -gt 1 ']' wrappercheck-22 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-22 line 58: shift wrappercheck-22 line 56: '[' 19 -gt 1 ']' wrappercheck-22 line 56: '[' -- '!=' -- ']' wrappercheck-22 line 60: shift wrappercheck-22 line 62: '[' evolution-source-registry.log ']' wrappercheck-22 line 62: '[' '' ']' wrappercheck-22 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-22 line 72: BACKGROUND_PID=27 wrappercheck-22 line 73: PIDS+=27 wrappercheck-22 line 75: '[' evolution-source-registry.log ']' wrappercheck-22 line 75: '[' '' ']' wrappercheck-22 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-22 line 70: set -x wrappercheck-22 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-22 line 70: exec wrappercheck-22 line 93: kill -0 27 wrappercheck-22 line 94: set +e wrappercheck-22 line 95: '[' 5 ']' wrappercheck-22 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-22 line 97: sleep 5 wrappercheck-22 line 99: set -x wrappercheck-22 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh file ./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 70: set -x wrappercheck-49 line 73: PIDS+=51 wrappercheck-49 line 70: exec wrappercheck-49 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-49 line 75: '[' '' ']' wrappercheck-49 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' 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 file ./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 file ./syncevolution + case $TEST in + case $TEST in + rm -rf 'Test_*_[12]' + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_contact_1 + for e in 1 2 + mkdir Test_file_contact_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_event_1 + for e in 1 2 + mkdir Test_file_event_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_task_1 + for e in 1 2 + mkdir Test_file_task_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_memo_1 + for e in 1 2 + mkdir Test_file_memo_2 + 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 + grep Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ 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 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-69 line 100: RET=0 wrappercheck-69 line 101: set -e wrappercheck-69 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-69 line 108: kill -INT -71 wrappercheck-69 line 108: kill -TERM -71 wrappercheck-69 line 108: kill -TERM 71 wrappercheck-69 line 110: KILL_PID=164 wrappercheck-69 line 115: set +e wrappercheck-69 line 109: perl -e 'sleep(60); kill(9, -71);' 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: '[' 164 ']' wwrappercheck-69 line 122: LC_ALL=C wwrappercheck-69 line 122: kill -KILL 164 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: 164 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-69 line 127: echo '' wrappercheck-69 line 129: wait 164 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=169 wrappercheck-49 line 115: set +e wrappercheck-49 line 109: perl -e 'sleep(60); kill(9, -51);' 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: '[' 169 ']' wwrappercheck-49 line 122: LC_ALL=C wwrappercheck-49 line 122: kill -KILL 169 wrappercheck-49 line 122: msg= wrappercheck-49 line 123: grep -q 'No such process' wrappercheck-49 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 169 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-49 line 127: echo '' wrappercheck-49 line 129: wait 169 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-22 line 100: RET=0 wrappercheck-22 line 101: set -e wrappercheck-22 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-22 line 108: kill -INT -27 wrappercheck-22 line 108: kill -TERM -27 wrappercheck-22 line 108: kill -TERM 27 wrappercheck-22 line 110: KILL_PID=174 wrappercheck-22 line 109: perl -e 'sleep(60); kill(9, -27);' wrappercheck-22 line 115: set +e wrappercheck-22 line 116: wait 27 wrappercheck-22 line 117: SUBRET=143 wrappercheck-22 line 118: case $SUBRET in wrappercheck-22 line 118: SUBRET=0 wrappercheck-22 line 120: SUBRET=0 wrappercheck-22 line 121: '[' 174 ']' wwrappercheck-22 line 122: LC_ALL=C wwrappercheck-22 line 122: kill -KILL 174 wrappercheck-22 line 122: msg= wrappercheck-22 line 123: echo '' wrappercheck-22 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 174 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-22 line 127: echo '' wrappercheck-22 line 129: wait 174 wrappercheck-22 line 131: set -e wrappercheck-22 line 132: '[' 0 = 0 ']' wrappercheck-22 line 133: RET=0 wrappercheck-22 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=179 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: '[' 179 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 179 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: echo '' wrappercheck-15 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 179 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 179 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.yujKOtqG3b Fri Jan 5 15:31:17 2018 UTC (+ 10.8s / 29.4s) === cleaning up === runtests.py-28555 Fri Jan 5 15:31:17 2018 UTC (+ 29.5s / 102.3s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-xenial-amd64/data/runtests/work/prebuilt-xenial-amd64/tests/file; 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/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-xenial-amd64/home/file/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r file -- 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=file CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP=Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-xenial-amd64/tests/file -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::file_event ) Fri Jan 5 15:31:17 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['file'] === Fri Jan 5 15:31:17 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:31:17 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:31:17 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:31:31 2018 UTC (+ 13.7s / 13.7s) === 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 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::file_event” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.2ktrNQPCPW/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 34 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 32 -gt 1 ']' wrappercheck-21 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 32 -gt 1 ']' wrappercheck-21 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 31 -gt 1 ']' wrappercheck-21 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 30 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' dbus-monitor.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-21 line 72: BACKGROUND_PID=23 wrappercheck-21 line 73: PIDS+=23 wrappercheck-21 line 75: '[' dbus-monitor.log ']' wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 84: '[' '' ']' wrappercheck-21 line 93: kill -0 23 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' '' ']' wrappercheck-21 line 70: set -x wrappercheck-21 line 99: set -x wrappercheck-21 line 70: exec wrappercheck-21 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + 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: '[' 28 -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: '[' 26 -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: '[' 24 -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: '[' 22 -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: '[' 22 -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: '[' 21 -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=28 wrappercheck-26 line 73: PIDS+=28 wrappercheck-26 line 75: '[' evolution-source-registry.log ']' wrappercheck-26 line 75: '[' '' ']' wrappercheck-26 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-26 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-26 line 70: set -x wrappercheck-26 line 70: exec wrappercheck-26 line 93: kill -0 28 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::file_event + 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: '[' 19 -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: '[' 17 -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: '[' 15 -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: '[' 15 -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: '[' 14 -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: '[' 13 -gt 1 ']' wrappercheck-52 line 56: '[' -- '!=' -- ']' wrappercheck-52 line 60: shift wrappercheck-52 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 62: '[' '' ']' wrappercheck-52 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-52 line 72: BACKGROUND_PID=54 wrappercheck-52 line 73: PIDS+=54 wrappercheck-52 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-52 line 70: set -x wrappercheck-52 line 75: '[' '' ']' wrappercheck-52 line 70: exec wrappercheck-52 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-52 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-52 line 93: kill -0 54 wrappercheck-52 line 94: set +e wrappercheck-52 line 95: '[' '' ']' wrappercheck-52 line 99: set -x wrappercheck-52 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + 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: '[' 11 -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: '[' 9 -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: '[' 9 -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: '[' 8 -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: '[' 7 -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 70: exec wrappercheck-72 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-72 line 75: '[' '' ']' wrappercheck-72 line 84: '[' '' ']' wrappercheck-72 line 93: kill -0 74 wrappercheck-72 line 94: set +e wrappercheck-72 line 95: '[' '' ']' wrappercheck-72 line 99: set -x wrappercheck-72 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event *** 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/file/valgrind.p77.c%p.out ./client-test Client::Source::file_event Client::Source::file_event::testOpen okay Client::Source::file_event::testIterateTwice okay Client::Source::file_event::testDelete404 okay Client::Source::file_event::testReadItem404 okay Client::Source::file_event::testSimpleInsert okay Client::Source::file_event::testLocalDeleteAll okay Client::Source::file_event::testComplexInsert okay Client::Source::file_event::testInsertTwice okay Client::Source::file_event::testLocalUpdate okay Client::Source::file_event::testChanges okay Client::Source::file_event::testChangesMultiCycles okay Client::Source::file_event::testImport okay Client::Source::file_event::testImportDelete okay Client::Source::file_event::testRemoveProperties okay Client::Source::file_event::testManyChanges okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsSingle404 okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsMany404 okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent okay OKvalgrindcheck (77): './client-test Client::Source::file_event' (81): returned 0 ==100== Memcheck, a memory error detector ==100== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==100== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==100== Command: ./client-test Client::Source::file_event::testImport ==100== Parent PID: 81 ==100== --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --100-- Ignoring non-Dwarf2/3/4 block in .debug_info --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --100-- Last block truncated in .debug_info; ignoring --100-- WARNING: Serious error when reading debug info --100-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --100-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==100== ==100== HEAP SUMMARY: ==100== in use at exit: 465,539 bytes in 3,629 blocks ==100== total heap usage: 160,595 allocs, 156,966 frees, 23,596,770 bytes allocated ==100== ==100== LEAK SUMMARY: ==100== definitely lost: 0 bytes in 0 blocks ==100== indirectly lost: 0 bytes in 0 blocks ==100== possibly lost: 96 bytes in 1 blocks ==100== still reachable: 280,755 bytes in 508 blocks ==100== of which reachable via heuristic: ==100== newarray : 5,800 bytes in 17 blocks ==100== suppressed: 184,688 bytes in 3,120 blocks ==100== Rerun with --leak-check=full to see details of leaked memory ==100== ==100== For counts of detected and suppressed errors, rerun with: -v ==100== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==100== could not unlink /tmp/vgdb-pipe-from-vgdb-to-100-by-nightly-on-syncev ==100== could not unlink /tmp/vgdb-pipe-to-vgdb-from-100-by-nightly-on-syncev ==100== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-100-by-nightly-on-syncev ==109== Memcheck, a memory error detector ==109== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==109== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==109== Command: ./client-test Client::Source::file_event::testImportDelete ==109== Parent PID: 81 ==109== --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --109-- Ignoring non-Dwarf2/3/4 block in .debug_info --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --109-- Last block truncated in .debug_info; ignoring --109-- WARNING: Serious error when reading debug info --109-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==109== ==109== HEAP SUMMARY: ==109== in use at exit: 465,491 bytes in 3,627 blocks ==109== total heap usage: 177,063 allocs, 173,436 frees, 25,995,407 bytes allocated ==109== ==109== LEAK SUMMARY: ==109== definitely lost: 0 bytes in 0 blocks ==109== indirectly lost: 0 bytes in 0 blocks ==109== possibly lost: 96 bytes in 1 blocks ==109== still reachable: 280,755 bytes in 508 blocks ==109== of which reachable via heuristic: ==109== newarray : 5,800 bytes in 17 blocks ==109== suppressed: 184,640 bytes in 3,118 blocks ==109== Rerun with --leak-check=full to see details of leaked memory ==109== ==109== For counts of detected and suppressed errors, rerun with: -v ==109== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==118== Memcheck, a memory error detector ==118== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==118== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==118== Command: ./client-test Client::Source::file_event::testRemoveProperties ==118== Parent PID: 81 ==118== --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --118-- Ignoring non-Dwarf2/3/4 block in .debug_info --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --118-- Last block truncated in .debug_info; ignoring --118-- WARNING: Serious error when reading debug info --118-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --118-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==118== ==118== HEAP SUMMARY: ==118== in use at exit: 465,539 bytes in 3,629 blocks ==118== total heap usage: 203,442 allocs, 199,813 frees, 30,155,845 bytes allocated ==118== ==118== LEAK SUMMARY: ==118== definitely lost: 0 bytes in 0 blocks ==118== indirectly lost: 0 bytes in 0 blocks ==118== possibly lost: 96 bytes in 1 blocks ==118== still reachable: 280,755 bytes in 508 blocks ==118== of which reachable via heuristic: ==118== newarray : 5,800 bytes in 17 blocks ==118== suppressed: 184,688 bytes in 3,120 blocks ==118== Rerun with --leak-check=full to see details of leaked memory ==118== ==118== For counts of detected and suppressed errors, rerun with: -v ==118== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==127== Memcheck, a memory error detector ==127== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==127== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==127== Command: ./client-test Client::Source::file_event::testManyChanges ==127== Parent PID: 81 ==127== --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --127-- Ignoring non-Dwarf2/3/4 block in .debug_info --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --127-- Last block truncated in .debug_info; ignoring --127-- WARNING: Serious error when reading debug info --127-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --127-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==127== ==127== HEAP SUMMARY: ==127== in use at exit: 465,539 bytes in 3,629 blocks ==127== total heap usage: 200,418 allocs, 196,789 frees, 34,160,873 bytes allocated ==127== ==127== LEAK SUMMARY: ==127== definitely lost: 0 bytes in 0 blocks ==127== indirectly lost: 0 bytes in 0 blocks ==127== possibly lost: 96 bytes in 1 blocks ==127== still reachable: 280,755 bytes in 508 blocks ==127== of which reachable via heuristic: ==127== newarray : 5,800 bytes in 17 blocks ==127== suppressed: 184,688 bytes in 3,120 blocks ==127== Rerun with --leak-check=full to see details of leaked memory ==127== ==127== For counts of detected and suppressed errors, rerun with: -v ==127== 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::file_event::LinkedItemsDefault::testLinkedItemsParent ==128== Parent PID: 81 ==128== --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- Ignoring non-Dwarf2/3/4 block in .debug_info --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- Last block truncated in .debug_info; ignoring --128-- WARNING: Serious error when reading debug info --128-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==128== ==128== HEAP SUMMARY: ==128== in use at exit: 465,491 bytes in 3,627 blocks ==128== total heap usage: 175,500 allocs, 171,873 frees, 23,319,217 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: 96 bytes in 1 blocks ==128== still reachable: 280,755 bytes in 508 blocks ==128== of which reachable via heuristic: ==128== newarray : 5,800 bytes in 17 blocks ==128== suppressed: 184,640 bytes in 3,118 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) ==137== Memcheck, a memory error detector ==137== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==137== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==137== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild ==137== Parent PID: 81 ==137== --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --137-- Ignoring non-Dwarf2/3/4 block in .debug_info --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --137-- Last block truncated in .debug_info; ignoring --137-- WARNING: Serious error when reading debug info --137-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --137-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==137== ==137== HEAP SUMMARY: ==137== in use at exit: 465,539 bytes in 3,629 blocks ==137== total heap usage: 175,502 allocs, 171,873 frees, 23,319,204 bytes allocated ==137== ==137== LEAK SUMMARY: ==137== definitely lost: 0 bytes in 0 blocks ==137== indirectly lost: 0 bytes in 0 blocks ==137== possibly lost: 96 bytes in 1 blocks ==137== still reachable: 280,755 bytes in 508 blocks ==137== of which reachable via heuristic: ==137== newarray : 5,800 bytes in 17 blocks ==137== suppressed: 184,688 bytes in 3,120 blocks ==137== Rerun with --leak-check=full to see details of leaked memory ==137== ==137== For counts of detected and suppressed errors, rerun with: -v ==137== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==146== Memcheck, a memory error detector ==146== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==146== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==146== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild ==146== Parent PID: 81 ==146== --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --146-- Ignoring non-Dwarf2/3/4 block in .debug_info --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --146-- Last block truncated in .debug_info; ignoring --146-- WARNING: Serious error when reading debug info --146-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --146-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==146== ==146== HEAP SUMMARY: ==146== in use at exit: 465,491 bytes in 3,627 blocks ==146== total heap usage: 190,507 allocs, 186,880 frees, 24,931,039 bytes allocated ==146== ==146== LEAK SUMMARY: ==146== definitely lost: 0 bytes in 0 blocks ==146== indirectly lost: 0 bytes in 0 blocks ==146== possibly lost: 96 bytes in 1 blocks ==146== still reachable: 280,755 bytes in 508 blocks ==146== of which reachable via heuristic: ==146== newarray : 5,800 bytes in 17 blocks ==146== suppressed: 184,640 bytes in 3,118 blocks ==146== Rerun with --leak-check=full to see details of leaked memory ==146== ==146== For counts of detected and suppressed errors, rerun with: -v ==146== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==155== Memcheck, a memory error detector ==155== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==155== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==155== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent ==155== Parent PID: 81 ==155== --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --155-- Ignoring non-Dwarf2/3/4 block in .debug_info --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --155-- Last block truncated in .debug_info; ignoring --155-- WARNING: Serious error when reading debug info --155-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --155-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==155== ==155== HEAP SUMMARY: ==155== in use at exit: 465,491 bytes in 3,627 blocks ==155== total heap usage: 183,204 allocs, 179,577 frees, 24,184,246 bytes allocated ==155== ==155== LEAK SUMMARY: ==155== definitely lost: 0 bytes in 0 blocks ==155== indirectly lost: 0 bytes in 0 blocks ==155== possibly lost: 96 bytes in 1 blocks ==155== still reachable: 280,755 bytes in 508 blocks ==155== of which reachable via heuristic: ==155== newarray : 5,800 bytes in 17 blocks ==155== suppressed: 184,640 bytes in 3,118 blocks ==155== Rerun with --leak-check=full to see details of leaked memory ==155== ==155== For counts of detected and suppressed errors, rerun with: -v ==155== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==164== Memcheck, a memory error detector ==164== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==164== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==164== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==164== Parent PID: 81 ==164== --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --164-- Ignoring non-Dwarf2/3/4 block in .debug_info --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --164-- Last block truncated in .debug_info; ignoring --164-- WARNING: Serious error when reading debug info --164-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --164-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==164== ==164== HEAP SUMMARY: ==164== in use at exit: 465,491 bytes in 3,627 blocks ==164== total heap usage: 191,132 allocs, 187,505 frees, 25,137,848 bytes allocated ==164== ==164== LEAK SUMMARY: ==164== definitely lost: 0 bytes in 0 blocks ==164== indirectly lost: 0 bytes in 0 blocks ==164== possibly lost: 96 bytes in 1 blocks ==164== still reachable: 280,755 bytes in 508 blocks ==164== of which reachable via heuristic: ==164== newarray : 5,800 bytes in 17 blocks ==164== suppressed: 184,640 bytes in 3,118 blocks ==164== Rerun with --leak-check=full to see details of leaked memory ==164== ==164== For counts of detected and suppressed errors, rerun with: -v ==164== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==181== Memcheck, a memory error detector ==181== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==181== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==181== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==181== Parent PID: 81 ==181== --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --181-- Ignoring non-Dwarf2/3/4 block in .debug_info --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --181-- Last block truncated in .debug_info; ignoring --181-- WARNING: Serious error when reading debug info --181-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --181-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==181== ==181== HEAP SUMMARY: ==181== in use at exit: 465,491 bytes in 3,627 blocks ==181== total heap usage: 198,312 allocs, 194,685 frees, 25,862,191 bytes allocated ==181== ==181== LEAK SUMMARY: ==181== definitely lost: 0 bytes in 0 blocks ==181== indirectly lost: 0 bytes in 0 blocks ==181== possibly lost: 96 bytes in 1 blocks ==181== still reachable: 280,755 bytes in 508 blocks ==181== of which reachable via heuristic: ==181== newarray : 5,800 bytes in 17 blocks ==181== suppressed: 184,640 bytes in 3,118 blocks ==181== Rerun with --leak-check=full to see details of leaked memory ==181== ==181== For counts of detected and suppressed errors, rerun with: -v ==181== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==198== Memcheck, a memory error detector ==198== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==198== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==198== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==198== Parent PID: 81 ==198== --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --198-- Ignoring non-Dwarf2/3/4 block in .debug_info --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --198-- Last block truncated in .debug_info; ignoring --198-- WARNING: Serious error when reading debug info --198-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --198-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==198== ==198== HEAP SUMMARY: ==198== in use at exit: 465,491 bytes in 3,627 blocks ==198== total heap usage: 205,849 allocs, 202,222 frees, 26,646,095 bytes allocated ==198== ==198== LEAK SUMMARY: ==198== definitely lost: 0 bytes in 0 blocks ==198== indirectly lost: 0 bytes in 0 blocks ==198== possibly lost: 96 bytes in 1 blocks ==198== still reachable: 280,755 bytes in 508 blocks ==198== of which reachable via heuristic: ==198== newarray : 5,800 bytes in 17 blocks ==198== suppressed: 184,640 bytes in 3,118 blocks ==198== Rerun with --leak-check=full to see details of leaked memory ==198== ==198== For counts of detected and suppressed errors, rerun with: -v ==198== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==215== Memcheck, a memory error detector ==215== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==215== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==215== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==215== Parent PID: 81 ==215== --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --215-- Ignoring non-Dwarf2/3/4 block in .debug_info --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --215-- Last block truncated in .debug_info; ignoring --215-- WARNING: Serious error when reading debug info --215-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --215-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==215== ==215== HEAP SUMMARY: ==215== in use at exit: 465,491 bytes in 3,627 blocks ==215== total heap usage: 183,533 allocs, 179,906 frees, 24,313,861 bytes allocated ==215== ==215== LEAK SUMMARY: ==215== definitely lost: 0 bytes in 0 blocks ==215== indirectly lost: 0 bytes in 0 blocks ==215== possibly lost: 96 bytes in 1 blocks ==215== still reachable: 280,755 bytes in 508 blocks ==215== of which reachable via heuristic: ==215== newarray : 5,800 bytes in 17 blocks ==215== suppressed: 184,640 bytes in 3,118 blocks ==215== Rerun with --leak-check=full to see details of leaked memory ==215== ==215== For counts of detected and suppressed errors, rerun with: -v ==215== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==232== Memcheck, a memory error detector ==232== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==232== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==232== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==232== Parent PID: 81 ==232== --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --232-- Ignoring non-Dwarf2/3/4 block in .debug_info --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --232-- Last block truncated in .debug_info; ignoring --232-- WARNING: Serious error when reading debug info --232-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --232-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==232== ==232== HEAP SUMMARY: ==232== in use at exit: 465,491 bytes in 3,627 blocks ==232== total heap usage: 183,499 allocs, 179,872 frees, 24,308,664 bytes allocated ==232== ==232== LEAK SUMMARY: ==232== definitely lost: 0 bytes in 0 blocks ==232== indirectly lost: 0 bytes in 0 blocks ==232== possibly lost: 96 bytes in 1 blocks ==232== still reachable: 280,755 bytes in 508 blocks ==232== of which reachable via heuristic: ==232== newarray : 5,800 bytes in 17 blocks ==232== suppressed: 184,640 bytes in 3,118 blocks ==232== Rerun with --leak-check=full to see details of leaked memory ==232== ==232== For counts of detected and suppressed errors, rerun with: -v ==232== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==249== Memcheck, a memory error detector ==249== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==249== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==249== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==249== Parent PID: 81 ==249== --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --249-- Ignoring non-Dwarf2/3/4 block in .debug_info --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --249-- Last block truncated in .debug_info; ignoring --249-- WARNING: Serious error when reading debug info --249-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --249-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==249== ==249== HEAP SUMMARY: ==249== in use at exit: 465,539 bytes in 3,629 blocks ==249== total heap usage: 206,034 allocs, 202,405 frees, 26,715,389 bytes allocated ==249== ==249== LEAK SUMMARY: ==249== definitely lost: 0 bytes in 0 blocks ==249== indirectly lost: 0 bytes in 0 blocks ==249== possibly lost: 96 bytes in 1 blocks ==249== still reachable: 280,755 bytes in 508 blocks ==249== of which reachable via heuristic: ==249== newarray : 5,800 bytes in 17 blocks ==249== suppressed: 184,688 bytes in 3,120 blocks ==249== Rerun with --leak-check=full to see details of leaked memory ==249== ==249== For counts of detected and suppressed errors, rerun with: -v ==249== 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::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==266== Parent PID: 81 ==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== ==266== HEAP SUMMARY: ==266== in use at exit: 465,539 bytes in 3,629 blocks ==266== total heap usage: 206,000 allocs, 202,371 frees, 26,710,416 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: 96 bytes in 1 blocks ==266== still reachable: 280,755 bytes in 508 blocks ==266== of which reachable via heuristic: ==266== newarray : 5,800 bytes in 17 blocks ==266== suppressed: 184,688 bytes in 3,120 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) ==283== Memcheck, a memory error detector ==283== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==283== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==283== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsSingle404 ==283== Parent PID: 81 ==283== --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- Ignoring non-Dwarf2/3/4 block in .debug_info --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- Last block truncated in .debug_info; ignoring --283-- WARNING: Serious error when reading debug info --283-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --283-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==283== ==283== HEAP SUMMARY: ==283== in use at exit: 465,539 bytes in 3,629 blocks ==283== total heap usage: 145,557 allocs, 141,928 frees, 20,091,381 bytes allocated ==283== ==283== LEAK SUMMARY: ==283== definitely lost: 0 bytes in 0 blocks ==283== indirectly lost: 0 bytes in 0 blocks ==283== possibly lost: 96 bytes in 1 blocks ==283== still reachable: 280,755 bytes in 508 blocks ==283== of which reachable via heuristic: ==283== newarray : 5,800 bytes in 17 blocks ==283== suppressed: 184,688 bytes in 3,120 blocks ==283== Rerun with --leak-check=full to see details of leaked memory ==283== ==283== For counts of detected and suppressed errors, rerun with: -v ==283== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==284== Memcheck, a memory error detector ==284== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==284== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==284== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsMany404 ==284== Parent PID: 81 ==284== --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --284-- Ignoring non-Dwarf2/3/4 block in .debug_info --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --284-- Last block truncated in .debug_info; ignoring --284-- WARNING: Serious error when reading debug info --284-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --284-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==284== ==284== HEAP SUMMARY: ==284== in use at exit: 465,491 bytes in 3,627 blocks ==284== total heap usage: 160,377 allocs, 156,750 frees, 21,667,232 bytes allocated ==284== ==284== LEAK SUMMARY: ==284== definitely lost: 0 bytes in 0 blocks ==284== indirectly lost: 0 bytes in 0 blocks ==284== possibly lost: 96 bytes in 1 blocks ==284== still reachable: 280,755 bytes in 508 blocks ==284== of which reachable via heuristic: ==284== newarray : 5,800 bytes in 17 blocks ==284== suppressed: 184,640 bytes in 3,118 blocks ==284== Rerun with --leak-check=full to see details of leaked memory ==284== ==284== For counts of detected and suppressed errors, rerun with: -v ==284== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==285== Memcheck, a memory error detector ==285== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==285== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==285== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent ==285== Parent PID: 81 ==285== --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --285-- Ignoring non-Dwarf2/3/4 block in .debug_info --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --285-- Last block truncated in .debug_info; ignoring --285-- WARNING: Serious error when reading debug info --285-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --285-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==285== ==285== HEAP SUMMARY: ==285== in use at exit: 465,539 bytes in 3,629 blocks ==285== total heap usage: 175,611 allocs, 171,982 frees, 23,376,619 bytes allocated ==285== ==285== LEAK SUMMARY: ==285== definitely lost: 0 bytes in 0 blocks ==285== indirectly lost: 0 bytes in 0 blocks ==285== possibly lost: 96 bytes in 1 blocks ==285== still reachable: 280,755 bytes in 508 blocks ==285== of which reachable via heuristic: ==285== newarray : 5,800 bytes in 17 blocks ==285== suppressed: 184,688 bytes in 3,120 blocks ==285== Rerun with --leak-check=full to see details of leaked memory ==285== ==285== For counts of detected and suppressed errors, rerun with: -v ==285== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==294== Memcheck, a memory error detector ==294== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==294== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==294== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild ==294== Parent PID: 81 ==294== --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --294-- Ignoring non-Dwarf2/3/4 block in .debug_info --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --294-- Last block truncated in .debug_info; ignoring --294-- WARNING: Serious error when reading debug info --294-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --294-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==294== ==294== HEAP SUMMARY: ==294== in use at exit: 465,539 bytes in 3,629 blocks ==294== total heap usage: 175,502 allocs, 171,873 frees, 23,319,558 bytes allocated ==294== ==294== LEAK SUMMARY: ==294== definitely lost: 0 bytes in 0 blocks ==294== indirectly lost: 0 bytes in 0 blocks ==294== possibly lost: 96 bytes in 1 blocks ==294== still reachable: 280,755 bytes in 508 blocks ==294== of which reachable via heuristic: ==294== newarray : 5,800 bytes in 17 blocks ==294== suppressed: 184,688 bytes in 3,120 blocks ==294== Rerun with --leak-check=full to see details of leaked memory ==294== ==294== For counts of detected and suppressed errors, rerun with: -v ==294== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==303== Memcheck, a memory error detector ==303== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==303== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==303== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==303== Parent PID: 81 ==303== --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --303-- Ignoring non-Dwarf2/3/4 block in .debug_info --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --303-- Last block truncated in .debug_info; ignoring --303-- WARNING: Serious error when reading debug info --303-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --303-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==303== ==303== HEAP SUMMARY: ==303== in use at exit: 465,539 bytes in 3,629 blocks ==303== total heap usage: 190,509 allocs, 186,880 frees, 24,931,704 bytes allocated ==303== ==303== LEAK SUMMARY: ==303== definitely lost: 0 bytes in 0 blocks ==303== indirectly lost: 0 bytes in 0 blocks ==303== possibly lost: 96 bytes in 1 blocks ==303== still reachable: 280,755 bytes in 508 blocks ==303== of which reachable via heuristic: ==303== newarray : 5,800 bytes in 17 blocks ==303== suppressed: 184,688 bytes in 3,120 blocks ==303== Rerun with --leak-check=full to see details of leaked memory ==303== ==303== For counts of detected and suppressed errors, rerun with: -v ==303== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==312== Memcheck, a memory error detector ==312== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==312== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==312== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==312== Parent PID: 81 ==312== --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --312-- Ignoring non-Dwarf2/3/4 block in .debug_info --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --312-- Last block truncated in .debug_info; ignoring --312-- WARNING: Serious error when reading debug info --312-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --312-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==312== ==312== HEAP SUMMARY: ==312== in use at exit: 465,539 bytes in 3,629 blocks ==312== total heap usage: 183,206 allocs, 179,577 frees, 24,184,951 bytes allocated ==312== ==312== LEAK SUMMARY: ==312== definitely lost: 0 bytes in 0 blocks ==312== indirectly lost: 0 bytes in 0 blocks ==312== possibly lost: 96 bytes in 1 blocks ==312== still reachable: 280,755 bytes in 508 blocks ==312== of which reachable via heuristic: ==312== newarray : 5,800 bytes in 17 blocks ==312== suppressed: 184,688 bytes in 3,120 blocks ==312== Rerun with --leak-check=full to see details of leaked memory ==312== ==312== For counts of detected and suppressed errors, rerun with: -v ==312== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==321== Memcheck, a memory error detector ==321== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==321== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==321== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==321== Parent PID: 81 ==321== --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --321-- Ignoring non-Dwarf2/3/4 block in .debug_info --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --321-- Last block truncated in .debug_info; ignoring --321-- WARNING: Serious error when reading debug info --321-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --321-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==321== ==321== HEAP SUMMARY: ==321== in use at exit: 465,539 bytes in 3,629 blocks ==321== total heap usage: 191,134 allocs, 187,505 frees, 25,138,773 bytes allocated ==321== ==321== LEAK SUMMARY: ==321== definitely lost: 0 bytes in 0 blocks ==321== indirectly lost: 0 bytes in 0 blocks ==321== possibly lost: 96 bytes in 1 blocks ==321== still reachable: 280,755 bytes in 508 blocks ==321== of which reachable via heuristic: ==321== newarray : 5,800 bytes in 17 blocks ==321== suppressed: 184,688 bytes in 3,120 blocks ==321== Rerun with --leak-check=full to see details of leaked memory ==321== ==321== For counts of detected and suppressed errors, rerun with: -v ==321== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==338== Memcheck, a memory error detector ==338== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==338== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==338== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==338== Parent PID: 81 ==338== --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --338-- Ignoring non-Dwarf2/3/4 block in .debug_info --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --338-- Last block truncated in .debug_info; ignoring --338-- WARNING: Serious error when reading debug info --338-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --338-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==338== ==338== HEAP SUMMARY: ==338== in use at exit: 465,539 bytes in 3,629 blocks ==338== total heap usage: 198,314 allocs, 194,685 frees, 25,863,082 bytes allocated ==338== ==338== LEAK SUMMARY: ==338== definitely lost: 0 bytes in 0 blocks ==338== indirectly lost: 0 bytes in 0 blocks ==338== possibly lost: 96 bytes in 1 blocks ==338== still reachable: 280,755 bytes in 508 blocks ==338== of which reachable via heuristic: ==338== newarray : 5,800 bytes in 17 blocks ==338== suppressed: 184,688 bytes in 3,120 blocks ==338== Rerun with --leak-check=full to see details of leaked memory ==338== ==338== For counts of detected and suppressed errors, rerun with: -v ==338== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==355== Memcheck, a memory error detector ==355== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==355== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==355== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==355== Parent PID: 81 ==355== --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --355-- Ignoring non-Dwarf2/3/4 block in .debug_info --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --355-- Last block truncated in .debug_info; ignoring --355-- WARNING: Serious error when reading debug info --355-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --355-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==355== ==355== HEAP SUMMARY: ==355== in use at exit: 465,539 bytes in 3,629 blocks ==355== total heap usage: 205,851 allocs, 202,222 frees, 26,647,044 bytes allocated ==355== ==355== LEAK SUMMARY: ==355== definitely lost: 0 bytes in 0 blocks ==355== indirectly lost: 0 bytes in 0 blocks ==355== possibly lost: 96 bytes in 1 blocks ==355== still reachable: 280,755 bytes in 508 blocks ==355== of which reachable via heuristic: ==355== newarray : 5,800 bytes in 17 blocks ==355== suppressed: 184,688 bytes in 3,120 blocks ==355== Rerun with --leak-check=full to see details of leaked memory ==355== ==355== For counts of detected and suppressed errors, rerun with: -v ==355== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==372== Memcheck, a memory error detector ==372== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==372== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==372== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==372== Parent PID: 81 ==372== --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --372-- Ignoring non-Dwarf2/3/4 block in .debug_info --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --372-- Last block truncated in .debug_info; ignoring --372-- WARNING: Serious error when reading debug info --372-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --372-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==372== ==372== HEAP SUMMARY: ==372== in use at exit: 465,539 bytes in 3,629 blocks ==372== total heap usage: 183,535 allocs, 179,906 frees, 24,315,040 bytes allocated ==372== ==372== LEAK SUMMARY: ==372== definitely lost: 0 bytes in 0 blocks ==372== indirectly lost: 0 bytes in 0 blocks ==372== possibly lost: 96 bytes in 1 blocks ==372== still reachable: 280,755 bytes in 508 blocks ==372== of which reachable via heuristic: ==372== newarray : 5,800 bytes in 17 blocks ==372== suppressed: 184,688 bytes in 3,120 blocks ==372== Rerun with --leak-check=full to see details of leaked memory ==372== ==372== For counts of detected and suppressed errors, rerun with: -v ==372== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==389== Memcheck, a memory error detector ==389== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==389== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==389== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==389== Parent PID: 81 ==389== --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --389-- Ignoring non-Dwarf2/3/4 block in .debug_info --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --389-- Last block truncated in .debug_info; ignoring --389-- WARNING: Serious error when reading debug info --389-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --389-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==389== ==389== HEAP SUMMARY: ==389== in use at exit: 465,539 bytes in 3,629 blocks ==389== total heap usage: 183,501 allocs, 179,872 frees, 24,309,843 bytes allocated ==389== ==389== LEAK SUMMARY: ==389== definitely lost: 0 bytes in 0 blocks ==389== indirectly lost: 0 bytes in 0 blocks ==389== possibly lost: 96 bytes in 1 blocks ==389== still reachable: 280,755 bytes in 508 blocks ==389== of which reachable via heuristic: ==389== newarray : 5,800 bytes in 17 blocks ==389== suppressed: 184,688 bytes in 3,120 blocks ==389== Rerun with --leak-check=full to see details of leaked memory ==389== ==389== For counts of detected and suppressed errors, rerun with: -v ==389== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==406== Memcheck, a memory error detector ==406== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==406== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==406== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==406== Parent PID: 81 ==406== --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --406-- Ignoring non-Dwarf2/3/4 block in .debug_info --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --406-- Last block truncated in .debug_info; ignoring --406-- WARNING: Serious error when reading debug info --406-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --406-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==406== ==406== HEAP SUMMARY: ==406== in use at exit: 465,539 bytes in 3,629 blocks ==406== total heap usage: 206,034 allocs, 202,405 frees, 26,716,957 bytes allocated ==406== ==406== LEAK SUMMARY: ==406== definitely lost: 0 bytes in 0 blocks ==406== indirectly lost: 0 bytes in 0 blocks ==406== possibly lost: 96 bytes in 1 blocks ==406== still reachable: 280,755 bytes in 508 blocks ==406== of which reachable via heuristic: ==406== newarray : 5,800 bytes in 17 blocks ==406== suppressed: 184,688 bytes in 3,120 blocks ==406== Rerun with --leak-check=full to see details of leaked memory ==406== ==406== For counts of detected and suppressed errors, rerun with: -v ==406== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==423== Memcheck, a memory error detector ==423== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==423== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==423== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==423== Parent PID: 81 ==423== --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- Ignoring non-Dwarf2/3/4 block in .debug_info --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- Last block truncated in .debug_info; ignoring --423-- WARNING: Serious error when reading debug info --423-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --423-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==423== ==423== HEAP SUMMARY: ==423== in use at exit: 465,539 bytes in 3,629 blocks ==423== total heap usage: 206,000 allocs, 202,371 frees, 26,712,012 bytes allocated ==423== ==423== LEAK SUMMARY: ==423== definitely lost: 0 bytes in 0 blocks ==423== indirectly lost: 0 bytes in 0 blocks ==423== possibly lost: 96 bytes in 1 blocks ==423== still reachable: 280,755 bytes in 508 blocks ==423== of which reachable via heuristic: ==423== newarray : 5,800 bytes in 17 blocks ==423== suppressed: 184,688 bytes in 3,120 blocks ==423== Rerun with --leak-check=full to see details of leaked memory ==423== ==423== For counts of detected and suppressed errors, rerun with: -v ==423== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==440== Memcheck, a memory error detector ==440== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==440== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==440== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent ==440== Parent PID: 81 ==440== --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --440-- Ignoring non-Dwarf2/3/4 block in .debug_info --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --440-- Last block truncated in .debug_info; ignoring --440-- WARNING: Serious error when reading debug info --440-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --440-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==440== ==440== HEAP SUMMARY: ==440== in use at exit: 465,539 bytes in 3,629 blocks ==440== total heap usage: 175,501 allocs, 171,872 frees, 23,317,392 bytes allocated ==440== ==440== LEAK SUMMARY: ==440== definitely lost: 0 bytes in 0 blocks ==440== indirectly lost: 0 bytes in 0 blocks ==440== possibly lost: 96 bytes in 1 blocks ==440== still reachable: 280,755 bytes in 508 blocks ==440== of which reachable via heuristic: ==440== newarray : 5,800 bytes in 17 blocks ==440== suppressed: 184,688 bytes in 3,120 blocks ==440== Rerun with --leak-check=full to see details of leaked memory ==440== ==440== For counts of detected and suppressed errors, rerun with: -v ==440== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==449== Memcheck, a memory error detector ==449== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==449== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==449== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild ==449== Parent PID: 81 ==449== --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --449-- Ignoring non-Dwarf2/3/4 block in .debug_info --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --449-- Last block truncated in .debug_info; ignoring --449-- WARNING: Serious error when reading debug info --449-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --449-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==449== ==449== HEAP SUMMARY: ==449== in use at exit: 465,539 bytes in 3,629 blocks ==449== total heap usage: 175,501 allocs, 171,872 frees, 23,317,297 bytes allocated ==449== ==449== LEAK SUMMARY: ==449== definitely lost: 0 bytes in 0 blocks ==449== indirectly lost: 0 bytes in 0 blocks ==449== possibly lost: 96 bytes in 1 blocks ==449== still reachable: 280,755 bytes in 508 blocks ==449== of which reachable via heuristic: ==449== newarray : 5,800 bytes in 17 blocks ==449== suppressed: 184,688 bytes in 3,120 blocks ==449== Rerun with --leak-check=full to see details of leaked memory ==449== ==449== For counts of detected and suppressed errors, rerun with: -v ==449== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==458== Memcheck, a memory error detector ==458== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==458== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==458== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild ==458== Parent PID: 81 ==458== --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --458-- Ignoring non-Dwarf2/3/4 block in .debug_info --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --458-- Last block truncated in .debug_info; ignoring --458-- WARNING: Serious error when reading debug info --458-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --458-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==458== ==458== HEAP SUMMARY: ==458== in use at exit: 465,539 bytes in 3,629 blocks ==458== total heap usage: 190,507 allocs, 186,878 frees, 24,927,350 bytes allocated ==458== ==458== LEAK SUMMARY: ==458== definitely lost: 0 bytes in 0 blocks ==458== indirectly lost: 0 bytes in 0 blocks ==458== possibly lost: 96 bytes in 1 blocks ==458== still reachable: 280,755 bytes in 508 blocks ==458== of which reachable via heuristic: ==458== newarray : 5,800 bytes in 17 blocks ==458== suppressed: 184,688 bytes in 3,120 blocks ==458== Rerun with --leak-check=full to see details of leaked memory ==458== ==458== For counts of detected and suppressed errors, rerun with: -v ==458== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==467== Memcheck, a memory error detector ==467== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==467== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==467== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent ==467== Parent PID: 81 ==467== --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --467-- Ignoring non-Dwarf2/3/4 block in .debug_info --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --467-- Last block truncated in .debug_info; ignoring --467-- WARNING: Serious error when reading debug info --467-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --467-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==467== ==467== HEAP SUMMARY: ==467== in use at exit: 465,491 bytes in 3,627 blocks ==467== total heap usage: 183,202 allocs, 179,575 frees, 24,180,509 bytes allocated ==467== ==467== LEAK SUMMARY: ==467== definitely lost: 0 bytes in 0 blocks ==467== indirectly lost: 0 bytes in 0 blocks ==467== possibly lost: 96 bytes in 1 blocks ==467== still reachable: 280,755 bytes in 508 blocks ==467== of which reachable via heuristic: ==467== newarray : 5,800 bytes in 17 blocks ==467== suppressed: 184,640 bytes in 3,118 blocks ==467== Rerun with --leak-check=full to see details of leaked memory ==467== ==467== For counts of detected and suppressed errors, rerun with: -v ==467== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==476== Memcheck, a memory error detector ==476== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==476== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==476== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==476== Parent PID: 81 ==476== --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --476-- Ignoring non-Dwarf2/3/4 block in .debug_info --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --476-- Last block truncated in .debug_info; ignoring --476-- WARNING: Serious error when reading debug info --476-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --476-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==476== ==476== HEAP SUMMARY: ==476== in use at exit: 465,491 bytes in 3,627 blocks ==476== total heap usage: 191,129 allocs, 187,502 frees, 25,132,689 bytes allocated ==476== ==476== LEAK SUMMARY: ==476== definitely lost: 0 bytes in 0 blocks ==476== indirectly lost: 0 bytes in 0 blocks ==476== possibly lost: 96 bytes in 1 blocks ==476== still reachable: 280,755 bytes in 508 blocks ==476== of which reachable via heuristic: ==476== newarray : 5,800 bytes in 17 blocks ==476== suppressed: 184,640 bytes in 3,118 blocks ==476== Rerun with --leak-check=full to see details of leaked memory ==476== ==476== For counts of detected and suppressed errors, rerun with: -v ==476== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==493== Memcheck, a memory error detector ==493== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==493== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==493== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==493== Parent PID: 81 ==493== --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --493-- Ignoring non-Dwarf2/3/4 block in .debug_info --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --493-- Last block truncated in .debug_info; ignoring --493-- WARNING: Serious error when reading debug info --493-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --493-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==493== ==493== HEAP SUMMARY: ==493== in use at exit: 465,539 bytes in 3,629 blocks ==493== total heap usage: 198,311 allocs, 194,682 frees, 25,857,006 bytes allocated ==493== ==493== LEAK SUMMARY: ==493== definitely lost: 0 bytes in 0 blocks ==493== indirectly lost: 0 bytes in 0 blocks ==493== possibly lost: 96 bytes in 1 blocks ==493== still reachable: 280,755 bytes in 508 blocks ==493== of which reachable via heuristic: ==493== newarray : 5,800 bytes in 17 blocks ==493== suppressed: 184,688 bytes in 3,120 blocks ==493== Rerun with --leak-check=full to see details of leaked memory ==493== ==493== For counts of detected and suppressed errors, rerun with: -v ==493== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==510== Memcheck, a memory error detector ==510== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==510== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==510== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==510== Parent PID: 81 ==510== --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --510-- Ignoring non-Dwarf2/3/4 block in .debug_info --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --510-- Last block truncated in .debug_info; ignoring --510-- WARNING: Serious error when reading debug info --510-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --510-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==510== ==510== HEAP SUMMARY: ==510== in use at exit: 465,539 bytes in 3,629 blocks ==510== total heap usage: 205,848 allocs, 202,219 frees, 26,641,010 bytes allocated ==510== ==510== LEAK SUMMARY: ==510== definitely lost: 0 bytes in 0 blocks ==510== indirectly lost: 0 bytes in 0 blocks ==510== possibly lost: 96 bytes in 1 blocks ==510== still reachable: 280,755 bytes in 508 blocks ==510== of which reachable via heuristic: ==510== newarray : 5,800 bytes in 17 blocks ==510== suppressed: 184,688 bytes in 3,120 blocks ==510== Rerun with --leak-check=full to see details of leaked memory ==510== ==510== For counts of detected and suppressed errors, rerun with: -v ==510== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==527== Memcheck, a memory error detector ==527== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==527== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==527== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==527== Parent PID: 81 ==527== --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --527-- Ignoring non-Dwarf2/3/4 block in .debug_info --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --527-- Last block truncated in .debug_info; ignoring --527-- WARNING: Serious error when reading debug info --527-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --527-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==527== ==527== HEAP SUMMARY: ==527== in use at exit: 465,539 bytes in 3,629 blocks ==527== total heap usage: 183,533 allocs, 179,904 frees, 24,308,952 bytes allocated ==527== ==527== LEAK SUMMARY: ==527== definitely lost: 0 bytes in 0 blocks ==527== indirectly lost: 0 bytes in 0 blocks ==527== possibly lost: 96 bytes in 1 blocks ==527== still reachable: 280,755 bytes in 508 blocks ==527== of which reachable via heuristic: ==527== newarray : 5,800 bytes in 17 blocks ==527== suppressed: 184,688 bytes in 3,120 blocks ==527== Rerun with --leak-check=full to see details of leaked memory ==527== ==527== For counts of detected and suppressed errors, rerun with: -v ==527== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==544== Memcheck, a memory error detector ==544== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==544== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==544== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==544== Parent PID: 81 ==544== --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --544-- Ignoring non-Dwarf2/3/4 block in .debug_info --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --544-- Last block truncated in .debug_info; ignoring --544-- WARNING: Serious error when reading debug info --544-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --544-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==544== ==544== HEAP SUMMARY: ==544== in use at exit: 465,491 bytes in 3,627 blocks ==544== total heap usage: 183,497 allocs, 179,870 frees, 24,303,700 bytes allocated ==544== ==544== LEAK SUMMARY: ==544== definitely lost: 0 bytes in 0 blocks ==544== indirectly lost: 0 bytes in 0 blocks ==544== possibly lost: 96 bytes in 1 blocks ==544== still reachable: 280,755 bytes in 508 blocks ==544== of which reachable via heuristic: ==544== newarray : 5,800 bytes in 17 blocks ==544== suppressed: 184,640 bytes in 3,118 blocks ==544== Rerun with --leak-check=full to see details of leaked memory ==544== ==544== For counts of detected and suppressed errors, rerun with: -v ==544== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==561== Memcheck, a memory error detector ==561== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==561== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==561== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==561== Parent PID: 81 ==561== --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --561-- Ignoring non-Dwarf2/3/4 block in .debug_info --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --561-- Last block truncated in .debug_info; ignoring --561-- WARNING: Serious error when reading debug info --561-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --561-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==561== ==561== HEAP SUMMARY: ==561== in use at exit: 465,539 bytes in 3,629 blocks ==561== total heap usage: 206,030 allocs, 202,401 frees, 26,707,113 bytes allocated ==561== ==561== LEAK SUMMARY: ==561== definitely lost: 0 bytes in 0 blocks ==561== indirectly lost: 0 bytes in 0 blocks ==561== possibly lost: 96 bytes in 1 blocks ==561== still reachable: 280,755 bytes in 508 blocks ==561== of which reachable via heuristic: ==561== newarray : 5,800 bytes in 17 blocks ==561== suppressed: 184,688 bytes in 3,120 blocks ==561== Rerun with --leak-check=full to see details of leaked memory ==561== ==561== For counts of detected and suppressed errors, rerun with: -v ==561== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==578== Memcheck, a memory error detector ==578== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==578== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==578== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==578== Parent PID: 81 ==578== --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --578-- Ignoring non-Dwarf2/3/4 block in .debug_info --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --578-- Last block truncated in .debug_info; ignoring --578-- WARNING: Serious error when reading debug info --578-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --578-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==578== ==578== HEAP SUMMARY: ==578== in use at exit: 465,491 bytes in 3,627 blocks ==578== total heap usage: 205,994 allocs, 202,367 frees, 26,702,069 bytes allocated ==578== ==578== LEAK SUMMARY: ==578== definitely lost: 0 bytes in 0 blocks ==578== indirectly lost: 0 bytes in 0 blocks ==578== possibly lost: 96 bytes in 1 blocks ==578== still reachable: 280,755 bytes in 508 blocks ==578== of which reachable via heuristic: ==578== newarray : 5,800 bytes in 17 blocks ==578== suppressed: 184,640 bytes in 3,118 blocks ==578== Rerun with --leak-check=full to see details of leaked memory ==578== ==578== For counts of detected and suppressed errors, rerun with: -v ==578== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==595== Memcheck, a memory error detector ==595== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==595== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==595== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent ==595== Parent PID: 81 ==595== --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --595-- Ignoring non-Dwarf2/3/4 block in .debug_info --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --595-- Last block truncated in .debug_info; ignoring --595-- WARNING: Serious error when reading debug info --595-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --595-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==595== ==595== HEAP SUMMARY: ==595== in use at exit: 465,539 bytes in 3,629 blocks ==595== total heap usage: 175,501 allocs, 171,872 frees, 23,317,340 bytes allocated ==595== ==595== LEAK SUMMARY: ==595== definitely lost: 0 bytes in 0 blocks ==595== indirectly lost: 0 bytes in 0 blocks ==595== possibly lost: 96 bytes in 1 blocks ==595== still reachable: 280,755 bytes in 508 blocks ==595== of which reachable via heuristic: ==595== newarray : 5,800 bytes in 17 blocks ==595== suppressed: 184,688 bytes in 3,120 blocks ==595== Rerun with --leak-check=full to see details of leaked memory ==595== ==595== For counts of detected and suppressed errors, rerun with: -v ==595== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==604== Memcheck, a memory error detector ==604== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==604== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==604== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild ==604== Parent PID: 81 ==604== --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --604-- Ignoring non-Dwarf2/3/4 block in .debug_info --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --604-- Last block truncated in .debug_info; ignoring --604-- WARNING: Serious error when reading debug info --604-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --604-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==604== ==604== HEAP SUMMARY: ==604== in use at exit: 465,491 bytes in 3,627 blocks ==604== total heap usage: 175,499 allocs, 171,872 frees, 23,317,193 bytes allocated ==604== ==604== LEAK SUMMARY: ==604== definitely lost: 0 bytes in 0 blocks ==604== indirectly lost: 0 bytes in 0 blocks ==604== possibly lost: 96 bytes in 1 blocks ==604== still reachable: 280,755 bytes in 508 blocks ==604== of which reachable via heuristic: ==604== newarray : 5,800 bytes in 17 blocks ==604== suppressed: 184,640 bytes in 3,118 blocks ==604== Rerun with --leak-check=full to see details of leaked memory ==604== ==604== For counts of detected and suppressed errors, rerun with: -v ==604== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==613== Memcheck, a memory error detector ==613== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==613== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==613== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==613== Parent PID: 81 ==613== --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --613-- Ignoring non-Dwarf2/3/4 block in .debug_info --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --613-- Last block truncated in .debug_info; ignoring --613-- WARNING: Serious error when reading debug info --613-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --613-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==613== ==613== HEAP SUMMARY: ==613== in use at exit: 465,491 bytes in 3,627 blocks ==613== total heap usage: 190,505 allocs, 186,878 frees, 24,927,192 bytes allocated ==613== ==613== LEAK SUMMARY: ==613== definitely lost: 0 bytes in 0 blocks ==613== indirectly lost: 0 bytes in 0 blocks ==613== possibly lost: 96 bytes in 1 blocks ==613== still reachable: 280,755 bytes in 508 blocks ==613== of which reachable via heuristic: ==613== newarray : 5,800 bytes in 17 blocks ==613== suppressed: 184,640 bytes in 3,118 blocks ==613== Rerun with --leak-check=full to see details of leaked memory ==613== ==613== For counts of detected and suppressed errors, rerun with: -v ==613== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==622== Memcheck, a memory error detector ==622== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==622== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==622== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==622== Parent PID: 81 ==622== --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --622-- Ignoring non-Dwarf2/3/4 block in .debug_info --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --622-- Last block truncated in .debug_info; ignoring --622-- WARNING: Serious error when reading debug info --622-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --622-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==622== ==622== HEAP SUMMARY: ==622== in use at exit: 465,539 bytes in 3,629 blocks ==622== total heap usage: 183,204 allocs, 179,575 frees, 24,180,447 bytes allocated ==622== ==622== LEAK SUMMARY: ==622== definitely lost: 0 bytes in 0 blocks ==622== indirectly lost: 0 bytes in 0 blocks ==622== possibly lost: 96 bytes in 1 blocks ==622== still reachable: 280,755 bytes in 508 blocks ==622== of which reachable via heuristic: ==622== newarray : 5,800 bytes in 17 blocks ==622== suppressed: 184,688 bytes in 3,120 blocks ==622== Rerun with --leak-check=full to see details of leaked memory ==622== ==622== For counts of detected and suppressed errors, rerun with: -v ==622== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==631== Memcheck, a memory error detector ==631== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==631== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==631== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==631== Parent PID: 81 ==631== --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --631-- Ignoring non-Dwarf2/3/4 block in .debug_info --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --631-- Last block truncated in .debug_info; ignoring --631-- WARNING: Serious error when reading debug info --631-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --631-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==631== ==631== HEAP SUMMARY: ==631== in use at exit: 465,491 bytes in 3,627 blocks ==631== total heap usage: 191,129 allocs, 187,502 frees, 25,132,533 bytes allocated ==631== ==631== LEAK SUMMARY: ==631== definitely lost: 0 bytes in 0 blocks ==631== indirectly lost: 0 bytes in 0 blocks ==631== possibly lost: 96 bytes in 1 blocks ==631== still reachable: 280,755 bytes in 508 blocks ==631== of which reachable via heuristic: ==631== newarray : 5,800 bytes in 17 blocks ==631== suppressed: 184,640 bytes in 3,118 blocks ==631== Rerun with --leak-check=full to see details of leaked memory ==631== ==631== For counts of detected and suppressed errors, rerun with: -v ==631== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==648== Memcheck, a memory error detector ==648== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==648== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==648== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==648== Parent PID: 81 ==648== --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --648-- Ignoring non-Dwarf2/3/4 block in .debug_info --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --648-- Last block truncated in .debug_info; ignoring --648-- WARNING: Serious error when reading debug info --648-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --648-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==648== ==648== HEAP SUMMARY: ==648== in use at exit: 465,491 bytes in 3,627 blocks ==648== total heap usage: 198,309 allocs, 194,682 frees, 25,856,824 bytes allocated ==648== ==648== LEAK SUMMARY: ==648== definitely lost: 0 bytes in 0 blocks ==648== indirectly lost: 0 bytes in 0 blocks ==648== possibly lost: 96 bytes in 1 blocks ==648== still reachable: 280,755 bytes in 508 blocks ==648== of which reachable via heuristic: ==648== newarray : 5,800 bytes in 17 blocks ==648== suppressed: 184,640 bytes in 3,118 blocks ==648== Rerun with --leak-check=full to see details of leaked memory ==648== ==648== For counts of detected and suppressed errors, rerun with: -v ==648== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==665== Memcheck, a memory error detector ==665== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==665== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==665== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==665== Parent PID: 81 ==665== --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --665-- Ignoring non-Dwarf2/3/4 block in .debug_info --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --665-- Last block truncated in .debug_info; ignoring --665-- WARNING: Serious error when reading debug info --665-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --665-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==665== ==665== HEAP SUMMARY: ==665== in use at exit: 465,491 bytes in 3,627 blocks ==665== total heap usage: 205,846 allocs, 202,219 frees, 26,640,805 bytes allocated ==665== ==665== LEAK SUMMARY: ==665== definitely lost: 0 bytes in 0 blocks ==665== indirectly lost: 0 bytes in 0 blocks ==665== possibly lost: 96 bytes in 1 blocks ==665== still reachable: 280,755 bytes in 508 blocks ==665== of which reachable via heuristic: ==665== newarray : 5,800 bytes in 17 blocks ==665== suppressed: 184,640 bytes in 3,118 blocks ==665== Rerun with --leak-check=full to see details of leaked memory ==665== ==665== For counts of detected and suppressed errors, rerun with: -v ==665== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==682== Memcheck, a memory error detector ==682== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==682== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==682== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==682== Parent PID: 81 ==682== --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --682-- Ignoring non-Dwarf2/3/4 block in .debug_info --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --682-- Last block truncated in .debug_info; ignoring --682-- WARNING: Serious error when reading debug info --682-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --682-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==682== ==682== HEAP SUMMARY: ==682== in use at exit: 465,491 bytes in 3,627 blocks ==682== total heap usage: 183,531 allocs, 179,904 frees, 24,308,780 bytes allocated ==682== ==682== LEAK SUMMARY: ==682== definitely lost: 0 bytes in 0 blocks ==682== indirectly lost: 0 bytes in 0 blocks ==682== possibly lost: 96 bytes in 1 blocks ==682== still reachable: 280,755 bytes in 508 blocks ==682== of which reachable via heuristic: ==682== newarray : 5,800 bytes in 17 blocks ==682== suppressed: 184,640 bytes in 3,118 blocks ==682== Rerun with --leak-check=full to see details of leaked memory ==682== ==682== For counts of detected and suppressed errors, rerun with: -v ==682== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==699== Memcheck, a memory error detector ==699== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==699== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==699== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==699== Parent PID: 81 ==699== --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --699-- Ignoring non-Dwarf2/3/4 block in .debug_info --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --699-- Last block truncated in .debug_info; ignoring --699-- WARNING: Serious error when reading debug info --699-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --699-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==699== ==699== HEAP SUMMARY: ==699== in use at exit: 465,539 bytes in 3,629 blocks ==699== total heap usage: 183,499 allocs, 179,870 frees, 24,303,471 bytes allocated ==699== ==699== LEAK SUMMARY: ==699== definitely lost: 0 bytes in 0 blocks ==699== indirectly lost: 0 bytes in 0 blocks ==699== possibly lost: 96 bytes in 1 blocks ==699== still reachable: 280,755 bytes in 508 blocks ==699== of which reachable via heuristic: ==699== newarray : 5,800 bytes in 17 blocks ==699== suppressed: 184,688 bytes in 3,120 blocks ==699== Rerun with --leak-check=full to see details of leaked memory ==699== ==699== For counts of detected and suppressed errors, rerun with: -v ==699== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==716== Memcheck, a memory error detector ==716== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==716== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==716== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==716== Parent PID: 81 ==716== --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --716-- Ignoring non-Dwarf2/3/4 block in .debug_info --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --716-- Last block truncated in .debug_info; ignoring --716-- WARNING: Serious error when reading debug info --716-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --716-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==716== ==716== HEAP SUMMARY: ==716== in use at exit: 465,491 bytes in 3,627 blocks ==716== total heap usage: 206,028 allocs, 202,401 frees, 26,706,766 bytes allocated ==716== ==716== LEAK SUMMARY: ==716== definitely lost: 0 bytes in 0 blocks ==716== indirectly lost: 0 bytes in 0 blocks ==716== possibly lost: 96 bytes in 1 blocks ==716== still reachable: 280,755 bytes in 508 blocks ==716== of which reachable via heuristic: ==716== newarray : 5,800 bytes in 17 blocks ==716== suppressed: 184,640 bytes in 3,118 blocks ==716== Rerun with --leak-check=full to see details of leaked memory ==716== ==716== For counts of detected and suppressed errors, rerun with: -v ==716== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==733== Memcheck, a memory error detector ==733== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==733== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==733== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==733== Parent PID: 81 ==733== --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --733-- Ignoring non-Dwarf2/3/4 block in .debug_info --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --733-- Last block truncated in .debug_info; ignoring --733-- WARNING: Serious error when reading debug info --733-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --733-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==733== ==733== HEAP SUMMARY: ==733== in use at exit: 465,491 bytes in 3,627 blocks ==733== total heap usage: 205,994 allocs, 202,367 frees, 26,701,830 bytes allocated ==733== ==733== LEAK SUMMARY: ==733== definitely lost: 0 bytes in 0 blocks ==733== indirectly lost: 0 bytes in 0 blocks ==733== possibly lost: 96 bytes in 1 blocks ==733== still reachable: 280,755 bytes in 508 blocks ==733== of which reachable via heuristic: ==733== newarray : 5,800 bytes in 17 blocks ==733== suppressed: 184,640 bytes in 3,118 blocks ==733== Rerun with --leak-check=full to see details of leaked memory ==733== ==733== For counts of detected and suppressed errors, rerun with: -v ==733== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==81== Memcheck, a memory error detector ==81== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==81== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==81== Command: ./client-test Client::Source::file_event ==81== Parent PID: 77 ==81== --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- Ignoring non-Dwarf2/3/4 block in .debug_info --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- Last block truncated in .debug_info; ignoring --81-- WARNING: Serious error when reading debug info --81-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --81-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==81== ==81== HEAP SUMMARY: ==81== in use at exit: 465,239 bytes in 3,619 blocks ==81== total heap usage: 180,184 allocs, 176,565 frees, 23,859,257 bytes allocated ==81== ==81== LEAK SUMMARY: ==81== definitely lost: 0 bytes in 0 blocks ==81== indirectly lost: 0 bytes in 0 blocks ==81== possibly lost: 96 bytes in 1 blocks ==81== still reachable: 280,519 bytes in 502 blocks ==81== of which reachable via heuristic: ==81== newarray : 5,800 bytes in 17 blocks ==81== suppressed: 184,624 bytes in 3,116 blocks ==81== Rerun with --leak-check=full to see details of leaked memory ==81== ==81== For counts of detected and suppressed errors, rerun with: -v ==81== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==81== could not unlink /tmp/vgdb-pipe-from-vgdb-to-81-by-nightly-on-syncev ==81== could not unlink /tmp/vgdb-pipe-to-vgdb-from-81-by-nightly-on-syncev ==81== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-81-by-nightly-on-syncev ==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::file_event::testOpen ==89== Parent PID: 81 ==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== ==89== HEAP SUMMARY: ==89== in use at exit: 465,263 bytes in 3,620 blocks ==89== total heap usage: 115,594 allocs, 111,974 frees, 16,836,790 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: 96 bytes in 1 blocks ==89== still reachable: 280,543 bytes in 503 blocks ==89== of which reachable via heuristic: ==89== newarray : 5,800 bytes in 17 blocks ==89== suppressed: 184,624 bytes in 3,116 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) ==90== Memcheck, a memory error detector ==90== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==90== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==90== Command: ./client-test Client::Source::file_event::testIterateTwice ==90== Parent PID: 81 ==90== --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --90-- Ignoring non-Dwarf2/3/4 block in .debug_info --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --90-- Last block truncated in .debug_info; ignoring --90-- WARNING: Serious error when reading debug info --90-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --90-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==90== ==90== HEAP SUMMARY: ==90== in use at exit: 465,263 bytes in 3,620 blocks ==90== total heap usage: 116,038 allocs, 112,418 frees, 17,030,452 bytes allocated ==90== ==90== LEAK SUMMARY: ==90== definitely lost: 0 bytes in 0 blocks ==90== indirectly lost: 0 bytes in 0 blocks ==90== possibly lost: 96 bytes in 1 blocks ==90== still reachable: 280,543 bytes in 503 blocks ==90== of which reachable via heuristic: ==90== newarray : 5,800 bytes in 17 blocks ==90== suppressed: 184,624 bytes in 3,116 blocks ==90== Rerun with --leak-check=full to see details of leaked memory ==90== ==90== For counts of detected and suppressed errors, rerun with: -v ==90== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==91== Memcheck, a memory error detector ==91== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==91== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==91== Command: ./client-test Client::Source::file_event::testDelete404 ==91== Parent PID: 81 ==91== --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --91-- Ignoring non-Dwarf2/3/4 block in .debug_info --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --91-- Last block truncated in .debug_info; ignoring --91-- WARNING: Serious error when reading debug info --91-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --91-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==91== ==91== HEAP SUMMARY: ==91== in use at exit: 465,263 bytes in 3,620 blocks ==91== total heap usage: 115,993 allocs, 112,373 frees, 17,019,889 bytes allocated ==91== ==91== LEAK SUMMARY: ==91== definitely lost: 0 bytes in 0 blocks ==91== indirectly lost: 0 bytes in 0 blocks ==91== possibly lost: 96 bytes in 1 blocks ==91== still reachable: 280,543 bytes in 503 blocks ==91== of which reachable via heuristic: ==91== newarray : 5,800 bytes in 17 blocks ==91== suppressed: 184,624 bytes in 3,116 blocks ==91== Rerun with --leak-check=full to see details of leaked memory ==91== ==91== For counts of detected and suppressed errors, rerun with: -v ==91== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==92== Memcheck, a memory error detector ==92== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==92== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==92== Command: ./client-test Client::Source::file_event::testReadItem404 ==92== Parent PID: 81 ==92== --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- Ignoring non-Dwarf2/3/4 block in .debug_info --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- Last block truncated in .debug_info; ignoring --92-- WARNING: Serious error when reading debug info --92-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --92-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==92== ==92== HEAP SUMMARY: ==92== in use at exit: 465,263 bytes in 3,620 blocks ==92== total heap usage: 115,993 allocs, 112,373 frees, 17,020,502 bytes allocated ==92== ==92== LEAK SUMMARY: ==92== definitely lost: 0 bytes in 0 blocks ==92== indirectly lost: 0 bytes in 0 blocks ==92== possibly lost: 96 bytes in 1 blocks ==92== still reachable: 280,543 bytes in 503 blocks ==92== of which reachable via heuristic: ==92== newarray : 5,800 bytes in 17 blocks ==92== suppressed: 184,624 bytes in 3,116 blocks ==92== Rerun with --leak-check=full to see details of leaked memory ==92== ==92== For counts of detected and suppressed errors, rerun with: -v ==92== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==93== Memcheck, a memory error detector ==93== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==93== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==93== Command: ./client-test Client::Source::file_event::testSimpleInsert ==93== Parent PID: 81 ==93== --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --93-- Ignoring non-Dwarf2/3/4 block in .debug_info --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --93-- Last block truncated in .debug_info; ignoring --93-- WARNING: Serious error when reading debug info --93-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --93-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==93== ==93== HEAP SUMMARY: ==93== in use at exit: 465,491 bytes in 3,627 blocks ==93== total heap usage: 123,668 allocs, 120,041 frees, 17,841,786 bytes allocated ==93== ==93== LEAK SUMMARY: ==93== definitely lost: 0 bytes in 0 blocks ==93== indirectly lost: 0 bytes in 0 blocks ==93== possibly lost: 96 bytes in 1 blocks ==93== still reachable: 280,755 bytes in 508 blocks ==93== of which reachable via heuristic: ==93== newarray : 5,800 bytes in 17 blocks ==93== suppressed: 184,640 bytes in 3,118 blocks ==93== Rerun with --leak-check=full to see details of leaked memory ==93== ==93== For counts of detected and suppressed errors, rerun with: -v ==93== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==94== Memcheck, a memory error detector ==94== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==94== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==94== Command: ./client-test Client::Source::file_event::testLocalDeleteAll ==94== Parent PID: 81 ==94== --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --94-- Ignoring non-Dwarf2/3/4 block in .debug_info --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --94-- Last block truncated in .debug_info; ignoring --94-- WARNING: Serious error when reading debug info --94-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --94-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==94== ==94== HEAP SUMMARY: ==94== in use at exit: 465,539 bytes in 3,629 blocks ==94== total heap usage: 138,450 allocs, 134,821 frees, 19,405,253 bytes allocated ==94== ==94== LEAK SUMMARY: ==94== definitely lost: 0 bytes in 0 blocks ==94== indirectly lost: 0 bytes in 0 blocks ==94== possibly lost: 96 bytes in 1 blocks ==94== still reachable: 280,755 bytes in 508 blocks ==94== of which reachable via heuristic: ==94== newarray : 5,800 bytes in 17 blocks ==94== suppressed: 184,688 bytes in 3,120 blocks ==94== Rerun with --leak-check=full to see details of leaked memory ==94== ==94== For counts of detected and suppressed errors, rerun with: -v ==94== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==95== Memcheck, a memory error detector ==95== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==95== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==95== Command: ./client-test Client::Source::file_event::testComplexInsert ==95== Parent PID: 81 ==95== --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --95-- Ignoring non-Dwarf2/3/4 block in .debug_info --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --95-- Last block truncated in .debug_info; ignoring --95-- WARNING: Serious error when reading debug info --95-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --95-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==95== ==95== HEAP SUMMARY: ==95== in use at exit: 465,539 bytes in 3,629 blocks ==95== total heap usage: 145,628 allocs, 141,999 frees, 20,101,508 bytes allocated ==95== ==95== LEAK SUMMARY: ==95== definitely lost: 0 bytes in 0 blocks ==95== indirectly lost: 0 bytes in 0 blocks ==95== possibly lost: 96 bytes in 1 blocks ==95== still reachable: 280,755 bytes in 508 blocks ==95== of which reachable via heuristic: ==95== newarray : 5,800 bytes in 17 blocks ==95== suppressed: 184,688 bytes in 3,120 blocks ==95== Rerun with --leak-check=full to see details of leaked memory ==95== ==95== For counts of detected and suppressed errors, rerun with: -v ==95== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==96== Memcheck, a memory error detector ==96== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==96== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==96== Command: ./client-test Client::Source::file_event::testInsertTwice ==96== Parent PID: 81 ==96== --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- Ignoring non-Dwarf2/3/4 block in .debug_info --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- Last block truncated in .debug_info; ignoring --96-- WARNING: Serious error when reading debug info --96-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --96-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==96== ==96== HEAP SUMMARY: ==96== in use at exit: 465,539 bytes in 3,629 blocks ==96== total heap usage: 131,170 allocs, 127,541 frees, 18,676,651 bytes allocated ==96== ==96== LEAK SUMMARY: ==96== definitely lost: 0 bytes in 0 blocks ==96== indirectly lost: 0 bytes in 0 blocks ==96== possibly lost: 96 bytes in 1 blocks ==96== still reachable: 280,755 bytes in 508 blocks ==96== of which reachable via heuristic: ==96== newarray : 5,800 bytes in 17 blocks ==96== suppressed: 184,688 bytes in 3,120 blocks ==96== Rerun with --leak-check=full to see details of leaked memory ==96== ==96== For counts of detected and suppressed errors, rerun with: -v ==96== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==97== Memcheck, a memory error detector ==97== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==97== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==97== Command: ./client-test Client::Source::file_event::testLocalUpdate ==97== Parent PID: 81 ==97== --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --97-- Ignoring non-Dwarf2/3/4 block in .debug_info --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --97-- Last block truncated in .debug_info; ignoring --97-- WARNING: Serious error when reading debug info --97-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --97-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==97== ==97== HEAP SUMMARY: ==97== in use at exit: 465,539 bytes in 3,629 blocks ==97== total heap usage: 153,454 allocs, 149,825 frees, 20,996,206 bytes allocated ==97== ==97== LEAK SUMMARY: ==97== definitely lost: 0 bytes in 0 blocks ==97== indirectly lost: 0 bytes in 0 blocks ==97== possibly lost: 96 bytes in 1 blocks ==97== still reachable: 280,755 bytes in 508 blocks ==97== of which reachable via heuristic: ==97== newarray : 5,800 bytes in 17 blocks ==97== suppressed: 184,688 bytes in 3,120 blocks ==97== Rerun with --leak-check=full to see details of leaked memory ==97== ==97== For counts of detected and suppressed errors, rerun with: -v ==97== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==98== Memcheck, a memory error detector ==98== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==98== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==98== Command: ./client-test Client::Source::file_event::testChanges ==98== Parent PID: 81 ==98== --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --98-- Ignoring non-Dwarf2/3/4 block in .debug_info --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --98-- Last block truncated in .debug_info; ignoring --98-- WARNING: Serious error when reading debug info --98-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --98-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==98== ==98== HEAP SUMMARY: ==98== in use at exit: 465,699 bytes in 3,629 blocks ==98== total heap usage: 390,599 allocs, 386,970 frees, 45,928,042 bytes allocated ==98== ==98== LEAK SUMMARY: ==98== definitely lost: 0 bytes in 0 blocks ==98== indirectly lost: 0 bytes in 0 blocks ==98== possibly lost: 96 bytes in 1 blocks ==98== still reachable: 280,979 bytes in 509 blocks ==98== of which reachable via heuristic: ==98== newarray : 5,800 bytes in 17 blocks ==98== suppressed: 184,624 bytes in 3,119 blocks ==98== Rerun with --leak-check=full to see details of leaked memory ==98== ==98== For counts of detected and suppressed errors, rerun with: -v ==98== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==99== Memcheck, a memory error detector ==99== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==99== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==99== Command: ./client-test Client::Source::file_event::testChangesMultiCycles ==99== Parent PID: 81 ==99== --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --99-- Ignoring non-Dwarf2/3/4 block in .debug_info --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --99-- Last block truncated in .debug_info; ignoring --99-- WARNING: Serious error when reading debug info --99-- When reading debug info from /lib/x86_64-linux-gnu/libdbus-1.so.3.14.6: --99-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==99== ==99== HEAP SUMMARY: ==99== in use at exit: 465,699 bytes in 3,629 blocks ==99== total heap usage: 303,694 allocs, 300,065 frees, 38,219,909 bytes allocated ==99== ==99== LEAK SUMMARY: ==99== definitely lost: 0 bytes in 0 blocks ==99== indirectly lost: 0 bytes in 0 blocks ==99== possibly lost: 96 bytes in 1 blocks ==99== still reachable: 280,979 bytes in 509 blocks ==99== of which reachable via heuristic: ==99== newarray : 5,800 bytes in 17 blocks ==99== suppressed: 184,624 bytes in 3,119 blocks ==99== Rerun with --leak-check=full to see details of leaked memory ==99== ==99== For counts of detected and suppressed errors, rerun with: -v ==99== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) valgrindcheck: ./client-test Client::Source::file_event: 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=1564 wrappercheck-72 line 115: set +e wrappercheck-72 line 109: perl -e 'sleep(60); kill(9, -74);' wrappercheck-72 line 116: wait 74 wrappercheck-72 line 117: SUBRET=143 wrappercheck-72 line 118: case $SUBRET in wrappercheck-72 line 118: SUBRET=0 wrappercheck-72 line 120: SUBRET=0 wrappercheck-72 line 121: '[' 1564 ']' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 1564 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: 1564 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 1564 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=1569 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: '[' 1569 ']' wwrappercheck-52 line 122: LC_ALL=C wwrappercheck-52 line 122: kill -KILL 1569 wrappercheck-52 line 122: msg= wrappercheck-52 line 123: echo '' wrappercheck-52 line 123: grep -q 'No such process' wrappercheck-52 line 127: echo '' wrappercheck-52 line 129: wait 1569 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 129: 1569 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" 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 -28 wrappercheck-26 line 108: kill -TERM -28 wrappercheck-26 line 108: kill -TERM 28 wrappercheck-26 line 110: KILL_PID=1574 wrappercheck-26 line 115: set +e wrappercheck-26 line 116: wait 28 wrappercheck-26 line 109: perl -e 'sleep(60); kill(9, -28);' 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: '[' 1574 ']' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 1574 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: 1574 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 1574 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-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-21 line 108: kill -INT -23 wrappercheck-21 line 108: kill -TERM -23 wrappercheck-21 line 108: kill -TERM 23 wrappercheck-21 line 110: KILL_PID=1579 wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 23 wrappercheck-21 line 109: perl -e 'sleep(60); kill(9, -23);' wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 1579 ']' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 1579 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: echo '' wrappercheck-21 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1579 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 1579 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.2ktrNQPCPW Fri Jan 5 15:48:09 2018 UTC (+ 998.0s / 1011.8s) === cleaning up ===