runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.9s / 1095.8s) target /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/downstream-xenial-amd64/home/unittests/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.3s / 1096.1s) target /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/.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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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/downstream-xenial-amd64/home/unittests/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-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/.cache new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/cache old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/.config new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/config old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/.local/share new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/unittests/data runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1096.1s) === starting unittests === runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1096.1s) result dir: /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/home/nightly/results/2018-01-05-07-10_all/downstream-xenial-amd64/10-unittests, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/home/nightly/results/2018-01-05-07-10_all/downstream-xenial-amd64/10-unittests runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1096.1s) changing into directory /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/unittests (= /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/unittests) runtests.py-25892 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1096.1s) *** ( cd /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/unittests; 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/downstream-xenial-amd64/home/unittests' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r unittests -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/lib/syncevolution/backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/locale schroot -d /data/runtests/work/downstream-xenial-amd64/tests/unittests -r -p -c 2018-01-05-07-10-all-downstream-xenial-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log signond.log --wait-for-dbus-daemon com.google.code.AccountsSSO.SingleSignOn SSO_LOGGING_OUTPUT=stdout SSO_DAEMON_TIMEOUT=9999 SSO_DEBUG=10 SYSLOG_FILE=signond.log SSO_LOGGING_LEVEL=2 signond -- /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 unittests ./syncevolution ) Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['unittests'] === Fri Jan 5 15:47:06 2018 UTC (+ 0.1s / 0.1s) property changed: status = acquired Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 15:56:44 2018 UTC (+ 577.8s / 577.8s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-downstream-xenial-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log signond.log --wait-for-dbus-daemon com.google.code.AccountsSSO.SingleSignOn SSO_LOGGING_OUTPUT=stdout SSO_DAEMON_TIMEOUT=9999 SSO_DEBUG=10 SYSLOG_FILE=signond.log SSO_LOGGING_LEVEL=2 signond -- /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 unittests ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 44 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=signond.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 42 -gt 1 ']' wrappercheck-15 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 35: shift wrappercheck-15 line 36: WAIT_FOR_DBUS_DAEMON=com.google.code.AccountsSSO.SingleSignOn wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 40 -gt 1 ']' wrappercheck-15 line 28: '[' SSO_LOGGING_OUTPUT=stdout '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 47: ENV[${#ENV[*]}]=SSO_LOGGING_OUTPUT=stdout wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 39 -gt 1 ']' wrappercheck-15 line 28: '[' SSO_DAEMON_TIMEOUT=9999 '!=' -- ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 47: ENV[${#ENV[*]}]=SSO_DAEMON_TIMEOUT=9999 wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 38 -gt 1 ']' wrappercheck-15 line 28: '[' SSO_DEBUG=10 '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 47: ENV[${#ENV[*]}]=SSO_DEBUG=10 wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 37 -gt 1 ']' wrappercheck-15 line 28: '[' SYSLOG_FILE=signond.log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 47: ENV[${#ENV[*]}]=SYSLOG_FILE=signond.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 36 -gt 1 ']' wrappercheck-15 line 28: '[' SSO_LOGGING_LEVEL=2 '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 47: ENV[${#ENV[*]}]=SSO_LOGGING_LEVEL=2 wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 35 -gt 1 ']' wrappercheck-15 line 28: '[' signond '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 35 -gt 1 ']' wrappercheck-15 line 56: '[' signond '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=signond wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 34 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' signond.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting signond as background daemon, output to signond.log ** Message: couldn't access control socket: /tmp/tmp.YfwRZVibdr/keyring/control: No such file or directory wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' signond.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' com.google.code.AccountsSSO.SingleSignOn ']' wrappercheck-15 line 85: set +x *** waiting for daemon to connect to D-Bus as 'com.google.code.AccountsSSO.SingleSignOn' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log 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 unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-33 line 16: PIDS= wrappercheck-33 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-33 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-33 line 21: DAEMON_LOG= wrappercheck-33 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-33 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-33 line 25: declare -a BACKGROUND wrappercheck-33 line 26: declare -a ENV wrappercheck-33 line 28: '[' 32 -gt 1 ']' wrappercheck-33 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-33 line 29: case "$1" in wrappercheck-33 line 31: shift wrappercheck-33 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-33 line 53: shift wrappercheck-33 line 28: '[' 30 -gt 1 ']' wrappercheck-33 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-33 line 29: case "$1" in wrappercheck-33 line 50: break wrappercheck-33 line 56: '[' 30 -gt 1 ']' wrappercheck-33 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-33 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-33 line 58: shift wrappercheck-33 line 56: '[' 29 -gt 1 ']' wrappercheck-33 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-33 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-33 line 58: shift wrappercheck-33 line 56: '[' 28 -gt 1 ']' wrappercheck-33 line 56: '[' -- '!=' -- ']' wrappercheck-33 line 60: shift wrappercheck-33 line 62: '[' dbus-monitor.log ']' wrappercheck-33 line 62: '[' '' ']' wrappercheck-33 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-33 line 72: BACKGROUND_PID=35 wrappercheck-33 line 73: PIDS+=35 wrappercheck-33 line 70: set -x wrappercheck-33 line 70: exec wrappercheck-33 line 75: '[' dbus-monitor.log ']' wrappercheck-33 line 75: '[' '' ']' wrappercheck-33 line 84: '[' '' ']' wrappercheck-33 line 93: kill -0 35 wrappercheck-33 line 94: set +e wrappercheck-33 line 95: '[' '' ']' wrappercheck-33 line 99: set -x wrappercheck-33 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 unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-38 line 16: PIDS= wrappercheck-38 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-38 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-38 line 21: DAEMON_LOG= wrappercheck-38 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-38 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-38 line 25: declare -a BACKGROUND wrappercheck-38 line 26: declare -a ENV wrappercheck-38 line 28: '[' 26 -gt 1 ']' wrappercheck-38 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-38 line 29: case "$1" in wrappercheck-38 line 31: shift wrappercheck-38 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-38 line 53: shift wrappercheck-38 line 28: '[' 24 -gt 1 ']' wrappercheck-38 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-38 line 29: case "$1" in wrappercheck-38 line 43: shift wrappercheck-38 line 44: DAEMON_SLEEP=5 wrappercheck-38 line 53: shift wrappercheck-38 line 28: '[' 22 -gt 1 ']' wrappercheck-38 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-38 line 29: case "$1" in wrappercheck-38 line 35: shift wrappercheck-38 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-38 line 53: shift wrappercheck-38 line 28: '[' 20 -gt 1 ']' wrappercheck-38 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-38 line 29: case "$1" in wrappercheck-38 line 50: break wrappercheck-38 line 56: '[' 20 -gt 1 ']' wrappercheck-38 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-38 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-38 line 58: shift wrappercheck-38 line 56: '[' 19 -gt 1 ']' wrappercheck-38 line 56: '[' -- '!=' -- ']' wrappercheck-38 line 60: shift wrappercheck-38 line 62: '[' evolution-source-registry.log ']' wrappercheck-38 line 62: '[' '' ']' wrappercheck-38 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-38 line 72: BACKGROUND_PID=42 wrappercheck-38 line 73: PIDS+=42 wrappercheck-38 line 70: set -x wrappercheck-38 line 75: '[' evolution-source-registry.log ']' wrappercheck-38 line 70: exec wrappercheck-38 line 75: '[' '' ']' wrappercheck-38 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-38 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-38 line 93: kill -0 42 wrappercheck-38 line 94: set +e wrappercheck-38 line 95: '[' 5 ']' wrappercheck-38 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-38 line 97: sleep 5 wrappercheck-38 line 99: set -x wrappercheck-38 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 unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-62 line 16: PIDS= wrappercheck-62 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-62 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-62 line 21: DAEMON_LOG= wrappercheck-62 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-62 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-62 line 25: declare -a BACKGROUND wrappercheck-62 line 26: declare -a ENV wrappercheck-62 line 28: '[' 17 -gt 1 ']' wrappercheck-62 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-62 line 29: case "$1" in wrappercheck-62 line 31: shift wrappercheck-62 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-62 line 53: shift wrappercheck-62 line 28: '[' 15 -gt 1 ']' wrappercheck-62 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-62 line 29: case "$1" in wrappercheck-62 line 35: shift wrappercheck-62 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-62 line 53: shift wrappercheck-62 line 28: '[' 13 -gt 1 ']' wrappercheck-62 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-62 line 29: case "$1" in wrappercheck-62 line 50: break wrappercheck-62 line 56: '[' 13 -gt 1 ']' wrappercheck-62 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-62 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-62 line 58: shift wrappercheck-62 line 56: '[' 12 -gt 1 ']' wrappercheck-62 line 56: '[' --keep-running '!=' -- ']' wrappercheck-62 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-62 line 58: shift wrappercheck-62 line 56: '[' 11 -gt 1 ']' wrappercheck-62 line 56: '[' -- '!=' -- ']' wrappercheck-62 line 60: shift wrappercheck-62 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-62 line 62: '[' '' ']' wrappercheck-62 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-62 line 72: BACKGROUND_PID=64 wrappercheck-62 line 73: PIDS+=64 wrappercheck-62 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-62 line 75: '[' '' ']' wrappercheck-62 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-62 line 70: set -x wrappercheck-62 line 70: exec wrappercheck-62 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-62 line 93: kill -0 64 wrappercheck-62 line 94: set +e wrappercheck-62 line 95: '[' '' ']' wrappercheck-62 line 99: set -x wrappercheck-62 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 unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 9 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 7 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 7 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 6 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 5 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 84: '[' '' ']' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 70: set -x wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 70: exec wrappercheck-82 line 99: set -x wrappercheck-82 line 99: env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution + case $TEST in + case $TEST in + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ sed -e 's/.*=//' ++ echo evolution-memos=eds_memo + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + grep Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=344 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 344 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 344 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: grep -q 'No such process' wrappercheck-82 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 344 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 344 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-62 line 100: RET=0 wrappercheck-62 line 101: set -e wrappercheck-62 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-62 line 108: kill -INT -64 wrappercheck-62 line 108: kill -TERM -64 wrappercheck-62 line 108: kill -TERM 64 wrappercheck-62 line 110: KILL_PID=349 wrappercheck-62 line 115: set +e wrappercheck-62 line 116: wait 64 wrappercheck-62 line 109: perl -e 'sleep(60); kill(9, -64);' wrappercheck-62 line 117: SUBRET=143 wrappercheck-62 line 118: case $SUBRET in wrappercheck-62 line 118: SUBRET=0 wrappercheck-62 line 120: SUBRET=0 wrappercheck-62 line 121: '[' 349 ']' wwrappercheck-62 line 122: LC_ALL=C wwrappercheck-62 line 122: kill -KILL 349 wrappercheck-62 line 122: msg= wrappercheck-62 line 123: grep -q 'No such process' wrappercheck-62 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 349 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-62 line 127: echo '' wrappercheck-62 line 129: wait 349 wrappercheck-62 line 131: set -e wrappercheck-62 line 132: '[' 0 = 0 ']' wrappercheck-62 line 133: RET=0 wrappercheck-62 line 136: exit 0 wrappercheck-38 line 100: RET=0 wrappercheck-38 line 101: set -e wrappercheck-38 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-38 line 108: kill -INT -42 wrappercheck-38 line 108: kill -TERM -42 wrappercheck-38 line 108: kill -TERM 42 wrappercheck-38 line 110: KILL_PID=354 wrappercheck-38 line 115: set +e wrappercheck-38 line 116: wait 42 wrappercheck-38 line 109: perl -e 'sleep(60); kill(9, -42);' wrappercheck-38 line 117: SUBRET=143 wrappercheck-38 line 118: case $SUBRET in wrappercheck-38 line 118: SUBRET=0 wrappercheck-38 line 120: SUBRET=0 wrappercheck-38 line 121: '[' 354 ']' wwrappercheck-38 line 122: LC_ALL=C wwrappercheck-38 line 122: kill -KILL 354 wrappercheck-38 line 122: msg= wrappercheck-38 line 123: echo '' wrappercheck-38 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 354 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-38 line 127: echo '' wrappercheck-38 line 129: wait 354 wrappercheck-38 line 131: set -e wrappercheck-38 line 132: '[' 0 = 0 ']' wrappercheck-38 line 133: RET=0 wrappercheck-38 line 136: exit 0 wrappercheck-33 line 100: RET=0 wrappercheck-33 line 101: set -e wrappercheck-33 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-33 line 108: kill -INT -35 wrappercheck-33 line 108: kill -TERM -35 wrappercheck-33 line 108: kill -TERM 35 wrappercheck-33 line 110: KILL_PID=359 wrappercheck-33 line 109: perl -e 'sleep(60); kill(9, -35);' wrappercheck-33 line 115: set +e wrappercheck-33 line 116: wait 35 wrappercheck-33 line 117: SUBRET=143 wrappercheck-33 line 118: case $SUBRET in wrappercheck-33 line 118: SUBRET=0 wrappercheck-33 line 120: SUBRET=0 wrappercheck-33 line 121: '[' 359 ']' wwrappercheck-33 line 122: LC_ALL=C wwrappercheck-33 line 122: kill -KILL 359 wrappercheck-33 line 122: msg= wrappercheck-33 line 123: echo '' wrappercheck-33 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 359 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-33 line 127: echo '' wrappercheck-33 line 129: wait 359 wrappercheck-33 line 131: set -e wrappercheck-33 line 132: '[' 0 = 0 ']' wrappercheck-33 line 133: RET=0 wrappercheck-33 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 signond 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=364 wrappercheck-15 line 115: set +e wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' 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: '[' 364 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 364 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: 364 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 364 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.YfwRZVibdr Fri Jan 5 15:56:52 2018 UTC (+ 8.8s / 586.6s) === cleaning up === runtests.py-25892 Fri Jan 5 15:56:52 2018 UTC (+ 586.6s / 1682.7s) *** ( cd /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/unittests; 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/downstream-xenial-amd64/home/unittests' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/unittests/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r unittests -- 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=unittests CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/lib/syncevolution/backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/downstream-xenial-amd64/tests/unittests -r -p -c 2018-01-05-07-10-all-downstream-xenial-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log signond.log --wait-for-dbus-daemon com.google.code.AccountsSSO.SingleSignOn SSO_LOGGING_OUTPUT=stdout SSO_DAEMON_TIMEOUT=9999 SSO_DEBUG=10 SYSLOG_FILE=signond.log SSO_LOGGING_LEVEL=2 signond -- /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 SyncEvolution ) Fri Jan 5 15:56:53 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['unittests'] === Fri Jan 5 15:56:53 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:56:53 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:56:53 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 16:03:50 2018 UTC (+ 417.1s / 417.2s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-downstream-xenial-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log signond.log --wait-for-dbus-daemon com.google.code.AccountsSSO.SingleSignOn SSO_LOGGING_OUTPUT=stdout SSO_DAEMON_TIMEOUT=9999 SSO_DEBUG=10 SYSLOG_FILE=signond.log SSO_LOGGING_LEVEL=2 signond -- /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 SyncEvolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.3GpQDgkcmK/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 46 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=signond.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 44 -gt 1 ']' wrappercheck-18 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 35: shift wrappercheck-18 line 36: WAIT_FOR_DBUS_DAEMON=com.google.code.AccountsSSO.SingleSignOn wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 42 -gt 1 ']' wrappercheck-18 line 28: '[' SSO_LOGGING_OUTPUT=stdout '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 47: ENV[${#ENV[*]}]=SSO_LOGGING_OUTPUT=stdout wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 41 -gt 1 ']' wrappercheck-18 line 28: '[' SSO_DAEMON_TIMEOUT=9999 '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 47: ENV[${#ENV[*]}]=SSO_DAEMON_TIMEOUT=9999 wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 40 -gt 1 ']' wrappercheck-18 line 28: '[' SSO_DEBUG=10 '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 47: ENV[${#ENV[*]}]=SSO_DEBUG=10 wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 39 -gt 1 ']' wrappercheck-18 line 28: '[' SYSLOG_FILE=signond.log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 47: ENV[${#ENV[*]}]=SYSLOG_FILE=signond.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 38 -gt 1 ']' wrappercheck-18 line 28: '[' SSO_LOGGING_LEVEL=2 '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 47: ENV[${#ENV[*]}]=SSO_LOGGING_LEVEL=2 wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 37 -gt 1 ']' wrappercheck-18 line 28: '[' signond '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 37 -gt 1 ']' wrappercheck-18 line 56: '[' signond '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=signond wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 36 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' signond.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting signond as background daemon, output to signond.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 75: '[' signond.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' com.google.code.AccountsSSO.SingleSignOn ']' wrappercheck-18 line 85: set +x *** waiting for daemon to connect to D-Bus as 'com.google.code.AccountsSSO.SingleSignOn' wrappercheck-18 line 70: set -x wrappercheck-18 line 70: exec wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log 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 SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-36 line 16: PIDS= wrappercheck-36 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-36 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-36 line 21: DAEMON_LOG= wrappercheck-36 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-36 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-36 line 25: declare -a BACKGROUND wrappercheck-36 line 26: declare -a ENV wrappercheck-36 line 28: '[' 34 -gt 1 ']' wrappercheck-36 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-36 line 29: case "$1" in wrappercheck-36 line 31: shift wrappercheck-36 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-36 line 53: shift wrappercheck-36 line 28: '[' 32 -gt 1 ']' wrappercheck-36 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-36 line 29: case "$1" in wrappercheck-36 line 50: break wrappercheck-36 line 56: '[' 32 -gt 1 ']' wrappercheck-36 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-36 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-36 line 58: shift wrappercheck-36 line 56: '[' 31 -gt 1 ']' wrappercheck-36 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-36 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-36 line 58: shift wrappercheck-36 line 56: '[' 30 -gt 1 ']' wrappercheck-36 line 56: '[' -- '!=' -- ']' wrappercheck-36 line 60: shift wrappercheck-36 line 62: '[' dbus-monitor.log ']' wrappercheck-36 line 62: '[' '' ']' wrappercheck-36 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-36 line 72: BACKGROUND_PID=38 wrappercheck-36 line 73: PIDS+=38 wrappercheck-36 line 75: '[' dbus-monitor.log ']' wrappercheck-36 line 75: '[' '' ']' wrappercheck-36 line 70: set -x wrappercheck-36 line 84: '[' '' ']' wrappercheck-36 line 70: exec wrappercheck-36 line 93: kill -0 38 wrappercheck-36 line 94: set +e wrappercheck-36 line 95: '[' '' ']' wrappercheck-36 line 99: set -x wrappercheck-36 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 SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-41 line 16: PIDS= wrappercheck-41 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-41 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-41 line 21: DAEMON_LOG= wrappercheck-41 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-41 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-41 line 25: declare -a BACKGROUND wrappercheck-41 line 26: declare -a ENV wrappercheck-41 line 28: '[' 28 -gt 1 ']' wrappercheck-41 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-41 line 29: case "$1" in wrappercheck-41 line 31: shift wrappercheck-41 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-41 line 53: shift wrappercheck-41 line 28: '[' 26 -gt 1 ']' wrappercheck-41 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-41 line 29: case "$1" in wrappercheck-41 line 43: shift wrappercheck-41 line 44: DAEMON_SLEEP=5 wrappercheck-41 line 53: shift wrappercheck-41 line 28: '[' 24 -gt 1 ']' wrappercheck-41 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-41 line 29: case "$1" in wrappercheck-41 line 35: shift wrappercheck-41 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-41 line 53: shift wrappercheck-41 line 28: '[' 22 -gt 1 ']' wrappercheck-41 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-41 line 29: case "$1" in wrappercheck-41 line 50: break wrappercheck-41 line 56: '[' 22 -gt 1 ']' wrappercheck-41 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-41 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-41 line 58: shift wrappercheck-41 line 56: '[' 21 -gt 1 ']' wrappercheck-41 line 56: '[' -- '!=' -- ']' wrappercheck-41 line 60: shift wrappercheck-41 line 62: '[' evolution-source-registry.log ']' wrappercheck-41 line 62: '[' '' ']' wrappercheck-41 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-41 line 72: BACKGROUND_PID=44 wrappercheck-41 line 73: PIDS+=44 wrappercheck-41 line 70: set -x wrappercheck-41 line 75: '[' evolution-source-registry.log ']' wrappercheck-41 line 75: '[' '' ']' wrappercheck-41 line 70: exec wrappercheck-41 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-41 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-41 line 93: kill -0 44 wrappercheck-41 line 94: set +e wrappercheck-41 line 95: '[' 5 ']' wrappercheck-41 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-41 line 97: sleep 5 wrappercheck-41 line 99: set -x wrappercheck-41 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 SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-65 line 16: PIDS= wrappercheck-65 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-65 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-65 line 21: DAEMON_LOG= wrappercheck-65 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-65 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-65 line 25: declare -a BACKGROUND wrappercheck-65 line 26: declare -a ENV wrappercheck-65 line 28: '[' 19 -gt 1 ']' wrappercheck-65 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-65 line 29: case "$1" in wrappercheck-65 line 31: shift wrappercheck-65 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-65 line 53: shift wrappercheck-65 line 28: '[' 17 -gt 1 ']' wrappercheck-65 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-65 line 29: case "$1" in wrappercheck-65 line 35: shift wrappercheck-65 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-65 line 53: shift wrappercheck-65 line 28: '[' 15 -gt 1 ']' wrappercheck-65 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-65 line 29: case "$1" in wrappercheck-65 line 50: break wrappercheck-65 line 56: '[' 15 -gt 1 ']' wrappercheck-65 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-65 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-65 line 58: shift wrappercheck-65 line 56: '[' 14 -gt 1 ']' wrappercheck-65 line 56: '[' --keep-running '!=' -- ']' wrappercheck-65 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-65 line 58: shift wrappercheck-65 line 56: '[' 13 -gt 1 ']' wrappercheck-65 line 56: '[' -- '!=' -- ']' wrappercheck-65 line 60: shift wrappercheck-65 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-65 line 62: '[' '' ']' wrappercheck-65 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-65 line 72: BACKGROUND_PID=67 wrappercheck-65 line 73: PIDS+=67 wrappercheck-65 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-65 line 75: '[' '' ']' wrappercheck-65 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-65 line 70: set -x wrappercheck-65 line 70: exec wrappercheck-65 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-65 line 93: kill -0 67 wrappercheck-65 line 94: set +e wrappercheck-65 line 95: '[' '' ']' wrappercheck-65 line 99: set -x wrappercheck-65 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 SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-85 line 16: PIDS= wrappercheck-85 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-85 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-85 line 21: DAEMON_LOG= wrappercheck-85 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-85 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-85 line 25: declare -a BACKGROUND wrappercheck-85 line 26: declare -a ENV wrappercheck-85 line 28: '[' 11 -gt 1 ']' wrappercheck-85 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-85 line 29: case "$1" in wrappercheck-85 line 31: shift wrappercheck-85 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-85 line 53: shift wrappercheck-85 line 28: '[' 9 -gt 1 ']' wrappercheck-85 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-85 line 29: case "$1" in wrappercheck-85 line 50: break wrappercheck-85 line 56: '[' 9 -gt 1 ']' wrappercheck-85 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-85 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-85 line 58: shift wrappercheck-85 line 56: '[' 8 -gt 1 ']' wrappercheck-85 line 56: '[' --keep-running '!=' -- ']' wrappercheck-85 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-85 line 58: shift wrappercheck-85 line 56: '[' 7 -gt 1 ']' wrappercheck-85 line 56: '[' -- '!=' -- ']' wrappercheck-85 line 60: shift wrappercheck-85 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-85 line 62: '[' '' ']' wrappercheck-85 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-85 line 72: BACKGROUND_PID=87 wrappercheck-85 line 70: set -x wrappercheck-85 line 73: PIDS+=87 wrappercheck-85 line 70: exec wrappercheck-85 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-85 line 75: '[' '' ']' wrappercheck-85 line 84: '[' '' ']' wrappercheck-85 line 93: kill -0 87 wrappercheck-85 line 94: set +e wrappercheck-85 line 95: '[' '' ']' wrappercheck-85 line 99: set -x wrappercheck-85 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 SyncEvolution *** 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/downstream-xenial-amd64/tests/unittests/valgrind.p90.c%p.out ./client-test SyncEvolution SyncEvo::GLibTest::notify okay SyncEvo::LogRedirectTest::simple okay SyncEvo::LogRedirectTest::largeChunk okay SyncEvo::LogRedirectTest::streams okay SyncEvo::LogRedirectTest::overload okay SyncEvo::LogRedirectTest::glib okay SyncEvo::TimespecTest::add okay SyncEvo::TimespecTest::substract okay SyncEvo::StringEscapeTest::escape okay SyncEvo::StringEscapeTest::unescape okay SyncEvo::LCSTest::lcs okay SyncEvo::ForkExecTest::testTrue okay SyncEvo::ForkExecTest::testFalse okay SyncEvo::ForkExecTest::testPath okay SyncEvo::ForkExecTest::testNotFound okay SyncEvo::ForkExecTest::testEnv1 okay SyncEvo::ForkExecTest::testEnv2 okay SyncEvo::ForkExecTest::testOutErr okay SyncEvo::ForkExecTest::testMerged okay SyncEvo::CmdlineTest::testFramework okay SyncEvo::CmdlineTest::testSetupScheduleWorld okay SyncEvo::CmdlineTest::testFutureConfig okay SyncEvo::CmdlineTest::testPeerConfigMigration okay SyncEvo::CmdlineTest::testContextConfigMigration okay SyncEvo::CmdlineTest::testSetupDefault okay SyncEvo::CmdlineTest::testSetupRenamed okay SyncEvo::CmdlineTest::testSetupFunambol okay SyncEvo::CmdlineTest::testSetupSynthesis okay SyncEvo::CmdlineTest::testPrintServers okay SyncEvo::CmdlineTest::testPrintFileTemplates okay SyncEvo::CmdlineTest::testPrintFileTemplatesConfig okay SyncEvo::CmdlineTest::testTemplate okay SyncEvo::CmdlineTest::testMatchTemplate okay SyncEvo::CmdlineTest::testAddSource okay SyncEvo::CmdlineTest::testSync okay SyncEvo::CmdlineTest::testKeyring okay SyncEvo::CmdlineTest::testWebDAV okay SyncEvo::CmdlineTest::testConfigure okay SyncEvo::CmdlineTest::testConfigureSources okay SyncEvo::CmdlineTest::testOldConfigure okay SyncEvo::CmdlineTest::testMigrate ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/9, but it's already registered ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/9, but it's already registered okay SyncEvo::CmdlineTest::testMigrateContext okay SyncEvo::CmdlineTest::testMigrateAutoSync ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/9, but it's already registered okay SyncEvo::SyncSourceTest::backendsAvailable okay SyncEvo::LogDirTest::testQuickCompare okay SyncEvo::LogDirTest::testSessionNoChanges okay SyncEvo::LogDirTest::testSessionChanges okay SyncEvo::LogDirTest::testMultipleSessions okay SyncEvo::LogDirTest::testExpire okay SyncEvo::SyncConfigTest::normalize okay SyncEvo::SyncConfigTest::parseDuration okay SyncEvo::SyncConfigTest::propertySpec okay SyncEvo::SingleIniTest::simple okay SyncEvo::FileSyncSourceUnitTest::testInstantiate okay SyncEvo::EvolutionCalendarTest::testInstantiate okay SyncEvo::EvolutionCalendarTest::testOpenDefaultCalendar okay SyncEvo::EvolutionCalendarTest::testOpenDefaultTodo okay SyncEvo::EvolutionCalendarTest::testOpenDefaultMemo okay SyncEvo::EvolutionCalendarTest::testTimezones okay SyncEvo::EvolutionContactTest::testInstantiate okay SyncEvo::EvolutionContactTest::testImport okay SyncEvo::WebDAVTest::testInstantiate okay SyncEvo::WebDAVTest::testHTMLEntities okay SyncEvo::ActiveSyncsTest::testInstantiate okay OKvalgrindcheck (90): './client-test SyncEvolution' (94): returned 0 ==102== Memcheck, a memory error detector ==102== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==102== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==102== Command: ./client-test SyncEvo::GLibTest::notify ==102== Parent PID: 94 ==102== --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --102-- Ignoring non-Dwarf2/3/4 block in .debug_info --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --102-- Last block truncated in .debug_info; ignoring --102-- WARNING: Serious error when reading debug info --102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==102== ==102== HEAP SUMMARY: ==102== in use at exit: 244,264 bytes in 1,003 blocks ==102== total heap usage: 36,502 allocs, 35,499 frees, 6,296,745 bytes allocated ==102== ==102== LEAK SUMMARY: ==102== definitely lost: 0 bytes in 0 blocks ==102== indirectly lost: 58 bytes in 1 blocks ==102== possibly lost: 432 bytes in 2 blocks ==102== still reachable: 207,748 bytes in 471 blocks ==102== of which reachable via heuristic: ==102== length64 : 752 bytes in 17 blocks ==102== newarray : 1,648 bytes in 23 blocks ==102== suppressed: 35,450 bytes in 524 blocks ==102== Rerun with --leak-check=full to see details of leaked memory ==102== ==102== For counts of detected and suppressed errors, rerun with: -v ==102== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1029== Memcheck, a memory error detector ==1029== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1029== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1029== Command: ./client-test SyncEvo::CmdlineTest::testConfigureSources ==1029== Parent PID: 94 ==1029== --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1029-- Ignoring non-Dwarf2/3/4 block in .debug_info --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1029-- Last block truncated in .debug_info; ignoring --1029-- WARNING: Serious error when reading debug info --1029-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1029-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1029== ==1029== HEAP SUMMARY: ==1029== in use at exit: 689,898 bytes in 5,837 blocks ==1029== total heap usage: 204,620 allocs, 198,783 frees, 21,766,063 bytes allocated ==1029== ==1029== LEAK SUMMARY: ==1029== definitely lost: 0 bytes in 0 blocks ==1029== indirectly lost: 0 bytes in 0 blocks ==1029== possibly lost: 1,104 bytes in 4 blocks ==1029== still reachable: 261,966 bytes in 576 blocks ==1029== of which reachable via heuristic: ==1029== length64 : 4,744 bytes in 76 blocks ==1029== newarray : 2,048 bytes in 48 blocks ==1029== suppressed: 363,636 bytes in 4,772 blocks ==1029== Rerun with --leak-check=full to see details of leaked memory ==1029== ==1029== For counts of detected and suppressed errors, rerun with: -v ==1029== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==104== Memcheck, a memory error detector ==104== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==104== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==104== Command: ./client-test SyncEvo::LogRedirectTest::simple ==104== Parent PID: 94 ==104== --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --104-- Ignoring non-Dwarf2/3/4 block in .debug_info --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --104-- Last block truncated in .debug_info; ignoring --104-- WARNING: Serious error when reading debug info --104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==104== ==104== HEAP SUMMARY: ==104== in use at exit: 209,778 bytes in 504 blocks ==104== total heap usage: 35,563 allocs, 35,059 frees, 6,167,833 bytes allocated ==104== ==104== LEAK SUMMARY: ==104== definitely lost: 0 bytes in 0 blocks ==104== indirectly lost: 0 bytes in 0 blocks ==104== possibly lost: 96 bytes in 1 blocks ==104== still reachable: 198,716 bytes in 316 blocks ==104== of which reachable via heuristic: ==104== newarray : 1,536 bytes in 16 blocks ==104== suppressed: 10,966 bytes in 187 blocks ==104== Rerun with --leak-check=full to see details of leaked memory ==104== ==104== For counts of detected and suppressed errors, rerun with: -v ==104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==105== Memcheck, a memory error detector ==105== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==105== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==105== Command: ./client-test SyncEvo::LogRedirectTest::largeChunk ==105== Parent PID: 94 ==105== --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --105-- Ignoring non-Dwarf2/3/4 block in .debug_info --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --105-- Last block truncated in .debug_info; ignoring --105-- WARNING: Serious error when reading debug info --105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==105== ==105== HEAP SUMMARY: ==105== in use at exit: 209,778 bytes in 504 blocks ==105== total heap usage: 35,585 allocs, 35,081 frees, 6,801,951 bytes allocated ==105== ==105== LEAK SUMMARY: ==105== definitely lost: 0 bytes in 0 blocks ==105== indirectly lost: 0 bytes in 0 blocks ==105== possibly lost: 96 bytes in 1 blocks ==105== still reachable: 198,716 bytes in 316 blocks ==105== of which reachable via heuristic: ==105== newarray : 1,536 bytes in 16 blocks ==105== suppressed: 10,966 bytes in 187 blocks ==105== Rerun with --leak-check=full to see details of leaked memory ==105== ==105== For counts of detected and suppressed errors, rerun with: -v ==105== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==106== Memcheck, a memory error detector ==106== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==106== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==106== Command: ./client-test SyncEvo::LogRedirectTest::streams ==106== Parent PID: 94 ==106== --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --106-- Ignoring non-Dwarf2/3/4 block in .debug_info --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --106-- Last block truncated in .debug_info; ignoring --106-- WARNING: Serious error when reading debug info --106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==106== ==106== HEAP SUMMARY: ==106== in use at exit: 209,778 bytes in 504 blocks ==106== total heap usage: 35,591 allocs, 35,087 frees, 6,171,306 bytes allocated ==106== ==106== LEAK SUMMARY: ==106== definitely lost: 0 bytes in 0 blocks ==106== indirectly lost: 0 bytes in 0 blocks ==106== possibly lost: 96 bytes in 1 blocks ==106== still reachable: 198,716 bytes in 316 blocks ==106== of which reachable via heuristic: ==106== newarray : 1,536 bytes in 16 blocks ==106== suppressed: 10,966 bytes in 187 blocks ==106== Rerun with --leak-check=full to see details of leaked memory ==106== ==106== For counts of detected and suppressed errors, rerun with: -v ==106== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==107== Memcheck, a memory error detector ==107== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==107== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==107== Command: ./client-test SyncEvo::LogRedirectTest::overload ==107== Parent PID: 94 ==107== --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --107-- Ignoring non-Dwarf2/3/4 block in .debug_info --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --107-- Last block truncated in .debug_info; ignoring --107-- WARNING: Serious error when reading debug info --107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==107== ==107== HEAP SUMMARY: ==107== in use at exit: 209,778 bytes in 504 blocks ==107== total heap usage: 43,591 allocs, 43,087 frees, 7,541,663 bytes allocated ==107== ==107== LEAK SUMMARY: ==107== definitely lost: 0 bytes in 0 blocks ==107== indirectly lost: 0 bytes in 0 blocks ==107== possibly lost: 96 bytes in 1 blocks ==107== still reachable: 198,716 bytes in 316 blocks ==107== of which reachable via heuristic: ==107== newarray : 1,536 bytes in 16 blocks ==107== suppressed: 10,966 bytes in 187 blocks ==107== Rerun with --leak-check=full to see details of leaked memory ==107== ==107== For counts of detected and suppressed errors, rerun with: -v ==107== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==108== Memcheck, a memory error detector ==108== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==108== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==108== Command: ./client-test SyncEvo::LogRedirectTest::glib ==108== Parent PID: 94 ==108== --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- Ignoring non-Dwarf2/3/4 block in .debug_info --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- Last block truncated in .debug_info; ignoring --108-- WARNING: Serious error when reading debug info --108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==108== ==108== HEAP SUMMARY: ==108== in use at exit: 209,840 bytes in 509 blocks ==108== total heap usage: 35,692 allocs, 35,183 frees, 6,276,210 bytes allocated ==108== ==108== LEAK SUMMARY: ==108== definitely lost: 0 bytes in 0 blocks ==108== indirectly lost: 0 bytes in 0 blocks ==108== possibly lost: 96 bytes in 1 blocks ==108== still reachable: 198,754 bytes in 320 blocks ==108== of which reachable via heuristic: ==108== newarray : 1,536 bytes in 16 blocks ==108== suppressed: 10,990 bytes in 188 blocks ==108== Rerun with --leak-check=full to see details of leaked memory ==108== ==108== For counts of detected and suppressed errors, rerun with: -v ==108== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1083== Memcheck, a memory error detector ==1083== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1083== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1083== Command: ./client-test SyncEvo::CmdlineTest::testOldConfigure ==1083== Parent PID: 94 ==1083== --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1083-- Ignoring non-Dwarf2/3/4 block in .debug_info --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1083-- Last block truncated in .debug_info; ignoring --1083-- WARNING: Serious error when reading debug info --1083-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1083-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1083== ==1083== HEAP SUMMARY: ==1083== in use at exit: 301,543 bytes in 1,677 blocks ==1083== total heap usage: 104,990 allocs, 103,258 frees, 23,288,293 bytes allocated ==1083== ==1083== LEAK SUMMARY: ==1083== definitely lost: 0 bytes in 0 blocks ==1083== indirectly lost: 0 bytes in 0 blocks ==1083== possibly lost: 1,104 bytes in 4 blocks ==1083== still reachable: 218,484 bytes in 575 blocks ==1083== of which reachable via heuristic: ==1083== length64 : 1,072 bytes in 19 blocks ==1083== newarray : 1,728 bytes in 28 blocks ==1083== suppressed: 70,643 bytes in 1,017 blocks ==1083== Rerun with --leak-check=full to see details of leaked memory ==1083== ==1083== For counts of detected and suppressed errors, rerun with: -v ==1083== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1087== Memcheck, a memory error detector ==1087== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1087== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1087== Command: ./client-test SyncEvo::CmdlineTest::testMigrate ==1087== Parent PID: 94 ==1087== --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1087-- Ignoring non-Dwarf2/3/4 block in .debug_info --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1087-- Last block truncated in .debug_info; ignoring --1087-- WARNING: Serious error when reading debug info --1087-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1087-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1087== ==1087== HEAP SUMMARY: ==1087== in use at exit: 301,543 bytes in 1,677 blocks ==1087== total heap usage: 150,908 allocs, 149,175 frees, 42,719,488 bytes allocated ==1087== ==1087== LEAK SUMMARY: ==1087== definitely lost: 0 bytes in 0 blocks ==1087== indirectly lost: 0 bytes in 0 blocks ==1087== possibly lost: 1,104 bytes in 4 blocks ==1087== still reachable: 218,484 bytes in 575 blocks ==1087== of which reachable via heuristic: ==1087== length64 : 1,072 bytes in 19 blocks ==1087== newarray : 1,728 bytes in 28 blocks ==1087== suppressed: 70,643 bytes in 1,017 blocks ==1087== Rerun with --leak-check=full to see details of leaked memory ==1087== ==1087== For counts of detected and suppressed errors, rerun with: -v ==1087== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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 SyncEvo::TimespecTest::add ==109== Parent PID: 94 ==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/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/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== ==109== HEAP SUMMARY: ==109== in use at exit: 209,746 bytes in 504 blocks ==109== total heap usage: 35,526 allocs, 35,022 frees, 6,159,333 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: 198,684 bytes in 316 blocks ==109== of which reachable via heuristic: ==109== newarray : 1,536 bytes in 16 blocks ==109== suppressed: 10,966 bytes in 187 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) ==1091== Memcheck, a memory error detector ==1091== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1091== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1091== Command: ./client-test SyncEvo::CmdlineTest::testMigrateContext ==1091== Parent PID: 94 ==1091== --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1091-- Ignoring non-Dwarf2/3/4 block in .debug_info --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1091-- Last block truncated in .debug_info; ignoring --1091-- WARNING: Serious error when reading debug info --1091-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1091-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1091== ==1091== HEAP SUMMARY: ==1091== in use at exit: 209,778 bytes in 504 blocks ==1091== total heap usage: 65,252 allocs, 64,748 frees, 16,347,863 bytes allocated ==1091== ==1091== LEAK SUMMARY: ==1091== definitely lost: 0 bytes in 0 blocks ==1091== indirectly lost: 0 bytes in 0 blocks ==1091== possibly lost: 96 bytes in 1 blocks ==1091== still reachable: 198,716 bytes in 316 blocks ==1091== of which reachable via heuristic: ==1091== newarray : 1,536 bytes in 16 blocks ==1091== suppressed: 10,966 bytes in 187 blocks ==1091== Rerun with --leak-check=full to see details of leaked memory ==1091== ==1091== For counts of detected and suppressed errors, rerun with: -v ==1091== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1092== Memcheck, a memory error detector ==1092== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1092== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1092== Command: ./client-test SyncEvo::CmdlineTest::testMigrateAutoSync ==1092== Parent PID: 94 ==1092== --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1092-- Ignoring non-Dwarf2/3/4 block in .debug_info --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1092-- Last block truncated in .debug_info; ignoring --1092-- WARNING: Serious error when reading debug info --1092-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1092-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1092== ==1092== HEAP SUMMARY: ==1092== in use at exit: 301,543 bytes in 1,677 blocks ==1092== total heap usage: 69,296 allocs, 67,565 frees, 17,791,547 bytes allocated ==1092== ==1092== LEAK SUMMARY: ==1092== definitely lost: 0 bytes in 0 blocks ==1092== indirectly lost: 0 bytes in 0 blocks ==1092== possibly lost: 1,104 bytes in 4 blocks ==1092== still reachable: 218,484 bytes in 575 blocks ==1092== of which reachable via heuristic: ==1092== length64 : 1,072 bytes in 19 blocks ==1092== newarray : 1,728 bytes in 28 blocks ==1092== suppressed: 70,643 bytes in 1,017 blocks ==1092== Rerun with --leak-check=full to see details of leaked memory ==1092== ==1092== For counts of detected and suppressed errors, rerun with: -v ==1092== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1096== Memcheck, a memory error detector ==1096== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1096== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1096== Command: ./client-test SyncEvo::SyncSourceTest::backendsAvailable ==1096== Parent PID: 94 ==1096== --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1096-- Ignoring non-Dwarf2/3/4 block in .debug_info --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1096-- Last block truncated in .debug_info; ignoring --1096-- WARNING: Serious error when reading debug info --1096-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1096-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1096== ==1096== HEAP SUMMARY: ==1096== in use at exit: 209,746 bytes in 504 blocks ==1096== total heap usage: 35,569 allocs, 35,065 frees, 6,164,007 bytes allocated ==1096== ==1096== LEAK SUMMARY: ==1096== definitely lost: 0 bytes in 0 blocks ==1096== indirectly lost: 0 bytes in 0 blocks ==1096== possibly lost: 96 bytes in 1 blocks ==1096== still reachable: 198,684 bytes in 316 blocks ==1096== of which reachable via heuristic: ==1096== newarray : 1,536 bytes in 16 blocks ==1096== suppressed: 10,966 bytes in 187 blocks ==1096== Rerun with --leak-check=full to see details of leaked memory ==1096== ==1096== For counts of detected and suppressed errors, rerun with: -v ==1096== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1097== Memcheck, a memory error detector ==1097== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1097== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1097== Command: ./client-test SyncEvo::LogDirTest::testQuickCompare ==1097== Parent PID: 94 ==1097== --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1097-- Ignoring non-Dwarf2/3/4 block in .debug_info --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1097-- Last block truncated in .debug_info; ignoring --1097-- WARNING: Serious error when reading debug info --1097-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1097-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1097== ==1097== HEAP SUMMARY: ==1097== in use at exit: 209,778 bytes in 504 blocks ==1097== total heap usage: 35,955 allocs, 35,451 frees, 6,584,295 bytes allocated ==1097== ==1097== LEAK SUMMARY: ==1097== definitely lost: 0 bytes in 0 blocks ==1097== indirectly lost: 0 bytes in 0 blocks ==1097== possibly lost: 96 bytes in 1 blocks ==1097== still reachable: 198,716 bytes in 316 blocks ==1097== of which reachable via heuristic: ==1097== newarray : 1,536 bytes in 16 blocks ==1097== suppressed: 10,966 bytes in 187 blocks ==1097== Rerun with --leak-check=full to see details of leaked memory ==1097== ==1097== For counts of detected and suppressed errors, rerun with: -v ==1097== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1098== Memcheck, a memory error detector ==1098== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1098== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1098== Command: /bin/sh -c cp\ -l\ -r\ LogDirTest/data/file_event.two\ LogDirTest/data/file_event.copy\ &&\ rm\ LogDirTest/data/file_event.copy/2 ==1098== Parent PID: 1097 ==1098== ==1098== ==1098== HEAP SUMMARY: ==1098== in use at exit: 3,065 bytes in 91 blocks ==1098== total heap usage: 96 allocs, 5 frees, 4,209 bytes allocated ==1098== ==1098== LEAK SUMMARY: ==1098== definitely lost: 0 bytes in 0 blocks ==1098== indirectly lost: 0 bytes in 0 blocks ==1098== possibly lost: 0 bytes in 0 blocks ==1098== still reachable: 3,065 bytes in 91 blocks ==1098== suppressed: 0 bytes in 0 blocks ==1098== Rerun with --leak-check=full to see details of leaked memory ==1098== ==1098== For counts of detected and suppressed errors, rerun with: -v ==1098== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==110== Memcheck, a memory error detector ==110== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==110== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==110== Command: ./client-test SyncEvo::TimespecTest::substract ==110== Parent PID: 94 ==110== --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --110-- Ignoring non-Dwarf2/3/4 block in .debug_info --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --110-- Last block truncated in .debug_info; ignoring --110-- WARNING: Serious error when reading debug info --110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==110== ==110== HEAP SUMMARY: ==110== in use at exit: 209,746 bytes in 504 blocks ==110== total heap usage: 35,527 allocs, 35,023 frees, 6,159,474 bytes allocated ==110== ==110== LEAK SUMMARY: ==110== definitely lost: 0 bytes in 0 blocks ==110== indirectly lost: 0 bytes in 0 blocks ==110== possibly lost: 96 bytes in 1 blocks ==110== still reachable: 198,684 bytes in 316 blocks ==110== of which reachable via heuristic: ==110== newarray : 1,536 bytes in 16 blocks ==110== suppressed: 10,966 bytes in 187 blocks ==110== Rerun with --leak-check=full to see details of leaked memory ==110== ==110== For counts of detected and suppressed errors, rerun with: -v ==110== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1101== Memcheck, a memory error detector ==1101== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1101== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1101== Command: ./client-test SyncEvo::LogDirTest::testSessionNoChanges ==1101== Parent PID: 94 ==1101== --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1101-- Ignoring non-Dwarf2/3/4 block in .debug_info --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1101-- Last block truncated in .debug_info; ignoring --1101-- WARNING: Serious error when reading debug info --1101-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1101-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1101== ==1101== HEAP SUMMARY: ==1101== in use at exit: 209,778 bytes in 504 blocks ==1101== total heap usage: 41,519 allocs, 41,015 frees, 7,641,748 bytes allocated ==1101== ==1101== LEAK SUMMARY: ==1101== definitely lost: 0 bytes in 0 blocks ==1101== indirectly lost: 0 bytes in 0 blocks ==1101== possibly lost: 96 bytes in 1 blocks ==1101== still reachable: 198,716 bytes in 316 blocks ==1101== of which reachable via heuristic: ==1101== newarray : 1,536 bytes in 16 blocks ==1101== suppressed: 10,966 bytes in 187 blocks ==1101== Rerun with --leak-check=full to see details of leaked memory ==1101== ==1101== For counts of detected and suppressed errors, rerun with: -v ==1101== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1102== Memcheck, a memory error detector ==1102== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1102== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1102== Command: ./client-test SyncEvo::LogDirTest::testSessionChanges ==1102== Parent PID: 94 ==1102== --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1102-- Ignoring non-Dwarf2/3/4 block in .debug_info --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1102-- Last block truncated in .debug_info; ignoring --1102-- WARNING: Serious error when reading debug info --1102-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1102-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1102== ==1102== HEAP SUMMARY: ==1102== in use at exit: 209,778 bytes in 504 blocks ==1102== total heap usage: 41,603 allocs, 41,099 frees, 7,733,117 bytes allocated ==1102== ==1102== LEAK SUMMARY: ==1102== definitely lost: 0 bytes in 0 blocks ==1102== indirectly lost: 0 bytes in 0 blocks ==1102== possibly lost: 96 bytes in 1 blocks ==1102== still reachable: 198,716 bytes in 316 blocks ==1102== of which reachable via heuristic: ==1102== newarray : 1,536 bytes in 16 blocks ==1102== suppressed: 10,966 bytes in 187 blocks ==1102== Rerun with --leak-check=full to see details of leaked memory ==1102== ==1102== For counts of detected and suppressed errors, rerun with: -v ==1102== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1103== Memcheck, a memory error detector ==1103== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1103== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1103== Command: ./client-test SyncEvo::LogDirTest::testMultipleSessions ==1103== Parent PID: 94 ==1103== --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1103-- Ignoring non-Dwarf2/3/4 block in .debug_info --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1103-- Last block truncated in .debug_info; ignoring --1103-- WARNING: Serious error when reading debug info --1103-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1103-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1103== ==1103== HEAP SUMMARY: ==1103== in use at exit: 209,778 bytes in 504 blocks ==1103== total heap usage: 58,248 allocs, 57,744 frees, 10,439,285 bytes allocated ==1103== ==1103== LEAK SUMMARY: ==1103== definitely lost: 0 bytes in 0 blocks ==1103== indirectly lost: 0 bytes in 0 blocks ==1103== possibly lost: 96 bytes in 1 blocks ==1103== still reachable: 198,716 bytes in 316 blocks ==1103== of which reachable via heuristic: ==1103== newarray : 1,536 bytes in 16 blocks ==1103== suppressed: 10,966 bytes in 187 blocks ==1103== Rerun with --leak-check=full to see details of leaked memory ==1103== ==1103== For counts of detected and suppressed errors, rerun with: -v ==1103== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1104== Memcheck, a memory error detector ==1104== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1104== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1104== Command: ./client-test SyncEvo::LogDirTest::testExpire ==1104== Parent PID: 94 ==1104== --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1104-- Ignoring non-Dwarf2/3/4 block in .debug_info --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1104-- Last block truncated in .debug_info; ignoring --1104-- WARNING: Serious error when reading debug info --1104-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1104-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1104== ==1104== HEAP SUMMARY: ==1104== in use at exit: 209,778 bytes in 504 blocks ==1104== total heap usage: 113,659 allocs, 113,155 frees, 22,682,441 bytes allocated ==1104== ==1104== LEAK SUMMARY: ==1104== definitely lost: 0 bytes in 0 blocks ==1104== indirectly lost: 0 bytes in 0 blocks ==1104== possibly lost: 96 bytes in 1 blocks ==1104== still reachable: 198,716 bytes in 316 blocks ==1104== of which reachable via heuristic: ==1104== newarray : 1,536 bytes in 16 blocks ==1104== suppressed: 10,966 bytes in 187 blocks ==1104== Rerun with --leak-check=full to see details of leaked memory ==1104== ==1104== For counts of detected and suppressed errors, rerun with: -v ==1104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1105== Memcheck, a memory error detector ==1105== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1105== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1105== Command: ./client-test SyncEvo::SyncConfigTest::normalize ==1105== Parent PID: 94 ==1105== --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1105-- Ignoring non-Dwarf2/3/4 block in .debug_info --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1105-- Last block truncated in .debug_info; ignoring --1105-- WARNING: Serious error when reading debug info --1105-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1105-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1105== ==1105== HEAP SUMMARY: ==1105== in use at exit: 209,746 bytes in 504 blocks ==1105== total heap usage: 36,678 allocs, 36,174 frees, 7,740,934 bytes allocated ==1105== ==1105== LEAK SUMMARY: ==1105== definitely lost: 0 bytes in 0 blocks ==1105== indirectly lost: 0 bytes in 0 blocks ==1105== possibly lost: 96 bytes in 1 blocks ==1105== still reachable: 198,684 bytes in 316 blocks ==1105== of which reachable via heuristic: ==1105== newarray : 1,536 bytes in 16 blocks ==1105== suppressed: 10,966 bytes in 187 blocks ==1105== Rerun with --leak-check=full to see details of leaked memory ==1105== ==1105== For counts of detected and suppressed errors, rerun with: -v ==1105== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1106== Memcheck, a memory error detector ==1106== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1106== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1106== Command: ./client-test SyncEvo::SyncConfigTest::parseDuration ==1106== Parent PID: 94 ==1106== --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1106-- Ignoring non-Dwarf2/3/4 block in .debug_info --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1106-- Last block truncated in .debug_info; ignoring --1106-- WARNING: Serious error when reading debug info --1106-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1106-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1106== ==1106== HEAP SUMMARY: ==1106== in use at exit: 209,746 bytes in 504 blocks ==1106== total heap usage: 35,678 allocs, 35,174 frees, 6,172,048 bytes allocated ==1106== ==1106== LEAK SUMMARY: ==1106== definitely lost: 0 bytes in 0 blocks ==1106== indirectly lost: 0 bytes in 0 blocks ==1106== possibly lost: 96 bytes in 1 blocks ==1106== still reachable: 198,684 bytes in 316 blocks ==1106== of which reachable via heuristic: ==1106== newarray : 1,536 bytes in 16 blocks ==1106== suppressed: 10,966 bytes in 187 blocks ==1106== Rerun with --leak-check=full to see details of leaked memory ==1106== ==1106== For counts of detected and suppressed errors, rerun with: -v ==1106== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1107== Memcheck, a memory error detector ==1107== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1107== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1107== Command: ./client-test SyncEvo::SyncConfigTest::propertySpec ==1107== Parent PID: 94 ==1107== --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1107-- Ignoring non-Dwarf2/3/4 block in .debug_info --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1107-- Last block truncated in .debug_info; ignoring --1107-- WARNING: Serious error when reading debug info --1107-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1107-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1107== ==1107== HEAP SUMMARY: ==1107== in use at exit: 209,746 bytes in 504 blocks ==1107== total heap usage: 35,645 allocs, 35,141 frees, 6,165,380 bytes allocated ==1107== ==1107== LEAK SUMMARY: ==1107== definitely lost: 0 bytes in 0 blocks ==1107== indirectly lost: 0 bytes in 0 blocks ==1107== possibly lost: 96 bytes in 1 blocks ==1107== still reachable: 198,684 bytes in 316 blocks ==1107== of which reachable via heuristic: ==1107== newarray : 1,536 bytes in 16 blocks ==1107== suppressed: 10,966 bytes in 187 blocks ==1107== Rerun with --leak-check=full to see details of leaked memory ==1107== ==1107== For counts of detected and suppressed errors, rerun with: -v ==1107== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1108== Memcheck, a memory error detector ==1108== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1108== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1108== Command: ./client-test SyncEvo::SingleIniTest::simple ==1108== Parent PID: 94 ==1108== --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1108-- Ignoring non-Dwarf2/3/4 block in .debug_info --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1108-- Last block truncated in .debug_info; ignoring --1108-- WARNING: Serious error when reading debug info --1108-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1108-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1108== ==1108== HEAP SUMMARY: ==1108== in use at exit: 209,746 bytes in 504 blocks ==1108== total heap usage: 35,895 allocs, 35,391 frees, 6,185,804 bytes allocated ==1108== ==1108== LEAK SUMMARY: ==1108== definitely lost: 0 bytes in 0 blocks ==1108== indirectly lost: 0 bytes in 0 blocks ==1108== possibly lost: 96 bytes in 1 blocks ==1108== still reachable: 198,684 bytes in 316 blocks ==1108== of which reachable via heuristic: ==1108== newarray : 1,536 bytes in 16 blocks ==1108== suppressed: 10,966 bytes in 187 blocks ==1108== Rerun with --leak-check=full to see details of leaked memory ==1108== ==1108== For counts of detected and suppressed errors, rerun with: -v ==1108== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1109== Memcheck, a memory error detector ==1109== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1109== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1109== Command: ./client-test SyncEvo::FileSyncSourceUnitTest::testInstantiate ==1109== Parent PID: 94 ==1109== --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1109-- Ignoring non-Dwarf2/3/4 block in .debug_info --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1109-- Last block truncated in .debug_info; ignoring --1109-- WARNING: Serious error when reading debug info --1109-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1109-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1109== ==1109== HEAP SUMMARY: ==1109== in use at exit: 209,746 bytes in 504 blocks ==1109== total heap usage: 49,505 allocs, 49,001 frees, 7,128,344 bytes allocated ==1109== ==1109== LEAK SUMMARY: ==1109== definitely lost: 0 bytes in 0 blocks ==1109== indirectly lost: 0 bytes in 0 blocks ==1109== possibly lost: 96 bytes in 1 blocks ==1109== still reachable: 198,684 bytes in 316 blocks ==1109== of which reachable via heuristic: ==1109== newarray : 1,536 bytes in 16 blocks ==1109== suppressed: 10,966 bytes in 187 blocks ==1109== Rerun with --leak-check=full to see details of leaked memory ==1109== ==1109== For counts of detected and suppressed errors, rerun with: -v ==1109== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==111== Memcheck, a memory error detector ==111== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==111== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==111== Command: ./client-test SyncEvo::StringEscapeTest::escape ==111== Parent PID: 94 ==111== --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --111-- Ignoring non-Dwarf2/3/4 block in .debug_info --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --111-- Last block truncated in .debug_info; ignoring --111-- WARNING: Serious error when reading debug info --111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 209,746 bytes in 504 blocks ==111== total heap usage: 35,554 allocs, 35,050 frees, 6,160,738 bytes allocated ==111== ==111== LEAK SUMMARY: ==111== definitely lost: 0 bytes in 0 blocks ==111== indirectly lost: 0 bytes in 0 blocks ==111== possibly lost: 96 bytes in 1 blocks ==111== still reachable: 198,684 bytes in 316 blocks ==111== of which reachable via heuristic: ==111== newarray : 1,536 bytes in 16 blocks ==111== suppressed: 10,966 bytes in 187 blocks ==111== Rerun with --leak-check=full to see details of leaked memory ==111== ==111== For counts of detected and suppressed errors, rerun with: -v ==111== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1110== Memcheck, a memory error detector ==1110== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1110== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1110== Command: ./client-test SyncEvo::EvolutionCalendarTest::testInstantiate ==1110== Parent PID: 94 ==1110== --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1110-- Ignoring non-Dwarf2/3/4 block in .debug_info --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1110-- Last block truncated in .debug_info; ignoring --1110-- WARNING: Serious error when reading debug info --1110-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1110-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1110== ==1110== HEAP SUMMARY: ==1110== in use at exit: 209,746 bytes in 504 blocks ==1110== total heap usage: 86,198 allocs, 85,694 frees, 9,685,882 bytes allocated ==1110== ==1110== LEAK SUMMARY: ==1110== definitely lost: 0 bytes in 0 blocks ==1110== indirectly lost: 0 bytes in 0 blocks ==1110== possibly lost: 96 bytes in 1 blocks ==1110== still reachable: 198,684 bytes in 316 blocks ==1110== of which reachable via heuristic: ==1110== newarray : 1,536 bytes in 16 blocks ==1110== suppressed: 10,966 bytes in 187 blocks ==1110== Rerun with --leak-check=full to see details of leaked memory ==1110== ==1110== For counts of detected and suppressed errors, rerun with: -v ==1110== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1111== Memcheck, a memory error detector ==1111== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1111== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1111== Command: ./client-test SyncEvo::EvolutionCalendarTest::testOpenDefaultCalendar ==1111== Parent PID: 94 ==1111== --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1111-- Ignoring non-Dwarf2/3/4 block in .debug_info --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1111-- Last block truncated in .debug_info; ignoring --1111-- WARNING: Serious error when reading debug info --1111-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1111-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1111== ==1111== HEAP SUMMARY: ==1111== in use at exit: 683,576 bytes in 5,712 blocks ==1111== total heap usage: 86,393 allocs, 80,681 frees, 8,747,380 bytes allocated ==1111== ==1111== LEAK SUMMARY: ==1111== definitely lost: 0 bytes in 0 blocks ==1111== indirectly lost: 0 bytes in 0 blocks ==1111== possibly lost: 432 bytes in 2 blocks ==1111== still reachable: 253,958 bytes in 392 blocks ==1111== of which reachable via heuristic: ==1111== length64 : 4,504 bytes in 73 blocks ==1111== newarray : 2,032 bytes in 47 blocks ==1111== suppressed: 367,778 bytes in 4,853 blocks ==1111== Rerun with --leak-check=full to see details of leaked memory ==1111== ==1111== For counts of detected and suppressed errors, rerun with: -v ==1111== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==112== Memcheck, a memory error detector ==112== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==112== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==112== Command: ./client-test SyncEvo::StringEscapeTest::unescape ==112== Parent PID: 94 ==112== --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- Ignoring non-Dwarf2/3/4 block in .debug_info --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- Last block truncated in .debug_info; ignoring --112-- WARNING: Serious error when reading debug info --112-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --112-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==112== ==112== HEAP SUMMARY: ==112== in use at exit: 209,746 bytes in 504 blocks ==112== total heap usage: 35,533 allocs, 35,029 frees, 6,159,716 bytes allocated ==112== ==112== LEAK SUMMARY: ==112== definitely lost: 0 bytes in 0 blocks ==112== indirectly lost: 0 bytes in 0 blocks ==112== possibly lost: 96 bytes in 1 blocks ==112== still reachable: 198,684 bytes in 316 blocks ==112== of which reachable via heuristic: ==112== newarray : 1,536 bytes in 16 blocks ==112== suppressed: 10,966 bytes in 187 blocks ==112== Rerun with --leak-check=full to see details of leaked memory ==112== ==112== For counts of detected and suppressed errors, rerun with: -v ==112== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1128== Memcheck, a memory error detector ==1128== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1128== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1128== Command: ./client-test SyncEvo::EvolutionCalendarTest::testOpenDefaultTodo ==1128== Parent PID: 94 ==1128== --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1128-- Ignoring non-Dwarf2/3/4 block in .debug_info --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1128-- Last block truncated in .debug_info; ignoring --1128-- WARNING: Serious error when reading debug info --1128-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1128-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1128== ==1128== HEAP SUMMARY: ==1128== in use at exit: 687,008 bytes in 5,766 blocks ==1128== total heap usage: 86,315 allocs, 80,549 frees, 8,742,883 bytes allocated ==1128== ==1128== LEAK SUMMARY: ==1128== definitely lost: 0 bytes in 0 blocks ==1128== indirectly lost: 0 bytes in 0 blocks ==1128== possibly lost: 1,104 bytes in 4 blocks ==1128== still reachable: 263,492 bytes in 577 blocks ==1128== of which reachable via heuristic: ==1128== length64 : 4,504 bytes in 73 blocks ==1128== newarray : 2,032 bytes in 47 blocks ==1128== suppressed: 360,836 bytes in 4,718 blocks ==1128== Rerun with --leak-check=full to see details of leaked memory ==1128== ==1128== For counts of detected and suppressed errors, rerun with: -v ==1128== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==113== Memcheck, a memory error detector ==113== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==113== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==113== Command: ./client-test SyncEvo::LCSTest::lcs ==113== Parent PID: 94 ==113== --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --113-- Ignoring non-Dwarf2/3/4 block in .debug_info --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --113-- Last block truncated in .debug_info; ignoring --113-- WARNING: Serious error when reading debug info --113-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --113-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==113== ==113== HEAP SUMMARY: ==113== in use at exit: 209,746 bytes in 504 blocks ==113== total heap usage: 35,554 allocs, 35,050 frees, 6,179,400 bytes allocated ==113== ==113== LEAK SUMMARY: ==113== definitely lost: 0 bytes in 0 blocks ==113== indirectly lost: 0 bytes in 0 blocks ==113== possibly lost: 96 bytes in 1 blocks ==113== still reachable: 198,684 bytes in 316 blocks ==113== of which reachable via heuristic: ==113== newarray : 1,536 bytes in 16 blocks ==113== suppressed: 10,966 bytes in 187 blocks ==113== Rerun with --leak-check=full to see details of leaked memory ==113== ==113== For counts of detected and suppressed errors, rerun with: -v ==113== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==114== Memcheck, a memory error detector ==114== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==114== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==114== Command: ./client-test SyncEvo::ForkExecTest::testTrue ==114== Parent PID: 94 ==114== --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --114-- Ignoring non-Dwarf2/3/4 block in .debug_info --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --114-- Last block truncated in .debug_info; ignoring --114-- WARNING: Serious error when reading debug info --114-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --114-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==114== ==114== HEAP SUMMARY: ==114== in use at exit: 238,091 bytes in 825 blocks ==114== total heap usage: 36,505 allocs, 35,680 frees, 6,254,486 bytes allocated ==114== ==114== LEAK SUMMARY: ==114== definitely lost: 0 bytes in 0 blocks ==114== indirectly lost: 0 bytes in 0 blocks ==114== possibly lost: 768 bytes in 3 blocks ==114== still reachable: 199,724 bytes in 354 blocks ==114== of which reachable via heuristic: ==114== length64 : 336 bytes in 6 blocks ==114== newarray : 1,680 bytes in 25 blocks ==114== suppressed: 34,975 bytes in 448 blocks ==114== Rerun with --leak-check=full to see details of leaked memory ==114== ==114== For counts of detected and suppressed errors, rerun with: -v ==114== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1144== Memcheck, a memory error detector ==1144== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1144== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1144== Command: ./client-test SyncEvo::EvolutionCalendarTest::testOpenDefaultMemo ==1144== Parent PID: 94 ==1144== --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1144-- Ignoring non-Dwarf2/3/4 block in .debug_info --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1144-- Last block truncated in .debug_info; ignoring --1144-- WARNING: Serious error when reading debug info --1144-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1144-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1144== ==1144== HEAP SUMMARY: ==1144== in use at exit: 684,687 bytes in 5,722 blocks ==1144== total heap usage: 86,246 allocs, 80,524 frees, 8,742,295 bytes allocated ==1144== ==1144== LEAK SUMMARY: ==1144== definitely lost: 0 bytes in 0 blocks ==1144== indirectly lost: 0 bytes in 0 blocks ==1144== possibly lost: 1,104 bytes in 4 blocks ==1144== still reachable: 262,669 bytes in 569 blocks ==1144== of which reachable via heuristic: ==1144== length64 : 4,504 bytes in 73 blocks ==1144== newarray : 2,032 bytes in 47 blocks ==1144== suppressed: 359,506 bytes in 4,684 blocks ==1144== Rerun with --leak-check=full to see details of leaked memory ==1144== ==1144== For counts of detected and suppressed errors, rerun with: -v ==1144== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1160== Memcheck, a memory error detector ==1160== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1160== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1160== Command: ./client-test SyncEvo::EvolutionCalendarTest::testTimezones ==1160== Parent PID: 94 ==1160== --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1160-- Ignoring non-Dwarf2/3/4 block in .debug_info --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1160-- Last block truncated in .debug_info; ignoring --1160-- WARNING: Serious error when reading debug info --1160-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --1160-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1160== ==1160== HEAP SUMMARY: ==1160== in use at exit: 871,053 bytes in 8,702 blocks ==1160== total heap usage: 112,659 allocs, 103,957 frees, 11,903,284 bytes allocated ==1160== ==1160== LEAK SUMMARY: ==1160== definitely lost: 0 bytes in 0 blocks ==1160== indirectly lost: 0 bytes in 0 blocks ==1160== possibly lost: 1,104 bytes in 4 blocks ==1160== still reachable: 446,069 bytes in 3,463 blocks ==1160== of which reachable via heuristic: ==1160== length64 : 4,504 bytes in 73 blocks ==1160== newarray : 2,032 bytes in 47 blocks ==1160== suppressed: 362,304 bytes in 4,768 blocks ==1160== Rerun with --leak-check=full to see details of leaked memory ==1160== ==1160== For counts of detected and suppressed errors, rerun with: -v ==1160== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==117== Memcheck, a memory error detector ==117== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==117== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==117== Command: /bin/true ==117== Parent PID: 114 ==117== ==117== ==117== HEAP SUMMARY: ==117== in use at exit: 0 bytes in 0 blocks ==117== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==117== ==117== All heap blocks were freed -- no leaks are possible ==117== ==117== For counts of detected and suppressed errors, rerun with: -v ==117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1176== Memcheck, a memory error detector ==1176== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1176== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1176== Command: ./client-test SyncEvo::EvolutionContactTest::testInstantiate ==1176== Parent PID: 94 ==1176== --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1176-- Ignoring non-Dwarf2/3/4 block in .debug_info --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1176-- Last block truncated in .debug_info; ignoring --1176-- WARNING: Serious error when reading debug info --1176-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1176-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1176== ==1176== HEAP SUMMARY: ==1176== in use at exit: 209,746 bytes in 504 blocks ==1176== total heap usage: 63,454 allocs, 62,950 frees, 8,161,355 bytes allocated ==1176== ==1176== LEAK SUMMARY: ==1176== definitely lost: 0 bytes in 0 blocks ==1176== indirectly lost: 0 bytes in 0 blocks ==1176== possibly lost: 96 bytes in 1 blocks ==1176== still reachable: 198,684 bytes in 316 blocks ==1176== of which reachable via heuristic: ==1176== newarray : 1,536 bytes in 16 blocks ==1176== suppressed: 10,966 bytes in 187 blocks ==1176== Rerun with --leak-check=full to see details of leaked memory ==1176== ==1176== For counts of detected and suppressed errors, rerun with: -v ==1176== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1177== Memcheck, a memory error detector ==1177== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1177== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1177== Command: ./client-test SyncEvo::EvolutionContactTest::testImport ==1177== Parent PID: 94 ==1177== --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1177-- Ignoring non-Dwarf2/3/4 block in .debug_info --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1177-- Last block truncated in .debug_info; ignoring --1177-- WARNING: Serious error when reading debug info --1177-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1177-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1177== ==1177== HEAP SUMMARY: ==1177== in use at exit: 209,746 bytes in 504 blocks ==1177== total heap usage: 45,136 allocs, 44,632 frees, 6,885,177 bytes allocated ==1177== ==1177== LEAK SUMMARY: ==1177== definitely lost: 0 bytes in 0 blocks ==1177== indirectly lost: 0 bytes in 0 blocks ==1177== possibly lost: 96 bytes in 1 blocks ==1177== still reachable: 198,684 bytes in 316 blocks ==1177== of which reachable via heuristic: ==1177== newarray : 1,536 bytes in 16 blocks ==1177== suppressed: 10,966 bytes in 187 blocks ==1177== Rerun with --leak-check=full to see details of leaked memory ==1177== ==1177== For counts of detected and suppressed errors, rerun with: -v ==1177== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1178== Memcheck, a memory error detector ==1178== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1178== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1178== Command: ./client-test SyncEvo::WebDAVTest::testInstantiate ==1178== Parent PID: 94 ==1178== --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1178-- Ignoring non-Dwarf2/3/4 block in .debug_info --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1178-- Last block truncated in .debug_info; ignoring --1178-- WARNING: Serious error when reading debug info --1178-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1178-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1178== ==1178== HEAP SUMMARY: ==1178== in use at exit: 209,746 bytes in 504 blocks ==1178== total heap usage: 60,740 allocs, 60,236 frees, 7,925,240 bytes allocated ==1178== ==1178== LEAK SUMMARY: ==1178== definitely lost: 0 bytes in 0 blocks ==1178== indirectly lost: 0 bytes in 0 blocks ==1178== possibly lost: 96 bytes in 1 blocks ==1178== still reachable: 198,684 bytes in 316 blocks ==1178== of which reachable via heuristic: ==1178== newarray : 1,536 bytes in 16 blocks ==1178== suppressed: 10,966 bytes in 187 blocks ==1178== Rerun with --leak-check=full to see details of leaked memory ==1178== ==1178== For counts of detected and suppressed errors, rerun with: -v ==1178== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1179== Memcheck, a memory error detector ==1179== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1179== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1179== Command: ./client-test SyncEvo::WebDAVTest::testHTMLEntities ==1179== Parent PID: 94 ==1179== --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1179-- Ignoring non-Dwarf2/3/4 block in .debug_info --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1179-- Last block truncated in .debug_info; ignoring --1179-- WARNING: Serious error when reading debug info --1179-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1179-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1179== ==1179== HEAP SUMMARY: ==1179== in use at exit: 209,746 bytes in 504 blocks ==1179== total heap usage: 35,695 allocs, 35,191 frees, 6,235,691 bytes allocated ==1179== ==1179== LEAK SUMMARY: ==1179== definitely lost: 0 bytes in 0 blocks ==1179== indirectly lost: 0 bytes in 0 blocks ==1179== possibly lost: 96 bytes in 1 blocks ==1179== still reachable: 198,684 bytes in 316 blocks ==1179== of which reachable via heuristic: ==1179== newarray : 1,536 bytes in 16 blocks ==1179== suppressed: 10,966 bytes in 187 blocks ==1179== Rerun with --leak-check=full to see details of leaked memory ==1179== ==1179== For counts of detected and suppressed errors, rerun with: -v ==1179== 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 SyncEvo::ForkExecTest::testFalse ==118== Parent PID: 94 ==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/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/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== ==118== HEAP SUMMARY: ==118== in use at exit: 243,406 bytes in 849 blocks ==118== total heap usage: 36,491 allocs, 35,642 frees, 6,248,492 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: 768 bytes in 3 blocks ==118== still reachable: 204,406 bytes in 367 blocks ==118== of which reachable via heuristic: ==118== length64 : 336 bytes in 6 blocks ==118== newarray : 1,680 bytes in 25 blocks ==118== suppressed: 35,248 bytes in 455 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) ==1180== Memcheck, a memory error detector ==1180== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==1180== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==1180== Command: ./client-test SyncEvo::ActiveSyncsTest::testInstantiate ==1180== Parent PID: 94 ==1180== --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1180-- Ignoring non-Dwarf2/3/4 block in .debug_info --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1180-- Last block truncated in .debug_info; ignoring --1180-- WARNING: Serious error when reading debug info --1180-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --1180-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==1180== ==1180== HEAP SUMMARY: ==1180== in use at exit: 209,746 bytes in 504 blocks ==1180== total heap usage: 53,599 allocs, 53,095 frees, 7,436,392 bytes allocated ==1180== ==1180== LEAK SUMMARY: ==1180== definitely lost: 0 bytes in 0 blocks ==1180== indirectly lost: 0 bytes in 0 blocks ==1180== possibly lost: 96 bytes in 1 blocks ==1180== still reachable: 198,684 bytes in 316 blocks ==1180== of which reachable via heuristic: ==1180== newarray : 1,536 bytes in 16 blocks ==1180== suppressed: 10,966 bytes in 187 blocks ==1180== Rerun with --leak-check=full to see details of leaked memory ==1180== ==1180== For counts of detected and suppressed errors, rerun with: -v ==1180== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==121== Memcheck, a memory error detector ==121== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==121== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==121== Command: /bin/false ==121== Parent PID: 118 ==121== ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 0 bytes in 0 blocks ==121== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==121== ==121== All heap blocks were freed -- no leaks are possible ==121== ==121== For counts of detected and suppressed errors, rerun with: -v ==121== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test SyncEvo::ForkExecTest::testPath ==122== Parent PID: 94 ==122== --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --122-- Ignoring non-Dwarf2/3/4 block in .debug_info --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --122-- Last block truncated in .debug_info; ignoring --122-- WARNING: Serious error when reading debug info --122-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --122-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 238,091 bytes in 825 blocks ==122== total heap usage: 36,508 allocs, 35,683 frees, 6,254,507 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 768 bytes in 3 blocks ==122== still reachable: 199,724 bytes in 354 blocks ==122== of which reachable via heuristic: ==122== length64 : 336 bytes in 6 blocks ==122== newarray : 1,680 bytes in 25 blocks ==122== suppressed: 34,975 bytes in 448 blocks ==122== Rerun with --leak-check=full to see details of leaked memory ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==125== Memcheck, a memory error detector ==125== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==125== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==125== Command: /bin/true ==125== Parent PID: 122 ==125== ==125== ==125== HEAP SUMMARY: ==125== in use at exit: 0 bytes in 0 blocks ==125== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==125== ==125== All heap blocks were freed -- no leaks are possible ==125== ==125== For counts of detected and suppressed errors, rerun with: -v ==125== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==126== Memcheck, a memory error detector ==126== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==126== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==126== Command: ./client-test SyncEvo::ForkExecTest::testNotFound ==126== Parent PID: 94 ==126== --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --126-- Ignoring non-Dwarf2/3/4 block in .debug_info --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --126-- Last block truncated in .debug_info; ignoring --126-- WARNING: Serious error when reading debug info --126-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --126-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==129== ==129== HEAP SUMMARY: ==129== in use at exit: 998,652 bytes in 6,065 blocks ==129== total heap usage: 36,288 allocs, 30,223 frees, 6,221,356 bytes allocated ==129== ==129== LEAK SUMMARY: ==129== definitely lost: 0 bytes in 0 blocks ==129== indirectly lost: 0 bytes in 0 blocks ==129== possibly lost: 96 bytes in 1 blocks ==129== still reachable: 962,175 bytes in 5,550 blocks ==129== of which reachable via heuristic: ==129== length64 : 336 bytes in 6 blocks ==129== newarray : 1,680 bytes in 25 blocks ==129== suppressed: 33,149 bytes in 487 blocks ==129== Rerun with --leak-check=full to see details of leaked memory ==129== ==129== For counts of detected and suppressed errors, rerun with: -v ==129== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==126== ==126== HEAP SUMMARY: ==126== in use at exit: 237,774 bytes in 822 blocks ==126== total heap usage: 36,410 allocs, 35,588 frees, 6,251,228 bytes allocated ==126== ==126== LEAK SUMMARY: ==126== definitely lost: 0 bytes in 0 blocks ==126== indirectly lost: 0 bytes in 0 blocks ==126== possibly lost: 768 bytes in 3 blocks ==126== still reachable: 199,383 bytes in 350 blocks ==126== of which reachable via heuristic: ==126== length64 : 336 bytes in 6 blocks ==126== newarray : 1,680 bytes in 25 blocks ==126== suppressed: 34,999 bytes in 449 blocks ==126== Rerun with --leak-check=full to see details of leaked memory ==126== ==126== For counts of detected and suppressed errors, rerun with: -v ==126== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==130== Memcheck, a memory error detector ==130== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==130== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==130== Command: ./client-test SyncEvo::ForkExecTest::testEnv1 ==130== Parent PID: 94 ==130== --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --130-- Ignoring non-Dwarf2/3/4 block in .debug_info --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --130-- Last block truncated in .debug_info; ignoring --130-- WARNING: Serious error when reading debug info --130-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --130-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==130== ==130== HEAP SUMMARY: ==130== in use at exit: 238,099 bytes in 825 blocks ==130== total heap usage: 36,557 allocs, 35,732 frees, 6,286,922 bytes allocated ==130== ==130== LEAK SUMMARY: ==130== definitely lost: 0 bytes in 0 blocks ==130== indirectly lost: 0 bytes in 0 blocks ==130== possibly lost: 768 bytes in 3 blocks ==130== still reachable: 199,732 bytes in 354 blocks ==130== of which reachable via heuristic: ==130== length64 : 336 bytes in 6 blocks ==130== newarray : 1,680 bytes in 25 blocks ==130== suppressed: 34,975 bytes in 448 blocks ==130== Rerun with --leak-check=full to see details of leaked memory ==130== ==130== For counts of detected and suppressed errors, rerun with: -v ==130== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==133== Memcheck, a memory error detector ==133== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==133== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==133== Command: /usr/bin/env ==133== Parent PID: 130 ==133== ==133== ==133== HEAP SUMMARY: ==133== in use at exit: 0 bytes in 0 blocks ==133== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==133== ==133== All heap blocks were freed -- no leaks are possible ==133== ==133== For counts of detected and suppressed errors, rerun with: -v ==133== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==134== Memcheck, a memory error detector ==134== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==134== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==134== Command: ./client-test SyncEvo::ForkExecTest::testEnv2 ==134== Parent PID: 94 ==134== --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --134-- Ignoring non-Dwarf2/3/4 block in .debug_info --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --134-- Last block truncated in .debug_info; ignoring --134-- WARNING: Serious error when reading debug info --134-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --134-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==134== ==134== HEAP SUMMARY: ==134== in use at exit: 243,414 bytes in 849 blocks ==134== total heap usage: 36,525 allocs, 35,676 frees, 6,284,094 bytes allocated ==134== ==134== LEAK SUMMARY: ==134== definitely lost: 0 bytes in 0 blocks ==134== indirectly lost: 0 bytes in 0 blocks ==134== possibly lost: 768 bytes in 3 blocks ==134== still reachable: 204,414 bytes in 367 blocks ==134== of which reachable via heuristic: ==134== length64 : 336 bytes in 6 blocks ==134== newarray : 1,680 bytes in 25 blocks ==134== suppressed: 35,248 bytes in 455 blocks ==134== Rerun with --leak-check=full to see details of leaked memory ==134== ==134== For counts of detected and suppressed errors, rerun with: -v ==134== 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: /usr/bin/env ==137== Parent PID: 134 ==137== ==137== ==137== HEAP SUMMARY: ==137== in use at exit: 0 bytes in 0 blocks ==137== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==137== ==137== All heap blocks were freed -- no leaks are possible ==137== ==137== For counts of detected and suppressed errors, rerun with: -v ==137== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==138== Memcheck, a memory error detector ==138== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==138== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==138== Command: ./client-test SyncEvo::ForkExecTest::testOutErr ==138== Parent PID: 94 ==138== --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --138-- Ignoring non-Dwarf2/3/4 block in .debug_info --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --138-- Last block truncated in .debug_info; ignoring --138-- WARNING: Serious error when reading debug info --138-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --138-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==138== ==138== HEAP SUMMARY: ==138== in use at exit: 243,422 bytes in 849 blocks ==138== total heap usage: 43,966 allocs, 43,117 frees, 6,529,837 bytes allocated ==138== ==138== LEAK SUMMARY: ==138== definitely lost: 0 bytes in 0 blocks ==138== indirectly lost: 0 bytes in 0 blocks ==138== possibly lost: 768 bytes in 3 blocks ==138== still reachable: 204,422 bytes in 367 blocks ==138== of which reachable via heuristic: ==138== length64 : 336 bytes in 6 blocks ==138== newarray : 1,680 bytes in 25 blocks ==138== suppressed: 35,248 bytes in 455 blocks ==138== Rerun with --leak-check=full to see details of leaked memory ==138== ==138== For counts of detected and suppressed errors, rerun with: -v ==138== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==141== Memcheck, a memory error detector ==141== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==141== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==141== Command: /usr/bin/env ==141== Parent PID: 138 ==141== ==141== ==141== HEAP SUMMARY: ==141== in use at exit: 0 bytes in 0 blocks ==141== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==141== ==141== All heap blocks were freed -- no leaks are possible ==141== ==141== For counts of detected and suppressed errors, rerun with: -v ==141== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==142== Memcheck, a memory error detector ==142== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==142== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==142== Command: ./client-test SyncEvo::ForkExecTest::testMerged ==142== Parent PID: 94 ==142== --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --142-- Ignoring non-Dwarf2/3/4 block in .debug_info --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --142-- Last block truncated in .debug_info; ignoring --142-- WARNING: Serious error when reading debug info --142-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --142-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==142== ==142== HEAP SUMMARY: ==142== in use at exit: 238,099 bytes in 825 blocks ==142== total heap usage: 44,516 allocs, 43,691 frees, 6,565,279 bytes allocated ==142== ==142== LEAK SUMMARY: ==142== definitely lost: 0 bytes in 0 blocks ==142== indirectly lost: 0 bytes in 0 blocks ==142== possibly lost: 768 bytes in 3 blocks ==142== still reachable: 199,732 bytes in 354 blocks ==142== of which reachable via heuristic: ==142== length64 : 336 bytes in 6 blocks ==142== newarray : 1,680 bytes in 25 blocks ==142== suppressed: 34,975 bytes in 448 blocks ==142== Rerun with --leak-check=full to see details of leaked memory ==142== ==142== For counts of detected and suppressed errors, rerun with: -v ==142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==145== Memcheck, a memory error detector ==145== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==145== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==145== Command: /usr/bin/env ==145== Parent PID: 142 ==145== ==145== ==145== HEAP SUMMARY: ==145== in use at exit: 0 bytes in 0 blocks ==145== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==145== ==145== All heap blocks were freed -- no leaks are possible ==145== ==145== For counts of detected and suppressed errors, rerun with: -v ==145== 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 SyncEvo::CmdlineTest::testFramework ==146== Parent PID: 94 ==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/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/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== ==146== HEAP SUMMARY: ==146== in use at exit: 209,746 bytes in 504 blocks ==146== total heap usage: 35,588 allocs, 35,084 frees, 6,428,386 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: 198,684 bytes in 316 blocks ==146== of which reachable via heuristic: ==146== newarray : 1,536 bytes in 16 blocks ==146== suppressed: 10,966 bytes in 187 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) ==147== Memcheck, a memory error detector ==147== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==147== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==147== Command: ./client-test SyncEvo::CmdlineTest::testSetupScheduleWorld ==147== Parent PID: 94 ==147== --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --147-- Ignoring non-Dwarf2/3/4 block in .debug_info --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --147-- Last block truncated in .debug_info; ignoring --147-- WARNING: Serious error when reading debug info --147-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --147-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==147== ==147== HEAP SUMMARY: ==147== in use at exit: 712,911 bytes in 6,203 blocks ==147== total heap usage: 187,049 allocs, 180,846 frees, 18,396,529 bytes allocated ==147== ==147== LEAK SUMMARY: ==147== definitely lost: 0 bytes in 0 blocks ==147== indirectly lost: 0 bytes in 0 blocks ==147== possibly lost: 1,440 bytes in 5 blocks ==147== still reachable: 261,291 bytes in 566 blocks ==147== of which reachable via heuristic: ==147== length64 : 5,424 bytes in 84 blocks ==147== newarray : 2,096 bytes in 51 blocks ==147== suppressed: 381,740 bytes in 5,097 blocks ==147== Rerun with --leak-check=full to see details of leaked memory ==147== ==147== For counts of detected and suppressed errors, rerun with: -v ==147== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==218== Memcheck, a memory error detector ==218== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==218== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==218== Command: ./client-test SyncEvo::CmdlineTest::testFutureConfig ==218== Parent PID: 94 ==218== --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --218-- Ignoring non-Dwarf2/3/4 block in .debug_info --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --218-- Last block truncated in .debug_info; ignoring --218-- WARNING: Serious error when reading debug info --218-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --218-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==218== ==218== HEAP SUMMARY: ==218== in use at exit: 712,975 bytes in 6,203 blocks ==218== total heap usage: 190,810 allocs, 184,607 frees, 19,616,811 bytes allocated ==218== ==218== LEAK SUMMARY: ==218== definitely lost: 0 bytes in 0 blocks ==218== indirectly lost: 0 bytes in 0 blocks ==218== possibly lost: 1,440 bytes in 5 blocks ==218== still reachable: 261,355 bytes in 566 blocks ==218== of which reachable via heuristic: ==218== length64 : 5,424 bytes in 84 blocks ==218== newarray : 2,096 bytes in 51 blocks ==218== suppressed: 381,740 bytes in 5,097 blocks ==218== Rerun with --leak-check=full to see details of leaked memory ==218== ==218== For counts of detected and suppressed errors, rerun with: -v ==218== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==287== Memcheck, a memory error detector ==287== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==287== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==287== Command: ./client-test SyncEvo::CmdlineTest::testPeerConfigMigration ==287== Parent PID: 94 ==287== --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --287-- Ignoring non-Dwarf2/3/4 block in .debug_info --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --287-- Last block truncated in .debug_info; ignoring --287-- WARNING: Serious error when reading debug info --287-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --287-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==287== ==287== HEAP SUMMARY: ==287== in use at exit: 712,679 bytes in 6,187 blocks ==287== total heap usage: 215,128 allocs, 208,941 frees, 24,460,530 bytes allocated ==287== ==287== LEAK SUMMARY: ==287== definitely lost: 0 bytes in 0 blocks ==287== indirectly lost: 0 bytes in 0 blocks ==287== possibly lost: 1,440 bytes in 5 blocks ==287== still reachable: 262,044 bytes in 587 blocks ==287== of which reachable via heuristic: ==287== length64 : 5,424 bytes in 84 blocks ==287== newarray : 2,096 bytes in 51 blocks ==287== suppressed: 380,755 bytes in 5,060 blocks ==287== Rerun with --leak-check=full to see details of leaked memory ==287== ==287== For counts of detected and suppressed errors, rerun with: -v ==287== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==356== Memcheck, a memory error detector ==356== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==356== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==356== Command: ./client-test SyncEvo::CmdlineTest::testContextConfigMigration ==356== Parent PID: 94 ==356== --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --356-- Ignoring non-Dwarf2/3/4 block in .debug_info --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --356-- Last block truncated in .debug_info; ignoring --356-- WARNING: Serious error when reading debug info --356-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --356-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==356== ==356== HEAP SUMMARY: ==356== in use at exit: 712,399 bytes in 6,188 blocks ==356== total heap usage: 228,138 allocs, 221,950 frees, 26,756,506 bytes allocated ==356== ==356== LEAK SUMMARY: ==356== definitely lost: 0 bytes in 0 blocks ==356== indirectly lost: 0 bytes in 0 blocks ==356== possibly lost: 1,440 bytes in 5 blocks ==356== still reachable: 260,971 bytes in 562 blocks ==356== of which reachable via heuristic: ==356== length64 : 5,424 bytes in 84 blocks ==356== newarray : 2,096 bytes in 51 blocks ==356== suppressed: 381,548 bytes in 5,086 blocks ==356== Rerun with --leak-check=full to see details of leaked memory ==356== ==356== For counts of detected and suppressed errors, rerun with: -v ==356== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==425== Memcheck, a memory error detector ==425== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==425== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==425== Command: ./client-test SyncEvo::CmdlineTest::testSetupDefault ==425== Parent PID: 94 ==425== --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --425-- Ignoring non-Dwarf2/3/4 block in .debug_info --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --425-- Last block truncated in .debug_info; ignoring --425-- WARNING: Serious error when reading debug info --425-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --425-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==425== ==425== HEAP SUMMARY: ==425== in use at exit: 712,655 bytes in 6,186 blocks ==425== total heap usage: 157,767 allocs, 151,581 frees, 14,814,346 bytes allocated ==425== ==425== LEAK SUMMARY: ==425== definitely lost: 0 bytes in 0 blocks ==425== indirectly lost: 0 bytes in 0 blocks ==425== possibly lost: 768 bytes in 3 blocks ==425== still reachable: 254,327 bytes in 431 blocks ==425== of which reachable via heuristic: ==425== length64 : 5,424 bytes in 84 blocks ==425== newarray : 2,096 bytes in 51 blocks ==425== suppressed: 389,120 bytes in 5,217 blocks ==425== Rerun with --leak-check=full to see details of leaked memory ==425== ==425== For counts of detected and suppressed errors, rerun with: -v ==425== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==482== Memcheck, a memory error detector ==482== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==482== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==482== Command: ./client-test SyncEvo::CmdlineTest::testSetupRenamed ==482== Parent PID: 94 ==482== --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --482-- Ignoring non-Dwarf2/3/4 block in .debug_info --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --482-- Last block truncated in .debug_info; ignoring --482-- WARNING: Serious error when reading debug info --482-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --482-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==482== ==482== HEAP SUMMARY: ==482== in use at exit: 712,191 bytes in 6,187 blocks ==482== total heap usage: 157,304 allocs, 151,117 frees, 14,384,782 bytes allocated ==482== ==482== LEAK SUMMARY: ==482== definitely lost: 0 bytes in 0 blocks ==482== indirectly lost: 0 bytes in 0 blocks ==482== possibly lost: 1,440 bytes in 5 blocks ==482== still reachable: 260,971 bytes in 562 blocks ==482== of which reachable via heuristic: ==482== length64 : 5,424 bytes in 84 blocks ==482== newarray : 2,096 bytes in 51 blocks ==482== suppressed: 381,340 bytes in 5,085 blocks ==482== Rerun with --leak-check=full to see details of leaked memory ==482== ==482== For counts of detected and suppressed errors, rerun with: -v ==482== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==538== Memcheck, a memory error detector ==538== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==538== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==538== Command: ./client-test SyncEvo::CmdlineTest::testSetupFunambol ==538== Parent PID: 94 ==538== --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --538-- Ignoring non-Dwarf2/3/4 block in .debug_info --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --538-- Last block truncated in .debug_info; ignoring --538-- WARNING: Serious error when reading debug info --538-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --538-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==538== ==538== HEAP SUMMARY: ==538== in use at exit: 710,814 bytes in 6,158 blocks ==538== total heap usage: 157,728 allocs, 151,570 frees, 14,400,617 bytes allocated ==538== ==538== LEAK SUMMARY: ==538== definitely lost: 0 bytes in 0 blocks ==538== indirectly lost: 0 bytes in 0 blocks ==538== possibly lost: 768 bytes in 3 blocks ==538== still reachable: 252,982 bytes in 404 blocks ==538== of which reachable via heuristic: ==538== length64 : 5,424 bytes in 84 blocks ==538== newarray : 2,096 bytes in 51 blocks ==538== suppressed: 388,624 bytes in 5,216 blocks ==538== Rerun with --leak-check=full to see details of leaked memory ==538== ==538== For counts of detected and suppressed errors, rerun with: -v ==538== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==594== Memcheck, a memory error detector ==594== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==594== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==594== Command: ./client-test SyncEvo::CmdlineTest::testSetupSynthesis ==594== Parent PID: 94 ==594== --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --594-- Ignoring non-Dwarf2/3/4 block in .debug_info --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --594-- Last block truncated in .debug_info; ignoring --594-- WARNING: Serious error when reading debug info --594-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --594-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==594== ==594== HEAP SUMMARY: ==594== in use at exit: 712,783 bytes in 6,203 blocks ==594== total heap usage: 120,281 allocs, 114,078 frees, 13,012,436 bytes allocated ==594== ==594== LEAK SUMMARY: ==594== definitely lost: 0 bytes in 0 blocks ==594== indirectly lost: 0 bytes in 0 blocks ==594== possibly lost: 768 bytes in 3 blocks ==594== still reachable: 253,622 bytes in 410 blocks ==594== of which reachable via heuristic: ==594== length64 : 5,424 bytes in 84 blocks ==594== newarray : 2,096 bytes in 51 blocks ==594== suppressed: 389,953 bytes in 5,255 blocks ==594== Rerun with --leak-check=full to see details of leaked memory ==594== ==594== For counts of detected and suppressed errors, rerun with: -v ==594== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==626== Memcheck, a memory error detector ==626== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==626== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==626== Command: ./client-test SyncEvo::CmdlineTest::testPrintServers ==626== Parent PID: 94 ==626== --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --626-- Ignoring non-Dwarf2/3/4 block in .debug_info --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --626-- Last block truncated in .debug_info; ignoring --626-- WARNING: Serious error when reading debug info --626-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --626-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==626== ==626== HEAP SUMMARY: ==626== in use at exit: 712,967 bytes in 6,203 blocks ==626== total heap usage: 316,514 allocs, 310,311 frees, 30,098,565 bytes allocated ==626== ==626== LEAK SUMMARY: ==626== definitely lost: 0 bytes in 0 blocks ==626== indirectly lost: 0 bytes in 0 blocks ==626== possibly lost: 1,440 bytes in 5 blocks ==626== still reachable: 261,347 bytes in 566 blocks ==626== of which reachable via heuristic: ==626== length64 : 5,424 bytes in 84 blocks ==626== newarray : 2,096 bytes in 51 blocks ==626== suppressed: 381,740 bytes in 5,097 blocks ==626== Rerun with --leak-check=full to see details of leaked memory ==626== ==626== For counts of detected and suppressed errors, rerun with: -v ==626== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==769== Memcheck, a memory error detector ==769== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==769== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==769== Command: ./client-test SyncEvo::CmdlineTest::testPrintFileTemplates ==769== Parent PID: 94 ==769== --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --769-- Ignoring non-Dwarf2/3/4 block in .debug_info --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --769-- Last block truncated in .debug_info; ignoring --769-- WARNING: Serious error when reading debug info --769-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --769-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==769== ==769== HEAP SUMMARY: ==769== in use at exit: 712,783 bytes in 6,203 blocks ==769== total heap usage: 194,984 allocs, 188,781 frees, 23,142,909 bytes allocated ==769== ==769== LEAK SUMMARY: ==769== definitely lost: 0 bytes in 0 blocks ==769== indirectly lost: 0 bytes in 0 blocks ==769== possibly lost: 1,440 bytes in 5 blocks ==769== still reachable: 261,347 bytes in 566 blocks ==769== of which reachable via heuristic: ==769== length64 : 5,424 bytes in 84 blocks ==769== newarray : 2,096 bytes in 51 blocks ==769== suppressed: 381,556 bytes in 5,097 blocks ==769== Rerun with --leak-check=full to see details of leaked memory ==769== ==769== For counts of detected and suppressed errors, rerun with: -v ==769== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==826== Memcheck, a memory error detector ==826== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==826== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==826== Command: ./client-test SyncEvo::CmdlineTest::testPrintFileTemplatesConfig ==826== Parent PID: 94 ==826== --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --826-- Ignoring non-Dwarf2/3/4 block in .debug_info --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --826-- Last block truncated in .debug_info; ignoring --826-- WARNING: Serious error when reading debug info --826-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --826-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==826== ==826== HEAP SUMMARY: ==826== in use at exit: 712,791 bytes in 6,203 blocks ==826== total heap usage: 197,323 allocs, 191,120 frees, 23,500,785 bytes allocated ==826== ==826== LEAK SUMMARY: ==826== definitely lost: 0 bytes in 0 blocks ==826== indirectly lost: 0 bytes in 0 blocks ==826== possibly lost: 1,440 bytes in 5 blocks ==826== still reachable: 261,355 bytes in 566 blocks ==826== of which reachable via heuristic: ==826== length64 : 5,424 bytes in 84 blocks ==826== newarray : 2,096 bytes in 51 blocks ==826== suppressed: 381,556 bytes in 5,097 blocks ==826== Rerun with --leak-check=full to see details of leaked memory ==826== ==826== For counts of detected and suppressed errors, rerun with: -v ==826== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==882== Memcheck, a memory error detector ==882== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==882== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==882== Command: ./client-test SyncEvo::CmdlineTest::testTemplate ==882== Parent PID: 94 ==882== --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --882-- Ignoring non-Dwarf2/3/4 block in .debug_info --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --882-- Last block truncated in .debug_info; ignoring --882-- WARNING: Serious error when reading debug info --882-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --882-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==882== ==882== HEAP SUMMARY: ==882== in use at exit: 209,778 bytes in 504 blocks ==882== total heap usage: 38,125 allocs, 37,621 frees, 7,341,147 bytes allocated ==882== ==882== LEAK SUMMARY: ==882== definitely lost: 0 bytes in 0 blocks ==882== indirectly lost: 0 bytes in 0 blocks ==882== possibly lost: 96 bytes in 1 blocks ==882== still reachable: 198,716 bytes in 316 blocks ==882== of which reachable via heuristic: ==882== newarray : 1,536 bytes in 16 blocks ==882== suppressed: 10,966 bytes in 187 blocks ==882== Rerun with --leak-check=full to see details of leaked memory ==882== ==882== For counts of detected and suppressed errors, rerun with: -v ==882== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==883== Memcheck, a memory error detector ==883== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==883== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==883== Command: ./client-test SyncEvo::CmdlineTest::testMatchTemplate ==883== Parent PID: 94 ==883== --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --883-- Ignoring non-Dwarf2/3/4 block in .debug_info --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --883-- Last block truncated in .debug_info; ignoring --883-- WARNING: Serious error when reading debug info --883-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --883-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==883== ==883== HEAP SUMMARY: ==883== in use at exit: 209,842 bytes in 504 blocks ==883== total heap usage: 37,408 allocs, 36,904 frees, 7,749,513 bytes allocated ==883== ==883== LEAK SUMMARY: ==883== definitely lost: 0 bytes in 0 blocks ==883== indirectly lost: 0 bytes in 0 blocks ==883== possibly lost: 96 bytes in 1 blocks ==883== still reachable: 198,780 bytes in 316 blocks ==883== of which reachable via heuristic: ==883== newarray : 1,536 bytes in 16 blocks ==883== suppressed: 10,966 bytes in 187 blocks ==883== Rerun with --leak-check=full to see details of leaked memory ==883== ==883== For counts of detected and suppressed errors, rerun with: -v ==883== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==884== Memcheck, a memory error detector ==884== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==884== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==884== Command: ./client-test SyncEvo::CmdlineTest::testAddSource ==884== Parent PID: 94 ==884== --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --884-- Ignoring non-Dwarf2/3/4 block in .debug_info --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --884-- Last block truncated in .debug_info; ignoring --884-- WARNING: Serious error when reading debug info --884-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --884-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==884== ==884== HEAP SUMMARY: ==884== in use at exit: 712,975 bytes in 6,203 blocks ==884== total heap usage: 194,856 allocs, 188,653 frees, 21,007,191 bytes allocated ==884== ==884== LEAK SUMMARY: ==884== definitely lost: 0 bytes in 0 blocks ==884== indirectly lost: 0 bytes in 0 blocks ==884== possibly lost: 1,440 bytes in 5 blocks ==884== still reachable: 261,355 bytes in 566 blocks ==884== of which reachable via heuristic: ==884== length64 : 5,424 bytes in 84 blocks ==884== newarray : 2,096 bytes in 51 blocks ==884== suppressed: 381,740 bytes in 5,097 blocks ==884== Rerun with --leak-check=full to see details of leaked memory ==884== ==884== For counts of detected and suppressed errors, rerun with: -v ==884== 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 SyncEvolution ==94== Parent PID: 90 ==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/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/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== ==94== HEAP SUMMARY: ==94== in use at exit: 209,698 bytes in 503 blocks ==94== total heap usage: 62,812 allocs, 62,309 frees, 11,550,899 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: 198,636 bytes in 315 blocks ==94== of which reachable via heuristic: ==94== newarray : 1,536 bytes in 16 blocks ==94== suppressed: 10,966 bytes in 187 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) ==955== Memcheck, a memory error detector ==955== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==955== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==955== Command: ./client-test SyncEvo::CmdlineTest::testSync ==955== Parent PID: 94 ==955== --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --955-- Ignoring non-Dwarf2/3/4 block in .debug_info --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --955-- Last block truncated in .debug_info; ignoring --955-- WARNING: Serious error when reading debug info --955-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --955-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==955== ==955== HEAP SUMMARY: ==955== in use at exit: 209,970 bytes in 504 blocks ==955== total heap usage: 36,473 allocs, 35,969 frees, 6,926,829 bytes allocated ==955== ==955== LEAK SUMMARY: ==955== definitely lost: 0 bytes in 0 blocks ==955== indirectly lost: 0 bytes in 0 blocks ==955== possibly lost: 96 bytes in 1 blocks ==955== still reachable: 198,908 bytes in 316 blocks ==955== of which reachable via heuristic: ==955== newarray : 1,536 bytes in 16 blocks ==955== suppressed: 10,966 bytes in 187 blocks ==955== Rerun with --leak-check=full to see details of leaked memory ==955== ==955== For counts of detected and suppressed errors, rerun with: -v ==955== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==956== Memcheck, a memory error detector ==956== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==956== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==956== Command: ./client-test SyncEvo::CmdlineTest::testKeyring ==956== Parent PID: 94 ==956== --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --956-- Ignoring non-Dwarf2/3/4 block in .debug_info --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --956-- Last block truncated in .debug_info; ignoring --956-- WARNING: Serious error when reading debug info --956-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --956-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==956== ==956== HEAP SUMMARY: ==956== in use at exit: 209,818 bytes in 505 blocks ==956== total heap usage: 78,971 allocs, 78,466 frees, 14,318,066 bytes allocated ==956== ==956== LEAK SUMMARY: ==956== definitely lost: 0 bytes in 0 blocks ==956== indirectly lost: 0 bytes in 0 blocks ==956== possibly lost: 96 bytes in 1 blocks ==956== still reachable: 198,756 bytes in 317 blocks ==956== of which reachable via heuristic: ==956== newarray : 1,536 bytes in 16 blocks ==956== suppressed: 10,966 bytes in 187 blocks ==956== Rerun with --leak-check=full to see details of leaked memory ==956== ==956== For counts of detected and suppressed errors, rerun with: -v ==956== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==957== Memcheck, a memory error detector ==957== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==957== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==957== Command: ./client-test SyncEvo::CmdlineTest::testWebDAV ==957== Parent PID: 94 ==957== --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --957-- Ignoring non-Dwarf2/3/4 block in .debug_info --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --957-- Last block truncated in .debug_info; ignoring --957-- WARNING: Serious error when reading debug info --957-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --957-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==957== ==957== HEAP SUMMARY: ==957== in use at exit: 209,818 bytes in 505 blocks ==957== total heap usage: 86,585 allocs, 86,080 frees, 15,364,159 bytes allocated ==957== ==957== LEAK SUMMARY: ==957== definitely lost: 0 bytes in 0 blocks ==957== indirectly lost: 0 bytes in 0 blocks ==957== possibly lost: 96 bytes in 1 blocks ==957== still reachable: 198,756 bytes in 317 blocks ==957== of which reachable via heuristic: ==957== newarray : 1,536 bytes in 16 blocks ==957== suppressed: 10,966 bytes in 187 blocks ==957== Rerun with --leak-check=full to see details of leaked memory ==957== ==957== For counts of detected and suppressed errors, rerun with: -v ==957== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==958== Memcheck, a memory error detector ==958== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==958== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==958== Command: ./client-test SyncEvo::CmdlineTest::testConfigure ==958== Parent PID: 94 ==958== --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --958-- Ignoring non-Dwarf2/3/4 block in .debug_info --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --958-- Last block truncated in .debug_info; ignoring --958-- WARNING: Serious error when reading debug info --958-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --958-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==958== ==958== HEAP SUMMARY: ==958== in use at exit: 707,121 bytes in 6,091 blocks ==958== total heap usage: 285,976 allocs, 279,885 frees, 41,996,799 bytes allocated ==958== ==958== LEAK SUMMARY: ==958== definitely lost: 0 bytes in 0 blocks ==958== indirectly lost: 0 bytes in 0 blocks ==958== possibly lost: 768 bytes in 3 blocks ==958== still reachable: 251,638 bytes in 394 blocks ==958== of which reachable via heuristic: ==958== length64 : 5,424 bytes in 84 blocks ==958== newarray : 2,096 bytes in 51 blocks ==958== suppressed: 386,443 bytes in 5,161 blocks ==958== Rerun with --leak-check=full to see details of leaked memory ==958== ==958== For counts of detected and suppressed errors, rerun with: -v ==958== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) valgrindcheck: ./client-test SyncEvolution: final result 0 wrappercheck-85 line 100: RET=0 wrappercheck-85 line 101: set -e wrappercheck-85 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-85 line 108: kill -INT -87 wrappercheck-85 line 108: kill -TERM -87 wrappercheck-85 line 108: kill -TERM 87 wrappercheck-85 line 110: KILL_PID=2138 wrappercheck-85 line 115: set +e wrappercheck-85 line 109: perl -e 'sleep(60); kill(9, -87);' wrappercheck-85 line 116: wait 87 wrappercheck-85 line 117: SUBRET=143 wrappercheck-85 line 118: case $SUBRET in wrappercheck-85 line 118: SUBRET=0 wrappercheck-85 line 120: SUBRET=0 wrappercheck-85 line 121: '[' 2138 ']' wwrappercheck-85 line 122: LC_ALL=C wwrappercheck-85 line 122: kill -KILL 2138 wrappercheck-85 line 122: msg= wrappercheck-85 line 123: echo '' wrappercheck-85 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2138 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-85 line 127: echo '' wrappercheck-85 line 129: wait 2138 wrappercheck-85 line 131: set -e wrappercheck-85 line 132: '[' 0 = 0 ']' wrappercheck-85 line 133: RET=0 wrappercheck-85 line 136: exit 0 wrappercheck-65 line 100: RET=0 wrappercheck-65 line 101: set -e wrappercheck-65 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-65 line 108: kill -INT -67 wrappercheck-65 line 108: kill -TERM -67 wrappercheck-65 line 108: kill -TERM 67 wrappercheck-65 line 110: KILL_PID=2143 wrappercheck-65 line 115: set +e wrappercheck-65 line 116: wait 67 wrappercheck-65 line 117: SUBRET=143 wrappercheck-65 line 118: case $SUBRET in wrappercheck-65 line 118: SUBRET=0 wrappercheck-65 line 120: SUBRET=0 wrappercheck-65 line 121: '[' 2143 ']' wrappercheck-65 line 109: perl -e 'sleep(60); kill(9, -67);' wwrappercheck-65 line 122: LC_ALL=C wwrappercheck-65 line 122: kill -KILL 2143 wrappercheck-65 line 122: msg= wrappercheck-65 line 123: echo '' wrappercheck-65 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2143 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-65 line 127: echo '' wrappercheck-65 line 129: wait 2143 wrappercheck-65 line 131: set -e wrappercheck-65 line 132: '[' 0 = 0 ']' wrappercheck-65 line 133: RET=0 wrappercheck-65 line 136: exit 0 wrappercheck-41 line 100: RET=0 wrappercheck-41 line 101: set -e wrappercheck-41 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-41 line 108: kill -INT -44 wrappercheck-41 line 108: kill -TERM -44 wrappercheck-41 line 108: kill -TERM 44 wrappercheck-41 line 110: KILL_PID=2148 wrappercheck-41 line 109: perl -e 'sleep(60); kill(9, -44);' wrappercheck-41 line 115: set +e wrappercheck-41 line 116: wait 44 wrappercheck-41 line 117: SUBRET=143 wrappercheck-41 line 118: case $SUBRET in wrappercheck-41 line 118: SUBRET=0 wrappercheck-41 line 120: SUBRET=0 wrappercheck-41 line 121: '[' 2148 ']' wwrappercheck-41 line 122: LC_ALL=C wwrappercheck-41 line 122: kill -KILL 2148 wrappercheck-41 line 122: msg= wrappercheck-41 line 123: grep -q 'No such process' wrappercheck-41 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2148 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-41 line 127: echo '' wrappercheck-41 line 129: wait 2148 wrappercheck-41 line 131: set -e wrappercheck-41 line 132: '[' 0 = 0 ']' wrappercheck-41 line 133: RET=0 wrappercheck-41 line 136: exit 0 wrappercheck-36 line 100: RET=0 wrappercheck-36 line 101: set -e wrappercheck-36 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-36 line 108: kill -INT -38 wrappercheck-36 line 108: kill -TERM -38 wrappercheck-36 line 108: kill -TERM 38 wrappercheck-36 line 110: KILL_PID=2153 wrappercheck-36 line 109: perl -e 'sleep(60); kill(9, -38);' wrappercheck-36 line 115: set +e wrappercheck-36 line 116: wait 38 wrappercheck-36 line 117: SUBRET=143 wrappercheck-36 line 118: case $SUBRET in wrappercheck-36 line 118: SUBRET=0 wrappercheck-36 line 120: SUBRET=0 wrappercheck-36 line 121: '[' 2153 ']' wwrappercheck-36 line 122: LC_ALL=C wwrappercheck-36 line 122: kill -KILL 2153 wrappercheck-36 line 122: msg= wrappercheck-36 line 123: grep -q 'No such process' wrappercheck-36 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2153 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-36 line 127: echo '' wrappercheck-36 line 129: wait 2153 wrappercheck-36 line 131: set -e wrappercheck-36 line 132: '[' 0 = 0 ']' wrappercheck-36 line 133: RET=0 wrappercheck-36 line 136: exit 0 wrappercheck-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for signond wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=2158 wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 22 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-18 line 121: '[' 2158 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 2158 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: grep -q 'No such process' wrappercheck-18 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2158 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 2158 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 0 = 0 ']' wrappercheck-18 line 133: RET=0 wrappercheck-18 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.3GpQDgkcmK Fri Jan 5 16:12:12 2018 UTC (+ 502.4s / 919.5s) === cleaning up ===