runtests.py-25897 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/edseds/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/downstream-xenial-amd64/home/edseds/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-25897 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1095.9s) target /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/.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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/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/edseds/.cache new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/cache old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/.config new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/config old /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/.local/share new /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/home/edseds/data runtests.py-25897 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1095.9s) === starting edseds === runtests.py-25897 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1095.9s) 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/24-edseds, /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/24-edseds runtests.py-25897 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1095.9s) changing into directory /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/edseds (= /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/edseds) runtests.py-25897 Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 1095.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/edseds; 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/edseds' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edseds -- env CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/lib/syncevolution/backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/locale schroot -d /data/runtests/work/downstream-xenial-amd64/tests/edseds -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 edseds ./syncevolution ) Fri Jan 5 15:47:06 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edseds'] === Fri Jan 5 16:13:33 2018 UTC (+ 1587.0s / 1587.0s) property changed: status = acquired Fri Jan 5 16:13:33 2018 UTC (+ 0.0s / 1587.0s) using jobserver Fri Jan 5 16:13:33 2018 UTC (+ 0.0s / 1587.0s) === allocating 1 job slot(s) === Fri Jan 5 16:13:34 2018 UTC (+ 1.7s / 1588.6s) === 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 edseds ./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 ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used 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 wrappercheck-15 line 75: '[' signond.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' com.google.code.AccountsSSO.SingleSignOn ']' wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec 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.60Ejww40uE/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 edseds ./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 70: set -x wrappercheck-33 line 70: exec 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 edseds ./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-37 line 56: '[' 19 -gt 1 ']' wrappercheck-37 line 56: '[' -- '!=' -- ']' 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 73: PIDS+=40 wrappercheck-37 line 70: set -x wrappercheck-37 line 75: '[' evolution-source-registry.log ']' wrappercheck-37 line 70: exec 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 edseds ./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 70: set -x wrappercheck-62 line 70: exec 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 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 edseds ./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 edseds ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/downstream-xenial-amd64/home/edseds/.sync4j/evolution/edseds_[12]' '/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/edseds_[12]' '/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-[12]/peers/edseds_[12]' '/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=edseds_1@client-test-edseds-1 ++ credentials edseds_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_1 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edseds --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_1 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edseds_1@client-test-edseds-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/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources addressbook eds_contact + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/addressbook /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_contact + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources calendar eds_event + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/calendar /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_event + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources todo eds_task + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/todo /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_task + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources memo eds_memo + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/memo /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 edseds_1@client-test-edseds-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 edseds_1@client-test-edseds-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 edseds_1@client-test-edseds-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 edseds_1@client-test-edseds-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=edseds_2@client-test-edseds-2 ++ credentials edseds_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_2 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edseds --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_2 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edseds_2@client-test-edseds-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' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/9, but it's already registered + sources=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources addressbook eds_contact + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/addressbook ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/addressbook /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_contact + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources calendar eds_event + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/calendar ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/calendar /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_event + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources todo eds_task + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/todo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/todo /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_task + copy_source /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources memo eds_memo + path=/data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/memo ']' + for i in '$@' + cp -r /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/memo /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 edseds_2@client-test-edseds-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 edseds_2@client-test-edseds-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 edseds_2@client-test-edseds-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 edseds_2@client-test-edseds-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + context=client-test-edsserver + rm -rf /data/runtests/work/downstream-xenial-amd64/home/edseds/config/syncevolution/client-test-edsserver + ./syncevolution --configure --daemon=no addressbook/database= addressbook/backend=evolution-contacts calendar/database= calendar/backend=evolution-calendar @client-test-edsserver addressbook calendar [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore [INFO] calendar: checking usability... [INFO] calendar: configuring datastore + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/downstream-xenial-amd64/tests/edseds/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edseds_1 client-edseds-1@client-test-edsserver addressbook calendar [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' + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/downstream-xenial-amd64/tests/edseds/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edseds_2 client-edseds-2@client-test-edsserver addressbook calendar [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' + 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 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ sed -e 's/.*=//' ++ echo evolution-tasks=eds_task + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-memos=eds_memo + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + 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=917 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: '[' 917 ']' wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 917 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: 917 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 917 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=922 wrappercheck-62 line 115: set +e wrappercheck-62 line 116: wait 64 wrappercheck-62 line 109: perl -e 'sleep(60); kill(9, -64);' wrappercheck-62 line 117: SUBRET=143 wrappercheck-62 line 118: case $SUBRET in wrappercheck-62 line 118: SUBRET=0 wrappercheck-62 line 120: SUBRET=0 wrappercheck-62 line 121: '[' 922 ']' wwrappercheck-62 line 122: LC_ALL=C wwrappercheck-62 line 122: kill -KILL 922 wrappercheck-62 line 122: msg= wrappercheck-62 line 123: echo '' wrappercheck-62 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 922 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-62 line 127: echo '' wrappercheck-62 line 129: wait 922 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=927 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: '[' 927 ']' wrappercheck-37 line 109: perl -e 'sleep(60); kill(9, -40);' wwrappercheck-37 line 122: LC_ALL=C wwrappercheck-37 line 122: kill -KILL 927 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: 927 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-37 line 127: echo '' wrappercheck-37 line 129: wait 927 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=932 wrappercheck-33 line 115: set +e wrappercheck-33 line 116: wait 35 wrappercheck-33 line 117: SUBRET=143 wrappercheck-33 line 118: case $SUBRET in wrappercheck-33 line 118: SUBRET=0 wrappercheck-33 line 120: SUBRET=0 wrappercheck-33 line 121: '[' 932 ']' wwrappercheck-33 line 122: LC_ALL=C wwrappercheck-33 line 122: kill -KILL 932 wrappercheck-33 line 122: msg= wrappercheck-33 line 123: echo '' wrappercheck-33 line 123: grep -q 'No such process' wrappercheck-33 line 127: echo '' wrappercheck-33 line 129: wait 932 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 129: 932 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" 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=937 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: '[' 937 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 937 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: grep -q 'No such process' wrappercheck-15 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 937 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 937 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.60Ejww40uE Fri Jan 5 16:13:45 2018 UTC (+ 10.7s / 1599.4s) === cleaning up === runtests.py-25897 Fri Jan 5 16:13:45 2018 UTC (+ 1599.4s / 2695.3s) *** ( cd /data/schroot/2018-01-05-07-10-all-downstream-xenial-amd64/data/runtests/work/downstream-xenial-amd64/tests/edseds; 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/edseds' 'XDG_CONFIG_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/config' 'XDG_DATA_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/data' 'XDG_CACHE_HOME=/data/runtests/work/downstream-xenial-amd64/home/edseds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edseds -- 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=edseds CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/lib/syncevolution/backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/downstream-xenial-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/downstream-xenial-amd64/tests/edseds -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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 16:13:45 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edseds'] === Fri Jan 5 16:26:41 2018 UTC (+ 775.9s / 775.9s) property changed: status = acquired Fri Jan 5 16:26:41 2018 UTC (+ 0.0s / 775.9s) using jobserver Fri Jan 5 16:26:41 2018 UTC (+ 0.0s / 775.9s) === allocating 1 job slot(s) === Fri Jan 5 16:26:50 2018 UTC (+ 9.4s / 785.3s) === 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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.E6SQDxiBLc/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: '[' 66 -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: '[' 64 -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: '[' 62 -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: '[' 61 -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: '[' 60 -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: '[' 59 -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: '[' 58 -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: '[' 57 -gt 1 ']' wrappercheck-18 line 28: '[' signond '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 57 -gt 1 ']' wrappercheck-18 line 56: '[' signond '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=signond wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 56 -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 70: exec wrappercheck-18 line 75: '[' signond.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' com.google.code.AccountsSSO.SingleSignOn ']' wrappercheck-18 line 85: set +x *** waiting for daemon to connect to D-Bus as 'com.google.code.AccountsSSO.SingleSignOn' wrappercheck-18 line 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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: '[' 54 -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: '[' 52 -gt 1 ']' wrappercheck-36 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-36 line 29: case "$1" in wrappercheck-36 line 50: break wrappercheck-36 line 56: '[' 52 -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: '[' 51 -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: '[' 50 -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 70: exec wrappercheck-36 line 75: '[' dbus-monitor.log ']' 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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: '[' 48 -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: '[' 46 -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: '[' 44 -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: '[' 42 -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: '[' 42 -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: '[' 41 -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 75: '[' evolution-source-registry.log ']' wrappercheck-41 line 70: exec 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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: '[' 39 -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: '[' 37 -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: '[' 35 -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: '[' 35 -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: '[' 34 -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: '[' 33 -gt 1 ']' wrappercheck-65 line 56: '[' -- '!=' -- ']' wrappercheck-65 line 60: shift wrappercheck-65 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-65 line 62: '[' '' ']' wrappercheck-65 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-65 line 72: BACKGROUND_PID=67 wrappercheck-65 line 73: PIDS+=67 wrappercheck-65 line 70: set -x 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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: '[' 31 -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: '[' 29 -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: '[' 29 -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: '[' 28 -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: '[' 27 -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 75: '[' '' ']' wrappercheck-85 line 70: exec 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-90 line 16: PIDS= wrappercheck-90 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-90 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-90 line 21: DAEMON_LOG= wrappercheck-90 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-90 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-90 line 25: declare -a BACKGROUND wrappercheck-90 line 26: declare -a ENV wrappercheck-90 line 28: '[' 22 -gt 1 ']' wrappercheck-90 line 28: '[' VALGRIND_CMD_LOG=syncevohttp.log '!=' -- ']' wrappercheck-90 line 29: case "$1" in wrappercheck-90 line 47: ENV[${#ENV[*]}]=VALGRIND_CMD_LOG=syncevohttp.log wrappercheck-90 line 53: shift wrappercheck-90 line 28: '[' 21 -gt 1 ']' wrappercheck-90 line 28: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-90 line 29: case "$1" in wrappercheck-90 line 50: break wrappercheck-90 line 56: '[' 21 -gt 1 ']' wrappercheck-90 line 56: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 20 -gt 1 ']' wrappercheck-90 line 56: '[' /data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/downstream-xenial-amd64/install/usr/libexec/syncevo-dbus-server wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 19 -gt 1 ']' wrappercheck-90 line 56: '[' --verbosity=3 '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--verbosity=3 wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 18 -gt 1 ']' wrappercheck-90 line 56: '[' --dbus-verbosity=1 '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--dbus-verbosity=1 wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 17 -gt 1 ']' wrappercheck-90 line 56: '[' --stdout '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--stdout wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 16 -gt 1 ']' wrappercheck-90 line 56: '[' --no-syslog '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--no-syslog wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 15 -gt 1 ']' wrappercheck-90 line 56: '[' --duration=unlimited '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--duration=unlimited wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 14 -gt 1 ']' wrappercheck-90 line 56: '[' -- '!=' -- ']' wrappercheck-90 line 60: shift wrappercheck-90 line 62: '[' '' ']' wrappercheck-90 line 66: set +x *** starting /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh as background daemon, output to stderr wrappercheck-90 line 72: BACKGROUND_PID=94 wrappercheck-90 line 73: PIDS+=94 wrappercheck-90 line 75: '[' '' ']' wrappercheck-90 line 70: set -x wrappercheck-90 line 70: exec wrappercheck-90 line 84: '[' '' ']' wrappercheck-90 line 93: kill -0 94 wrappercheck-90 line 94: set +e wrappercheck-90 line 95: '[' '' ']' wrappercheck-90 line 99: set -x wrappercheck-90 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-97 line 16: PIDS= wrappercheck-97 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-97 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-97 line 21: DAEMON_LOG= wrappercheck-97 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-97 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-97 line 25: declare -a BACKGROUND wrappercheck-97 line 26: declare -a ENV wrappercheck-97 line 28: '[' 12 -gt 1 ']' wrappercheck-97 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 31: shift wrappercheck-97 line 32: DAEMON_LOG=syncevohttp.log wrappercheck-97 line 53: shift wrappercheck-97 line 28: '[' 10 -gt 1 ']' wrappercheck-97 line 28: '[' --wait-for-daemon-output '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 39: shift wrappercheck-97 line 40: WAIT_FOR_DAEMON_OUTPUT=syncevo-http:.listening.on.port.9901 wrappercheck-97 line 53: shift wrappercheck-97 line 28: '[' 8 -gt 1 ']' wrappercheck-97 line 28: '[' /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 50: break wrappercheck-97 line 56: '[' 8 -gt 1 ']' wrappercheck-97 line 56: '[' /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 7 -gt 1 ']' wrappercheck-97 line 56: '[' --debug '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=--debug wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 6 -gt 1 ']' wrappercheck-97 line 56: '[' http://127.0.0.1:9901/syncevolution '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=http://127.0.0.1:9901/syncevolution wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 5 -gt 1 ']' wrappercheck-97 line 56: '[' -- '!=' -- ']' wrappercheck-97 line 60: shift wrappercheck-97 line 62: '[' syncevohttp.log ']' wrappercheck-97 line 62: '[' syncevo-http:.listening.on.port.9901 ']' wwrappercheck-97 line 63: wc -l wwrappercheck-97 line 63: grep -e syncevo-http:.listening.on.port.9901 syncevohttp.log grep: syncevohttp.log: No such file or directory wrappercheck-97 line 63: daemonmatches=0 wrappercheck-97 line 66: set +x *** starting /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server as background daemon, output to syncevohttp.log wrappercheck-97 line 72: BACKGROUND_PID=109 wrappercheck-97 line 73: PIDS+=109 wrappercheck-97 line 75: '[' syncevohttp.log ']' wrappercheck-97 line 70: set -x wrappercheck-97 line 75: '[' syncevo-http:.listening.on.port.9901 ']' wrappercheck-97 line 70: exec wrappercheck-97 line 76: set +x *** waiting for daemon to write 'syncevo-http:.listening.on.port.9901' into syncevohttp.log wrappercheck-97 line 84: '[' '' ']' wrappercheck-97 line 93: kill -0 109 wrappercheck-97 line 94: set +e wrappercheck-97 line 95: '[' '' ']' wrappercheck-97 line 99: set -x wrappercheck-97 line 99: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::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/edseds/valgrind.p132.c%p.out ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems Client::Sync::eds_event::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (132): './client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems' (136): returned 0 ==136== Memcheck, a memory error detector ==136== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==136== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==136== Command: ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems ==136== Parent PID: 132 ==136== --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --136-- Ignoring non-Dwarf2/3/4 block in .debug_info --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --136-- Last block truncated in .debug_info; ignoring --136-- WARNING: Serious error when reading debug info --136-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --136-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==136== ==136== HEAP SUMMARY: ==136== in use at exit: 209,698 bytes in 503 blocks ==136== total heap usage: 42,529 allocs, 42,026 frees, 8,302,678 bytes allocated ==136== ==136== LEAK SUMMARY: ==136== definitely lost: 0 bytes in 0 blocks ==136== indirectly lost: 0 bytes in 0 blocks ==136== possibly lost: 96 bytes in 1 blocks ==136== still reachable: 198,636 bytes in 315 blocks ==136== of which reachable via heuristic: ==136== newarray : 1,536 bytes in 16 blocks ==136== suppressed: 10,966 bytes in 187 blocks ==136== Rerun with --leak-check=full to see details of leaked memory ==136== ==136== For counts of detected and suppressed errors, rerun with: -v ==136== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==139== Memcheck, a memory error detector ==139== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==139== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==139== Command: ./client-test Client::Sync::eds_event::testItems ==139== Parent PID: 136 ==139== --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --139-- Ignoring non-Dwarf2/3/4 block in .debug_info --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --139-- Last block truncated in .debug_info; ignoring --139-- WARNING: Serious error when reading debug info --139-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --139-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==139== ==139== HEAP SUMMARY: ==139== in use at exit: 7,758,591 bytes in 58,526 blocks ==139== total heap usage: 1,839,213 allocs, 1,780,632 frees, 257,232,895 bytes allocated ==139== ==139== LEAK SUMMARY: ==139== definitely lost: 0 bytes in 0 blocks ==139== indirectly lost: 0 bytes in 0 blocks ==139== possibly lost: 1,440 bytes in 5 blocks ==139== still reachable: 7,246,776 bytes in 52,488 blocks ==139== of which reachable via heuristic: ==139== length64 : 5,720 bytes in 95 blocks ==139== newarray : 2,112 bytes in 52 blocks ==139== suppressed: 428,495 bytes in 5,407 blocks ==139== Rerun with --leak-check=full to see details of leaked memory ==139== ==139== For counts of detected and suppressed errors, rerun with: -v ==139== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==334== Memcheck, a memory error detector ==334== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al. ==334== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info ==334== Command: ./client-test Client::Sync::eds_contact::testItems ==334== Parent PID: 136 ==334== --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libecal-1.2.so.19.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.21.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libcamel-1.2.so.54.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-1.2.so.16.3.1: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.2.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.25.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamellocal.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelimapx.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelnntp.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --334-- Ignoring non-Dwarf2/3/4 block in .debug_info --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --334-- Last block truncated in .debug_info; ignoring --334-- WARNING: Serious error when reading debug info --334-- When reading debug info from /usr/lib/evolution-data-server/camel-providers/libcamelpop3.so: --334-- parse_CU_Header: is neither DWARF2 nor DWARF3 nor DWARF4 ==334== ==334== HEAP SUMMARY: ==334== in use at exit: 7,811,328 bytes in 58,813 blocks ==334== total heap usage: 1,780,137 allocs, 1,721,269 frees, 252,708,418 bytes allocated ==334== ==334== LEAK SUMMARY: ==334== definitely lost: 0 bytes in 0 blocks ==334== indirectly lost: 0 bytes in 0 blocks ==334== possibly lost: 1,440 bytes in 5 blocks ==334== still reachable: 7,316,469 bytes in 52,424 blocks ==334== of which reachable via heuristic: ==334== length64 : 5,696 bytes in 95 blocks ==334== newarray : 2,096 bytes in 51 blocks ==334== suppressed: 391,691 bytes in 5,633 blocks ==334== Rerun with --leak-check=full to see details of leaked memory ==334== ==334== For counts of detected and suppressed errors, rerun with: -v ==334== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) valgrindcheck: ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-97 line 100: RET=0 wrappercheck-97 line 101: set -e wrappercheck-97 line 107: set +x *** killing and waiting for /data/runtests/work/downstream-xenial-amd64/install/usr/bin/syncevo-http-server wrappercheck-97 line 108: kill -INT -109 wrappercheck-97 line 108: kill -TERM -109 wrappercheck-97 line 108: kill -TERM 109 wrappercheck-97 line 110: KILL_PID=579 wrappercheck-97 line 115: set +e wrappercheck-97 line 116: wait 109 wrappercheck-97 line 109: perl -e 'sleep(60); kill(9, -109);' wrappercheck-97 line 117: SUBRET=143 wrappercheck-97 line 118: case $SUBRET in wrappercheck-97 line 118: SUBRET=0 wrappercheck-97 line 120: SUBRET=0 wrappercheck-97 line 121: '[' 579 ']' wwrappercheck-97 line 122: LC_ALL=C wwrappercheck-97 line 122: kill -KILL 579 wrappercheck-97 line 122: msg= wrappercheck-97 line 123: echo '' wrappercheck-97 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 579 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-97 line 127: echo '' wrappercheck-97 line 129: wait 579 wrappercheck-97 line 131: set -e wrappercheck-97 line 132: '[' 0 = 0 ']' wrappercheck-97 line 133: RET=0 wrappercheck-97 line 136: exit 0 wrappercheck-90 line 100: RET=0 wrappercheck-90 line 101: set -e wrappercheck-90 line 107: set +x *** killing and waiting for /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-90 line 108: kill -INT -94 wrappercheck-90 line 108: kill -TERM -94 wrappercheck-90 line 108: kill -TERM 94 wrappercheck-90 line 110: KILL_PID=585 wrappercheck-90 line 109: perl -e 'sleep(60); kill(9, -94);' wrappercheck-90 line 115: set +e wrappercheck-90 line 116: wait 94 wrappercheck-90 line 117: SUBRET=143 wrappercheck-90 line 118: case $SUBRET in wrappercheck-90 line 118: SUBRET=0 wrappercheck-90 line 120: SUBRET=0 wrappercheck-90 line 121: '[' 585 ']' wwrappercheck-90 line 122: LC_ALL=C wwrappercheck-90 line 122: kill -KILL 585 wrappercheck-90 line 122: msg= wrappercheck-90 line 123: echo '' wrappercheck-90 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 585 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-90 line 127: echo '' wrappercheck-90 line 129: wait 585 wrappercheck-90 line 131: set -e wrappercheck-90 line 132: '[' 0 = 0 ']' wrappercheck-90 line 133: RET=0 wrappercheck-90 line 136: exit 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=590 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: '[' 590 ']' wwrappercheck-85 line 122: LC_ALL=C wwrappercheck-85 line 122: kill -KILL 590 wrappercheck-85 line 122: msg= wrappercheck-85 line 123: echo '' wrappercheck-85 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 590 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-85 line 127: echo '' wrappercheck-85 line 129: wait 590 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=595 wrappercheck-65 line 115: set +e wrappercheck-65 line 116: wait 67 wrappercheck-65 line 117: SUBRET=143 wrappercheck-65 line 118: case $SUBRET in wrappercheck-65 line 118: SUBRET=0 wrappercheck-65 line 120: SUBRET=0 wrappercheck-65 line 121: '[' 595 ']' wwrappercheck-65 line 122: LC_ALL=C wwrappercheck-65 line 122: kill -KILL 595 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: 595 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-65 line 127: echo '' wrappercheck-65 line 129: wait 595 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=600 wrappercheck-41 line 115: set +e wrappercheck-41 line 109: perl -e 'sleep(60); kill(9, -45);' wrappercheck-41 line 116: wait 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: '[' 600 ']' wwrappercheck-41 line 122: LC_ALL=C wwrappercheck-41 line 122: kill -KILL 600 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: 600 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-41 line 127: echo '' wrappercheck-41 line 129: wait 600 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=605 wrappercheck-36 line 115: set +e wrappercheck-36 line 109: perl -e 'sleep(60); kill(9, -38);' 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: '[' 605 ']' wwrappercheck-36 line 122: LC_ALL=C wwrappercheck-36 line 122: kill -KILL 605 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: 605 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-36 line 127: echo '' wrappercheck-36 line 129: wait 605 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=610 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 109: perl -e 'sleep(60); kill(9, -23);' wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 610 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 610 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: 610 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 610 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.E6SQDxiBLc Fri Jan 5 16:30:11 2018 UTC (+ 200.6s / 985.9s) === cleaning up ===