runtests.py-25894 Fri Jan 5 15:47:06 2018 UTC (+ 1.0s / 1095.9s) target /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-25894 Fri Jan 5 15:47:06 2018 UTC (+ 0.2s / 1096.1s) target /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/downstream-xenial-amd64/home/davical/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/.cache new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/cache old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/.config new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/config old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/.local/share new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/davical/data runtests.py-25894 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1096.1s) === starting davical === runtests.py-25894 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/19-davical, /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/19-davical runtests.py-25894 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/davical (= /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/davical) runtests.py-25894 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/davical; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/downstream-xenial-amd64/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- env 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server 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/davical -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 davical ./syncevolution ) Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['davical'] === Fri Jan 5 16:21:12 2018 UTC (+ 2045.6s / 2045.6s) property changed: status = acquired Fri Jan 5 16:21:12 2018 UTC (+ 0.0s / 2045.6s) using jobserver Fri Jan 5 16:21:12 2018 UTC (+ 0.0s / 2045.6s) === allocating 1 job slot(s) === Fri Jan 5 16:32:14 2018 UTC (+ 662.1s / 2707.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-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 davical ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 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 '!=' -- ']' 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 wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' signond.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 70: exec 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' ** Message: couldn't access control socket: /tmp/tmp.Cj3Vcqp3hJ/keyring/control: No such file or directory 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 davical ./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 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 davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-37 line 16: PIDS= wrappercheck-37 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-37 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-37 line 21: DAEMON_LOG= wrappercheck-37 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-37 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-37 line 25: declare -a BACKGROUND wrappercheck-37 line 26: declare -a ENV wrappercheck-37 line 28: '[' 26 -gt 1 ']' wrappercheck-37 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-37 line 29: case "$1" in wrappercheck-37 line 31: shift wrappercheck-37 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-37 line 53: shift wrappercheck-37 line 28: '[' 24 -gt 1 ']' wrappercheck-37 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-37 line 29: case "$1" in wrappercheck-37 line 43: shift wrappercheck-37 line 44: DAEMON_SLEEP=5 wrappercheck-37 line 53: shift wrappercheck-37 line 28: '[' 22 -gt 1 ']' wrappercheck-37 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-37 line 29: case "$1" in wrappercheck-37 line 35: shift wrappercheck-37 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-37 line 53: shift wrappercheck-37 line 28: '[' 20 -gt 1 ']' wrappercheck-37 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-37 line 29: case "$1" in wrappercheck-37 line 50: break wrappercheck-37 line 56: '[' 20 -gt 1 ']' wrappercheck-37 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-37 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-37 line 58: shift wrappercheck-33 line 70: set -x wrappercheck-37 line 56: '[' 19 -gt 1 ']' wrappercheck-37 line 56: '[' -- '!=' -- ']' wrappercheck-33 line 70: exec wrappercheck-37 line 60: shift wrappercheck-37 line 62: '[' evolution-source-registry.log ']' wrappercheck-37 line 62: '[' '' ']' wrappercheck-37 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-37 line 72: BACKGROUND_PID=40 wrappercheck-37 line 70: set -x wrappercheck-37 line 73: PIDS+=40 wrappercheck-37 line 70: exec wrappercheck-37 line 75: '[' evolution-source-registry.log ']' wrappercheck-37 line 75: '[' '' ']' wrappercheck-37 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-37 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-37 line 93: kill -0 40 wrappercheck-37 line 94: set +e wrappercheck-37 line 95: '[' 5 ']' wrappercheck-37 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-37 line 97: sleep 5 wrappercheck-37 line 99: set -x wrappercheck-37 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-62 line 70: set -x wrappercheck-62 line 70: exec 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 davical ./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 70: set -x wrappercheck-82 line 70: exec 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 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: env /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/downstream-xenial-amd64/home/davical/.sync4j/evolution/davical_[12]' '/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/davical_[12]' '/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-[12]/peers/davical_[12]' '/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=davical_1@client-test-davical-1 ++ credentials davical_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_1@client-test-davical-1 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources addressbook eds_contact + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_contact + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources calendar eds_event + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_event + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources todo eds_task + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_task + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources memo eds_memo + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 davical_1@client-test-davical-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 davical_1@client-test-davical-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 davical_1@client-test-davical-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 davical_1@client-test-davical-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_1/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_1@client-test-davical-1 davical_caldav davical_caldavtodo davical_carddav + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=davical_2@client-test-davical-2 ++ credentials davical_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_2@client-test-davical-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources addressbook eds_contact + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_contact + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources calendar eds_event + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_event + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources todo eds_task + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_task + copy_source /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources memo eds_memo + path=/data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 davical_2@client-test-davical-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 davical_2@client-test-davical-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 davical_2@client-test-davical-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 davical_2@client-test-davical-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_2/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_2@client-test-davical-2 davical_caldav davical_caldavtodo davical_carddav + case $TEST in + rm -rf /data/runtests/work/downstream-xenial-amd64/home/davical/config/syncevolution/client-test-davical + ./syncevolution --configure --daemon=no proxyHost=http://proxy.vlan13.01.org:3128 useProxy=0 loglevel=4 syncURL=http://localhost:9009/davical/caldav.php retryDuration=2m username=test password=testing printChanges=0 dumpData=0 caldav/backend=caldav caldavtodo/backend=caldavtodo carddav/backend=carddav target-config@client-test-davical caldav caldavtodo carddav [INFO] caldav: configuring datastore with sync mode 'two-way' [INFO] caldavtodo: configuring datastore with sync mode 'two-way' [INFO] carddav: configuring datastore with sync mode 'two-way' + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ 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 ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + 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=826 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 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: '[' 826 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 826 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: echo '' wrappercheck-82 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 826 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 826 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=831 wrappercheck-62 line 109: perl -e 'sleep(60); kill(9, -64);' wrappercheck-62 line 115: set +e wrappercheck-62 line 116: wait 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: '[' 831 ']' wwrappercheck-62 line 122: LC_ALL=C wwrappercheck-62 line 122: kill -KILL 831 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: 831 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-62 line 127: echo '' wrappercheck-62 line 129: wait 831 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-37 line 100: RET=0 wrappercheck-37 line 101: set -e wrappercheck-37 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-37 line 108: kill -INT -40 wrappercheck-37 line 108: kill -TERM -40 wrappercheck-37 line 108: kill -TERM 40 wrappercheck-37 line 110: KILL_PID=836 wrappercheck-37 line 109: perl -e 'sleep(60); kill(9, -40);' wrappercheck-37 line 115: set +e wrappercheck-37 line 116: wait 40 wrappercheck-37 line 117: SUBRET=143 wrappercheck-37 line 118: case $SUBRET in wrappercheck-37 line 118: SUBRET=0 wrappercheck-37 line 120: SUBRET=0 wrappercheck-37 line 121: '[' 836 ']' wwrappercheck-37 line 122: LC_ALL=C wwrappercheck-37 line 122: kill -KILL 836 wrappercheck-37 line 122: msg= wrappercheck-37 line 123: echo '' wrappercheck-37 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 836 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-37 line 127: echo '' wrappercheck-37 line 129: wait 836 wrappercheck-37 line 131: set -e wrappercheck-37 line 132: '[' 0 = 0 ']' wrappercheck-37 line 133: RET=0 wrappercheck-37 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=841 wrappercheck-33 line 115: set +e wrappercheck-33 line 109: perl -e 'sleep(60); kill(9, -35);' 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: '[' 841 ']' wwrappercheck-33 line 122: LC_ALL=C wwrappercheck-33 line 122: kill -KILL 841 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: 841 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-33 line 127: echo '' wrappercheck-33 line 129: wait 841 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=846 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 846 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 846 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: 846 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 846 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.Cj3Vcqp3hJ Fri Jan 5 16:32:24 2018 UTC (+ 10.2s / 2717.9s) === cleaning up === runtests.py-25894 Fri Jan 5 16:32:24 2018 UTC (+ 2717.9s / 3814.1s) *** ( cd /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/davical; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/downstream-xenial-amd64/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/davical/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- env VALGRIND_LEAK_CHECK_SKIP=akonadi_control,.bin.sh.-c. VALGRIND_LEAK_CHECK_ONLY_FIRST=1 'VALGRIND_ARGS=--show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=davical CLIENT_TEST_SOURCES=davical_caldav,davical_caldavtodo,davical_carddav,eds_event,eds_task,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server 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/davical -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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 16:32:24 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['davical'] === Fri Jan 5 17:12:59 2018 UTC (+ 2434.8s / 2434.8s) property changed: status = acquired Fri Jan 5 17:12:59 2018 UTC (+ 0.0s / 2434.8s) using jobserver Fri Jan 5 17:12:59 2018 UTC (+ 0.0s / 2434.8s) === allocating 1 job slot(s) === Fri Jan 5 17:13:08 2018 UTC (+ 9.6s / 2444.4s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.f3YyYOCs8l/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: '[' 52 -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: '[' 50 -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: '[' 48 -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: '[' 47 -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: '[' 46 -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: '[' 45 -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: '[' 44 -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: '[' 43 -gt 1 ']' wrappercheck-18 line 28: '[' signond '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 43 -gt 1 ']' wrappercheck-18 line 56: '[' signond '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=signond wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 42 -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=23 wrappercheck-18 line 73: PIDS+=23 wrappercheck-18 line 70: set -x wrappercheck-18 line 75: '[' signond.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 70: exec 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 93: kill -0 23 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + 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: '[' 40 -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: '[' 38 -gt 1 ']' wrappercheck-36 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-36 line 29: case "$1" in wrappercheck-36 line 50: break wrappercheck-36 line 56: '[' 38 -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: '[' 37 -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: '[' 36 -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 70: set -x wrappercheck-36 line 75: '[' dbus-monitor.log ']' wrappercheck-36 line 70: exec wrappercheck-36 line 75: '[' '' ']' wrappercheck-36 line 84: '[' '' ']' 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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 34 -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: '[' 32 -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: '[' 30 -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: '[' 28 -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: '[' 28 -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: '[' 27 -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=45 wrappercheck-41 line 73: PIDS+=45 wrappercheck-41 line 70: set -x wrappercheck-41 line 70: exec wrappercheck-41 line 75: '[' evolution-source-registry.log ']' wrappercheck-41 line 75: '[' '' ']' 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 45 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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 25 -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: '[' 23 -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: '[' 21 -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: '[' 21 -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: '[' 20 -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: '[' 19 -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 70: set -x wrappercheck-65 line 73: PIDS+=67 wrappercheck-65 line 70: exec wrappercheck-65 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-65 line 75: '[' '' ']' wrappercheck-65 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' 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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 17 -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: '[' 15 -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: '[' 15 -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: '[' 14 -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: '[' 13 -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 73: PIDS+=87 wrappercheck-85 line 70: set -x wrappercheck-85 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-85 line 70: exec 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 Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems *** 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/davical/valgrind.p90.c%p.out ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems Client::Source::davical_caldav::testLinkedSources okay sess: Destroying session. Client::Source::davical_caldav::testImport okay sess: Destroying session. Client::Source::davical_caldavtodo::testImport okay sess: Destroying session. Client::Source::davical_carddav::testImport okay sess: Destroying session. Client::Sync::eds_event::testItems okay Client::Sync::eds_task::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (90): './client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems' (94): returned 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 Client::Source::davical_caldav::testLinkedSources ==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: 465,702 bytes in 2,368 blocks ==105== total heap usage: 342,582 allocs, 340,127 frees, 50,364,062 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: 1,104 bytes in 4 blocks ==105== still reachable: 382,595 bytes in 1,265 blocks ==105== of which reachable via heuristic: ==105== length64 : 1,072 bytes in 19 blocks ==105== newarray : 1,728 bytes in 28 blocks ==105== suppressed: 70,643 bytes in 1,017 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) ==109== Memcheck, a memory error detector ==109== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==109== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==109== Command: ./client-test Client::Source::davical_caldav::testImport ==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: 462,630 bytes in 2,356 blocks ==109== total heap usage: 141,522 allocs, 139,107 frees, 25,138,578 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: 1,104 bytes in 4 blocks ==109== still reachable: 379,523 bytes in 1,253 blocks ==109== of which reachable via heuristic: ==109== length64 : 1,072 bytes in 19 blocks ==109== newarray : 1,728 bytes in 28 blocks ==109== suppressed: 70,643 bytes in 1,017 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) ==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: ./client-test Client::Source::davical_caldavtodo::testImport ==121== Parent PID: 94 ==121== --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --121-- Ignoring non-Dwarf2/3/4 block in .debug_info --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --121-- Last block truncated in .debug_info; ignoring --121-- WARNING: Serious error when reading debug info --121-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --121-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 302,765 bytes in 1,699 blocks ==121== total heap usage: 98,002 allocs, 96,244 frees, 13,342,350 bytes allocated ==121== ==121== LEAK SUMMARY: ==121== definitely lost: 0 bytes in 0 blocks ==121== indirectly lost: 0 bytes in 0 blocks ==121== possibly lost: 1,104 bytes in 4 blocks ==121== still reachable: 219,658 bytes in 596 blocks ==121== of which reachable via heuristic: ==121== length64 : 1,072 bytes in 19 blocks ==121== newarray : 1,728 bytes in 28 blocks ==121== suppressed: 70,643 bytes in 1,017 blocks ==121== Rerun with --leak-check=full to see details of leaked memory ==121== ==121== For counts of detected and suppressed errors, rerun with: -v ==121== 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: ./client-test Client::Source::davical_carddav::testImport ==133== Parent PID: 94 ==133== --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --133-- Ignoring non-Dwarf2/3/4 block in .debug_info --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --133-- Last block truncated in .debug_info; ignoring --133-- WARNING: Serious error when reading debug info --133-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --133-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==133== ==133== HEAP SUMMARY: ==133== in use at exit: 302,765 bytes in 1,699 blocks ==133== total heap usage: 153,280 allocs, 151,522 frees, 29,927,863 bytes allocated ==133== ==133== LEAK SUMMARY: ==133== definitely lost: 0 bytes in 0 blocks ==133== indirectly lost: 0 bytes in 0 blocks ==133== possibly lost: 1,104 bytes in 4 blocks ==133== still reachable: 219,658 bytes in 596 blocks ==133== of which reachable via heuristic: ==133== length64 : 1,072 bytes in 19 blocks ==133== newarray : 1,728 bytes in 28 blocks ==133== suppressed: 70,643 bytes in 1,017 blocks ==133== Rerun with --leak-check=full to see details of leaked memory ==133== ==133== For counts of detected and suppressed errors, rerun with: -v ==133== 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: ./client-test Client::Sync::eds_event::testItems ==145== Parent PID: 94 ==145== --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --145-- Ignoring non-Dwarf2/3/4 block in .debug_info --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --145-- Last block truncated in .debug_info; ignoring --145-- WARNING: Serious error when reading debug info --145-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --145-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==145== ==145== HEAP SUMMARY: ==145== in use at exit: 2,772,255 bytes in 26,525 blocks ==145== total heap usage: 1,491,106 allocs, 1,464,522 frees, 192,601,078 bytes allocated ==145== ==145== LEAK SUMMARY: ==145== definitely lost: 0 bytes in 0 blocks ==145== indirectly lost: 0 bytes in 0 blocks ==145== possibly lost: 1,104 bytes in 4 blocks ==145== still reachable: 2,341,686 bytes in 21,537 blocks ==145== of which reachable via heuristic: ==145== length64 : 5,176 bytes in 82 blocks ==145== newarray : 2,048 bytes in 48 blocks ==145== suppressed: 365,249 bytes in 4,494 blocks ==145== Rerun with --leak-check=full to see details of leaked memory ==145== ==145== For counts of detected and suppressed errors, rerun with: -v ==145== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==171== Memcheck, a memory error detector ==171== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==171== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==171== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==171== Parent PID: 145 ==171== --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --171-- Ignoring non-Dwarf2/3/4 block in .debug_info --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --171-- Last block truncated in .debug_info; ignoring --171-- WARNING: Serious error when reading debug info --171-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --171-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==171== ==171== HEAP SUMMARY: ==171== in use at exit: 2,475,465 bytes in 22,060 blocks ==171== total heap usage: 228,766 allocs, 206,706 frees, 38,141,585 bytes allocated ==171== ==171== LEAK SUMMARY: ==171== definitely lost: 0 bytes in 0 blocks ==171== indirectly lost: 0 bytes in 0 blocks ==171== possibly lost: 768 bytes in 3 blocks ==171== still reachable: 2,430,023 bytes in 21,460 blocks ==171== of which reachable via heuristic: ==171== length64 : 400 bytes in 7 blocks ==171== newarray : 1,680 bytes in 25 blocks ==171== suppressed: 41,306 bytes in 569 blocks ==171== Rerun with --leak-check=full to see details of leaked memory ==171== ==171== For counts of detected and suppressed errors, rerun with: -v ==171== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==171== could not unlink /tmp/vgdb-pipe-from-vgdb-to-171-by-nightly-on-syncev ==171== could not unlink /tmp/vgdb-pipe-to-vgdb-from-171-by-nightly-on-syncev ==171== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-171-by-nightly-on-syncev ==212== Memcheck, a memory error detector ==212== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==212== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==212== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==212== Parent PID: 145 ==212== --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --212-- Ignoring non-Dwarf2/3/4 block in .debug_info --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --212-- Last block truncated in .debug_info; ignoring --212-- WARNING: Serious error when reading debug info --212-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --212-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==212== ==212== HEAP SUMMARY: ==212== in use at exit: 2,437,833 bytes in 21,913 blocks ==212== total heap usage: 175,886 allocs, 153,973 frees, 32,389,180 bytes allocated ==212== ==212== LEAK SUMMARY: ==212== definitely lost: 0 bytes in 0 blocks ==212== indirectly lost: 0 bytes in 0 blocks ==212== possibly lost: 768 bytes in 3 blocks ==212== still reachable: 2,392,391 bytes in 21,313 blocks ==212== of which reachable via heuristic: ==212== length64 : 400 bytes in 7 blocks ==212== newarray : 1,680 bytes in 25 blocks ==212== suppressed: 41,306 bytes in 569 blocks ==212== Rerun with --leak-check=full to see details of leaked memory ==212== ==212== For counts of detected and suppressed errors, rerun with: -v ==212== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==270== Memcheck, a memory error detector ==270== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==270== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==270== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==270== Parent PID: 145 ==270== --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --270-- Ignoring non-Dwarf2/3/4 block in .debug_info --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --270-- Last block truncated in .debug_info; ignoring --270-- WARNING: Serious error when reading debug info --270-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --270-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==270== ==270== HEAP SUMMARY: ==270== in use at exit: 2,396,321 bytes in 21,828 blocks ==270== total heap usage: 276,385 allocs, 254,557 frees, 42,472,405 bytes allocated ==270== ==270== LEAK SUMMARY: ==270== definitely lost: 0 bytes in 0 blocks ==270== indirectly lost: 0 bytes in 0 blocks ==270== possibly lost: 768 bytes in 3 blocks ==270== still reachable: 2,350,879 bytes in 21,228 blocks ==270== of which reachable via heuristic: ==270== length64 : 400 bytes in 7 blocks ==270== newarray : 1,680 bytes in 25 blocks ==270== suppressed: 41,306 bytes in 569 blocks ==270== Rerun with --leak-check=full to see details of leaked memory ==270== ==270== For counts of detected and suppressed errors, rerun with: -v ==270== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==270== could not unlink /tmp/vgdb-pipe-from-vgdb-to-270-by-nightly-on-syncev ==270== could not unlink /tmp/vgdb-pipe-to-vgdb-from-270-by-nightly-on-syncev ==270== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-270-by-nightly-on-syncev ==300== Memcheck, a memory error detector ==300== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==300== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==300== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==300== Parent PID: 145 ==300== --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --300-- Ignoring non-Dwarf2/3/4 block in .debug_info --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --300-- Last block truncated in .debug_info; ignoring --300-- WARNING: Serious error when reading debug info --300-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --300-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==300== ==300== HEAP SUMMARY: ==300== in use at exit: 2,475,465 bytes in 22,060 blocks ==300== total heap usage: 221,938 allocs, 199,878 frees, 37,344,987 bytes allocated ==300== ==300== LEAK SUMMARY: ==300== definitely lost: 0 bytes in 0 blocks ==300== indirectly lost: 0 bytes in 0 blocks ==300== possibly lost: 768 bytes in 3 blocks ==300== still reachable: 2,430,023 bytes in 21,460 blocks ==300== of which reachable via heuristic: ==300== length64 : 400 bytes in 7 blocks ==300== newarray : 1,680 bytes in 25 blocks ==300== suppressed: 41,306 bytes in 569 blocks ==300== Rerun with --leak-check=full to see details of leaked memory ==300== ==300== For counts of detected and suppressed errors, rerun with: -v ==300== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==300== could not unlink /tmp/vgdb-pipe-from-vgdb-to-300-by-nightly-on-syncev ==300== could not unlink /tmp/vgdb-pipe-to-vgdb-from-300-by-nightly-on-syncev ==300== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-300-by-nightly-on-syncev ==349== Memcheck, a memory error detector ==349== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==349== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==349== Command: ./client-test Client::Sync::eds_task::testItems ==349== Parent PID: 94 ==349== --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --349-- Ignoring non-Dwarf2/3/4 block in .debug_info --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --349-- Last block truncated in .debug_info; ignoring --349-- WARNING: Serious error when reading debug info --349-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --349-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==349== ==349== HEAP SUMMARY: ==349== in use at exit: 2,763,996 bytes in 26,388 blocks ==349== total heap usage: 1,035,699 allocs, 1,009,252 frees, 149,774,861 bytes allocated ==349== ==349== LEAK SUMMARY: ==349== definitely lost: 0 bytes in 0 blocks ==349== indirectly lost: 0 bytes in 0 blocks ==349== possibly lost: 1,104 bytes in 4 blocks ==349== still reachable: 2,334,903 bytes in 21,413 blocks ==349== of which reachable via heuristic: ==349== length64 : 5,176 bytes in 82 blocks ==349== newarray : 2,048 bytes in 48 blocks ==349== suppressed: 363,773 bytes in 4,481 blocks ==349== Rerun with --leak-check=full to see details of leaked memory ==349== ==349== For counts of detected and suppressed errors, rerun with: -v ==349== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==349== could not unlink /tmp/vgdb-pipe-from-vgdb-to-349-by-nightly-on-syncev ==349== could not unlink /tmp/vgdb-pipe-to-vgdb-from-349-by-nightly-on-syncev ==349== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-349-by-nightly-on-syncev ==381== Memcheck, a memory error detector ==381== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==381== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==381== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==381== Parent PID: 349 ==381== --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --381-- Ignoring non-Dwarf2/3/4 block in .debug_info --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --381-- Last block truncated in .debug_info; ignoring --381-- WARNING: Serious error when reading debug info --381-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --381-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==381== ==381== HEAP SUMMARY: ==381== in use at exit: 2,396,321 bytes in 21,828 blocks ==381== total heap usage: 163,881 allocs, 142,053 frees, 31,345,110 bytes allocated ==381== ==381== LEAK SUMMARY: ==381== definitely lost: 0 bytes in 0 blocks ==381== indirectly lost: 0 bytes in 0 blocks ==381== possibly lost: 768 bytes in 3 blocks ==381== still reachable: 2,350,879 bytes in 21,228 blocks ==381== of which reachable via heuristic: ==381== length64 : 400 bytes in 7 blocks ==381== newarray : 1,680 bytes in 25 blocks ==381== suppressed: 41,306 bytes in 569 blocks ==381== Rerun with --leak-check=full to see details of leaked memory ==381== ==381== For counts of detected and suppressed errors, rerun with: -v ==381== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==443== Memcheck, a memory error detector ==443== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==443== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==443== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==443== Parent PID: 349 ==443== --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --443-- Ignoring non-Dwarf2/3/4 block in .debug_info --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --443-- Last block truncated in .debug_info; ignoring --443-- WARNING: Serious error when reading debug info --443-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --443-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==443== ==443== HEAP SUMMARY: ==443== in use at exit: 2,396,321 bytes in 21,828 blocks ==443== total heap usage: 153,452 allocs, 131,624 frees, 30,212,704 bytes allocated ==443== ==443== LEAK SUMMARY: ==443== definitely lost: 0 bytes in 0 blocks ==443== indirectly lost: 0 bytes in 0 blocks ==443== possibly lost: 768 bytes in 3 blocks ==443== still reachable: 2,350,879 bytes in 21,228 blocks ==443== of which reachable via heuristic: ==443== length64 : 400 bytes in 7 blocks ==443== newarray : 1,680 bytes in 25 blocks ==443== suppressed: 41,306 bytes in 569 blocks ==443== Rerun with --leak-check=full to see details of leaked memory ==443== ==443== For counts of detected and suppressed errors, rerun with: -v ==443== 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: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==538== Parent PID: 349 ==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== ==538== HEAP SUMMARY: ==538== in use at exit: 2,396,321 bytes in 21,828 blocks ==538== total heap usage: 158,518 allocs, 136,690 frees, 30,748,029 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: 2,350,879 bytes in 21,228 blocks ==538== of which reachable via heuristic: ==538== length64 : 400 bytes in 7 blocks ==538== newarray : 1,680 bytes in 25 blocks ==538== suppressed: 41,306 bytes in 569 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) ==576== Memcheck, a memory error detector ==576== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==576== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==576== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==576== Parent PID: 349 ==576== --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --576-- Ignoring non-Dwarf2/3/4 block in .debug_info --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --576-- Last block truncated in .debug_info; ignoring --576-- WARNING: Serious error when reading debug info --576-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --576-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==576== ==576== HEAP SUMMARY: ==576== in use at exit: 2,396,321 bytes in 21,828 blocks ==576== total heap usage: 156,819 allocs, 134,991 frees, 30,533,588 bytes allocated ==576== ==576== LEAK SUMMARY: ==576== definitely lost: 0 bytes in 0 blocks ==576== indirectly lost: 0 bytes in 0 blocks ==576== possibly lost: 768 bytes in 3 blocks ==576== still reachable: 2,350,879 bytes in 21,228 blocks ==576== of which reachable via heuristic: ==576== length64 : 400 bytes in 7 blocks ==576== newarray : 1,680 bytes in 25 blocks ==576== suppressed: 41,306 bytes in 569 blocks ==576== Rerun with --leak-check=full to see details of leaked memory ==576== ==576== For counts of detected and suppressed errors, rerun with: -v ==576== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==640== Memcheck, a memory error detector ==640== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==640== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==640== Command: ./client-test Client::Sync::eds_contact::testItems ==640== Parent PID: 94 ==640== --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --640-- Ignoring non-Dwarf2/3/4 block in .debug_info --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --640-- Last block truncated in .debug_info; ignoring --640-- WARNING: Serious error when reading debug info --640-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --640-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==640== ==640== HEAP SUMMARY: ==640== in use at exit: 2,816,309 bytes in 26,789 blocks ==640== total heap usage: 1,438,611 allocs, 1,411,763 frees, 190,528,128 bytes allocated ==640== ==640== LEAK SUMMARY: ==640== definitely lost: 0 bytes in 0 blocks ==640== indirectly lost: 0 bytes in 0 blocks ==640== possibly lost: 1,440 bytes in 5 blocks ==640== still reachable: 2,412,626 bytes in 21,436 blocks ==640== of which reachable via heuristic: ==640== length64 : 5,152 bytes in 82 blocks ==640== newarray : 2,032 bytes in 47 blocks ==640== suppressed: 318,179 bytes in 4,733 blocks ==640== Rerun with --leak-check=full to see details of leaked memory ==640== ==640== For counts of detected and suppressed errors, rerun with: -v ==640== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==666== Memcheck, a memory error detector ==666== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==666== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==666== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==666== Parent PID: 640 ==666== --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --666-- Ignoring non-Dwarf2/3/4 block in .debug_info --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --666-- Last block truncated in .debug_info; ignoring --666-- WARNING: Serious error when reading debug info --666-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --666-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==666== ==666== HEAP SUMMARY: ==666== in use at exit: 2,396,321 bytes in 21,828 blocks ==666== total heap usage: 361,163 allocs, 339,335 frees, 51,604,365 bytes allocated ==666== ==666== LEAK SUMMARY: ==666== definitely lost: 0 bytes in 0 blocks ==666== indirectly lost: 0 bytes in 0 blocks ==666== possibly lost: 768 bytes in 3 blocks ==666== still reachable: 2,350,879 bytes in 21,228 blocks ==666== of which reachable via heuristic: ==666== length64 : 400 bytes in 7 blocks ==666== newarray : 1,680 bytes in 25 blocks ==666== suppressed: 41,306 bytes in 569 blocks ==666== Rerun with --leak-check=full to see details of leaked memory ==666== ==666== For counts of detected and suppressed errors, rerun with: -v ==666== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==709== Memcheck, a memory error detector ==709== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==709== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==709== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==709== Parent PID: 640 ==709== --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --709-- Ignoring non-Dwarf2/3/4 block in .debug_info --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --709-- Last block truncated in .debug_info; ignoring --709-- WARNING: Serious error when reading debug info --709-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --709-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==709== ==709== HEAP SUMMARY: ==709== in use at exit: 2,396,321 bytes in 21,828 blocks ==709== total heap usage: 177,359 allocs, 155,531 frees, 32,858,494 bytes allocated ==709== ==709== LEAK SUMMARY: ==709== definitely lost: 0 bytes in 0 blocks ==709== indirectly lost: 0 bytes in 0 blocks ==709== possibly lost: 768 bytes in 3 blocks ==709== still reachable: 2,350,879 bytes in 21,228 blocks ==709== of which reachable via heuristic: ==709== length64 : 400 bytes in 7 blocks ==709== newarray : 1,680 bytes in 25 blocks ==709== suppressed: 41,306 bytes in 569 blocks ==709== Rerun with --leak-check=full to see details of leaked memory ==709== ==709== For counts of detected and suppressed errors, rerun with: -v ==709== 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: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==769== Parent PID: 640 ==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== ==769== HEAP SUMMARY: ==769== in use at exit: 2,396,321 bytes in 21,828 blocks ==769== total heap usage: 336,007 allocs, 314,179 frees, 49,395,260 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: 768 bytes in 3 blocks ==769== still reachable: 2,350,879 bytes in 21,228 blocks ==769== of which reachable via heuristic: ==769== length64 : 400 bytes in 7 blocks ==769== newarray : 1,680 bytes in 25 blocks ==769== suppressed: 41,306 bytes in 569 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) ==798== Memcheck, a memory error detector ==798== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==798== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==798== Command: /data/runtests/work/downstream-xenial-amd64/build/src/.libs/lt-syncevo-local-sync ==798== Parent PID: 640 ==798== --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --798-- Ignoring non-Dwarf2/3/4 block in .debug_info --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --798-- Last block truncated in .debug_info; ignoring --798-- WARNING: Serious error when reading debug info --798-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --798-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==798== ==798== HEAP SUMMARY: ==798== in use at exit: 2,396,361 bytes in 21,829 blocks ==798== total heap usage: 356,593 allocs, 334,764 frees, 50,961,641 bytes allocated ==798== ==798== LEAK SUMMARY: ==798== definitely lost: 0 bytes in 0 blocks ==798== indirectly lost: 0 bytes in 0 blocks ==798== possibly lost: 768 bytes in 3 blocks ==798== still reachable: 2,350,879 bytes in 21,228 blocks ==798== of which reachable via heuristic: ==798== length64 : 440 bytes in 8 blocks ==798== newarray : 1,680 bytes in 25 blocks ==798== suppressed: 41,346 bytes in 570 blocks ==798== Rerun with --leak-check=full to see details of leaked memory ==798== ==798== For counts of detected and suppressed errors, rerun with: -v ==798== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==94== Memcheck, a memory error detector ==94== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==94== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==94== Command: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ==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: 298,983 bytes in 1,671 blocks ==94== total heap usage: 75,909 allocs, 74,183 frees, 12,246,873 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: 768 bytes in 3 blocks ==94== still reachable: 216,252 bytes in 571 blocks ==94== of which reachable via heuristic: ==94== length64 : 1,072 bytes in 19 blocks ==94== newarray : 1,728 bytes in 28 blocks ==94== suppressed: 70,603 bytes in 1,015 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) valgrindcheck: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-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=1121 wrappercheck-85 line 115: set +e 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: '[' 1121 ']' wwrappercheck-85 line 122: LC_ALL=C wwrappercheck-85 line 122: kill -KILL 1121 wrappercheck-85 line 122: msg= wrappercheck-85 line 123: grep -q 'No such process' wrappercheck-85 line 123: echo '' wrappercheck-85 line 127: echo '' wrappercheck-85 line 129: wait 1121 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 129: 1121 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" 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=1126 wrappercheck-65 line 115: set +e wrappercheck-65 line 109: perl -e 'sleep(60); kill(9, -67);' 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: '[' 1126 ']' wwrappercheck-65 line 122: LC_ALL=C wwrappercheck-65 line 122: kill -KILL 1126 wrappercheck-65 line 122: msg= wrappercheck-65 line 123: grep -q 'No such process' wrappercheck-65 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1126 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-65 line 127: echo '' wrappercheck-65 line 129: wait 1126 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 -45 wrappercheck-41 line 108: kill -TERM -45 wrappercheck-41 line 108: kill -TERM 45 wrappercheck-41 line 110: KILL_PID=1131 wrappercheck-41 line 115: set +e wrappercheck-41 line 116: wait 45 wrappercheck-41 line 109: perl -e 'sleep(60); kill(9, -45);' 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: '[' 1131 ']' wwrappercheck-41 line 122: LC_ALL=C wwrappercheck-41 line 122: kill -KILL 1131 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: 1131 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-41 line 127: echo '' wrappercheck-41 line 129: wait 1131 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=1136 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: '[' 1136 ']' wwrappercheck-36 line 122: LC_ALL=C wwrappercheck-36 line 122: kill -KILL 1136 wrappercheck-36 line 122: msg= wrappercheck-36 line 123: echo '' wrappercheck-36 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1136 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-36 line 127: echo '' wrappercheck-36 line 129: wait 1136 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 -23 wrappercheck-18 line 108: kill -TERM -23 wrappercheck-18 line 108: kill -TERM 23 wrappercheck-18 line 110: KILL_PID=1141 wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 23 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 1141 ']' wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -23);' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 1141 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: 1141 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 1141 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.f3YyYOCs8l Fri Jan 5 17:19:13 2018 UTC (+ 365.1s / 2809.6s) === cleaning up ===