runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 3.6s / 111.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 0.2s / 112.1s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/prebuilt-testing-amd64/home/exchange/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/exchange/data runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.1s) === starting exchange === runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.1s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/21-exchange, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/21-exchange runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.1s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/exchange (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/exchange) runtests.py-2283 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.1s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/exchange; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r exchange -- env CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_MODE=server EAS_SOUP_LOGGER=1 EAS_DEBUG=5 EAS_DEBUG_DETACHED_RECURRENCES=1 CLIENT_TEST_FAILURES=.*::LinkedItemsWeekly::testSubsetStart11Skip[0-3],.*::LinkedItemsWeekly::testSubsetStart22Skip[1-3],.*::LinkedItemsWeekly::testSubsetStart33Skip[1-3],.*::LinkedItemsWeekly::testSubsetStart44.*,.*::testExtensions CLIENT_TEST_SKIP=Client::Sync::.*::testOneWayFromClient,Client::Sync::.*::testOneWayFromLocal, CLIENT_TEST_LOG=activesyncd.log schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/exchange -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution ) Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['exchange'] === Fri Jan 5 15:57:28 2018 UTC (+ 1581.5s / 1581.5s) property changed: status = acquired Fri Jan 5 15:57:28 2018 UTC (+ 0.0s / 1581.5s) using jobserver Fri Jan 5 15:57:28 2018 UTC (+ 0.0s / 1581.5s) === allocating 1 job slot(s) === Fri Jan 5 16:00:08 2018 UTC (+ 159.7s / 1741.2s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./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: '[' 35 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 33 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 33 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 32 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 31 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' ** Message: couldn't access control socket: /tmp/tmp.mavKf4mPTa/keyring/control: No such file or directory wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 29 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 27 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 43: shift wrappercheck-21 line 44: DAEMON_SLEEP=5 wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 25 -gt 1 ']' wrappercheck-21 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 35: shift wrappercheck-21 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 23 -gt 1 ']' wrappercheck-21 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 23 -gt 1 ']' wrappercheck-21 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 22 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' evolution-source-registry.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-21 line 72: BACKGROUND_PID=26 wrappercheck-21 line 73: PIDS+=26 wrappercheck-21 line 70: set -x wrappercheck-21 line 70: exec wrappercheck-21 line 75: '[' evolution-source-registry.log ']' wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-21 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-21 line 93: kill -0 26 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' 5 ']' wrappercheck-21 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-21 line 97: sleep 5 wrappercheck-21 line 99: set -x wrappercheck-21 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 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-77 line 16: PIDS= wrappercheck-77 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-77 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-77 line 21: DAEMON_LOG= wrappercheck-77 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-77 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-77 line 25: declare -a BACKGROUND wrappercheck-77 line 26: declare -a ENV wrappercheck-77 line 28: '[' 20 -gt 1 ']' wrappercheck-77 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-77 line 29: case "$1" in wrappercheck-77 line 31: shift wrappercheck-77 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-77 line 53: shift wrappercheck-77 line 28: '[' 18 -gt 1 ']' wrappercheck-77 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-77 line 29: case "$1" in wrappercheck-77 line 35: shift wrappercheck-77 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-77 line 53: shift wrappercheck-77 line 28: '[' 16 -gt 1 ']' wrappercheck-77 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-77 line 29: case "$1" in wrappercheck-77 line 50: break wrappercheck-77 line 56: '[' 16 -gt 1 ']' wrappercheck-77 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-77 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-77 line 58: shift wrappercheck-77 line 56: '[' 15 -gt 1 ']' wrappercheck-77 line 56: '[' --keep-running '!=' -- ']' wrappercheck-77 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-77 line 58: shift wrappercheck-77 line 56: '[' 14 -gt 1 ']' wrappercheck-77 line 56: '[' -- '!=' -- ']' wrappercheck-77 line 60: shift wrappercheck-77 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-77 line 62: '[' '' ']' wrappercheck-77 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-77 line 72: BACKGROUND_PID=79 wrappercheck-77 line 73: PIDS+=79 wrappercheck-77 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-77 line 70: set -x wrappercheck-77 line 75: '[' '' ']' wrappercheck-77 line 70: exec wrappercheck-77 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-77 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-77 line 93: kill -0 79 wrappercheck-77 line 94: set +e wrappercheck-77 line 95: '[' '' ']' wrappercheck-77 line 99: set -x wrappercheck-77 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 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution + 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=evolution-calendar-factory.log wrappercheck-97 line 53: shift wrappercheck-97 line 28: '[' 10 -gt 1 ']' wrappercheck-97 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 50: break wrappercheck-97 line 56: '[' 10 -gt 1 ']' wrappercheck-97 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 9 -gt 1 ']' wrappercheck-97 line 56: '[' --keep-running '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 8 -gt 1 ']' wrappercheck-97 line 56: '[' -- '!=' -- ']' wrappercheck-97 line 60: shift wrappercheck-97 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-97 line 62: '[' '' ']' wrappercheck-97 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-97 line 72: BACKGROUND_PID=99 wrappercheck-97 line 73: PIDS+=99 wrappercheck-97 line 70: set -x wrappercheck-97 line 70: exec wrappercheck-97 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-97 line 75: '[' '' ']' wrappercheck-97 line 84: '[' '' ']' wrappercheck-97 line 93: kill -0 99 wrappercheck-97 line 94: set +e wrappercheck-97 line 95: '[' '' ']' wrappercheck-97 line 99: set -x wrappercheck-97 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 5 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 5 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 4 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-102 line 72: BACKGROUND_PID=106 wrappercheck-102 line 73: PIDS+=106 wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 106 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: /home/nightly/testing/setup-syncevolution.sh exchange ./syncevolution wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec + case $TEST in + rm -rf '/data/runtests/work/prebuilt-testing-amd64/home/exchange/.sync4j/evolution/exchange_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/exchange_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-[12]/peers/exchange_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=exchange_1@client-test-exchange-1 ++ credentials exchange_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client --sync-property username=nightly@ouvku.hostedoffice.ag syncURL=local://@client-test-exchange calendar/uri=eas_event addressbook/uri=eas_contact database=' + ./syncevolution --daemon=no --configure --template exchange --template SyncEvolution_Client --sync-property username=nightly@ouvku.hostedoffice.ag syncURL=local://@client-test-exchange calendar/uri=eas_event addressbook/uri=eas_contact database= --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 exchange_1@client-test-exchange-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/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/addressbook /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/calendar /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/todo /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/memo /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-1/peers/exchange_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 exchange_1@client-test-exchange-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 exchange_1@client-test-exchange-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 exchange_1@client-test-exchange-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 exchange_1@client-test-exchange-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no database= eas_contact/backend=eas-contacts eas_event/backend=eas-events exchange_1@client-test-exchange-1 eas_event eas_contact + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=exchange_2@client-test-exchange-2 ++ credentials exchange_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client --sync-property username=nightly@ouvku.hostedoffice.ag_B syncURL=local://@client-test-exchange calendar/uri=eas_event addressbook/uri=eas_contact database=' + ./syncevolution --daemon=no --configure --template exchange --template SyncEvolution_Client --sync-property username=nightly@ouvku.hostedoffice.ag_B syncURL=local://@client-test-exchange calendar/uri=eas_event addressbook/uri=eas_contact database= --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 exchange_2@client-test-exchange-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/addressbook /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/calendar /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/todo /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/memo /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange-2/peers/exchange_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 exchange_2@client-test-exchange-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 exchange_2@client-test-exchange-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 exchange_2@client-test-exchange-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 exchange_2@client-test-exchange-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no database= eas_contact/backend=eas-contacts eas_event/backend=eas-events exchange_2@client-test-exchange-2 eas_event eas_contact + case $TEST in + OMA=org.meego.activesyncd + gsettings set org.meego.activesyncd accounts '['\''nightly@ouvku.hostedoffice.ag'\'', '\''nightly@ouvku.hostedoffice.ag_B'\'']' + for i in "" "_B" + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag/ username nightly@ouvku.hostedoffice.ag + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag/ password kdfjfO82ffsYXRE + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag/ serveruri https://activesync.de2.hostedoffice.ag/Microsoft-Server-ActiveSync + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag/ policy-key 0 + for i in "" "_B" + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag_B/ username nightly@ouvku.hostedoffice.ag + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag_B/ password kdfjfO82ffsYXRE + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag_B/ serveruri https://activesync.de2.hostedoffice.ag/Microsoft-Server-ActiveSync + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag_B/ policy-key 0 + gsettings set org.meego.activesyncd device-id aaaaaaa99cb14effac6a8f447AAAAAAA + gsettings set org.meego.activesyncd.account:/org/meego/activesyncd/account/nightly@ouvku.hostedoffice.ag_B/ device-id bbbbbbbb2ba712dc55f91354BBBBBB + rm -rf /data/runtests/work/prebuilt-testing-amd64/home/exchange/config/syncevolution/client-test-exchange + ./syncevolution --configure --daemon=no useProxy=0 loglevel=4 printChanges=0 dumpData=0 username=nightly@ouvku.hostedoffice.ag syncURL= eas_contact/backend=eas-contacts eas_event/backend=eas-events database= target-config@client-test-exchange eas_contact eas_event [INFO] eas_contact: configuring datastore with sync mode 'two-way' [INFO] eas_event: configuring datastore with sync mode 'two-way' + ./syncevolution --daemon=no --print-databases target-config@client-test-exchange eas_contact target-config@client-test-exchange/eas_contact: Kontakte (8) + ./syncevolution --daemon=no --print-databases target-config@client-test-exchange eas_event target-config@client-test-exchange/eas_event: Kalender (7) + 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 ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ sed -e 's/.*=//' ++ echo evolution-calendar=eds_event + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./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 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-memos=eds_memo + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-102 line 108: kill -INT -106 wrappercheck-102 line 108: kill -TERM -106 wrappercheck-102 line 108: kill -TERM 106 wrappercheck-102 line 110: KILL_PID=404 wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 106 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -106);' wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 404 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 404 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: grep -q 'No such process' wrappercheck-102 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 404 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 404 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-97 line 100: RET=0 wrappercheck-97 line 101: set -e wrappercheck-97 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-97 line 108: kill -INT -99 wrappercheck-97 line 108: kill -TERM -99 wrappercheck-97 line 108: kill -TERM 99 wrappercheck-97 line 110: KILL_PID=409 wrappercheck-97 line 109: perl -e 'sleep(60); kill(9, -99);' wrappercheck-97 line 115: set +e wrappercheck-97 line 116: wait 99 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: '[' 409 ']' wwrappercheck-97 line 122: LC_ALL=C wwrappercheck-97 line 122: kill -KILL 409 wrappercheck-97 line 122: msg= wrappercheck-97 line 123: grep -q 'No such process' wrappercheck-97 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 409 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-97 line 127: echo '' wrappercheck-97 line 129: wait 409 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-77 line 100: RET=0 wrappercheck-77 line 101: set -e wrappercheck-77 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-77 line 108: kill -INT -79 wrappercheck-77 line 108: kill -TERM -79 wrappercheck-77 line 108: kill -TERM 79 wrappercheck-77 line 110: KILL_PID=414 wrappercheck-77 line 115: set +e wrappercheck-77 line 116: wait 79 wrappercheck-77 line 109: perl -e 'sleep(60); kill(9, -79);' wrappercheck-77 line 117: SUBRET=143 wrappercheck-77 line 118: case $SUBRET in wrappercheck-77 line 118: SUBRET=0 wrappercheck-77 line 120: SUBRET=0 wrappercheck-77 line 121: '[' 414 ']' wwrappercheck-77 line 122: LC_ALL=C wwrappercheck-77 line 122: kill -KILL 414 wrappercheck-77 line 122: msg= wrappercheck-77 line 123: echo '' wrappercheck-77 line 123: grep -q 'No such process' wrappercheck-77 line 127: echo '' wrappercheck-77 line 129: wait 414 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 129: 414 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-77 line 131: set -e wrappercheck-77 line 132: '[' 0 = 0 ']' wrappercheck-77 line 133: RET=0 wrappercheck-77 line 136: exit 0 wrappercheck-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-21 line 108: kill -INT -26 wrappercheck-21 line 108: kill -TERM -26 wrappercheck-21 line 108: kill -TERM 26 wrappercheck-21 line 110: KILL_PID=419 wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 26 wrappercheck-21 line 109: perl -e 'sleep(60); kill(9, -26);' wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 419 ']' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 419 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: grep -q 'No such process' wrappercheck-21 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 419 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 419 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=424 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: '[' 424 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 424 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: 424 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 424 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.mavKf4mPTa Fri Jan 5 16:00:22 2018 UTC (+ 13.8s / 1755.0s) === cleaning up === runtests.py-2283 Fri Jan 5 16:00:22 2018 UTC (+ 1755.1s / 1867.2s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/exchange; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/exchange/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r exchange -- 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=exchange CLIENT_TEST_SOURCES=eas_event,eas_contact,eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_MODE=server EAS_SOUP_LOGGER=1 EAS_DEBUG=5 EAS_DEBUG_DETACHED_RECURRENCES=1 CLIENT_TEST_FAILURES=.*::LinkedItemsWeekly::testSubsetStart11Skip[0-3],.*::LinkedItemsWeekly::testSubsetStart22Skip[1-3],.*::LinkedItemsWeekly::testSubsetStart33Skip[1-3],.*::LinkedItemsWeekly::testSubsetStart44.*,.*::testExtensions CLIENT_TEST_SKIP=Client::Sync::.*::testOneWayFromClient,Client::Sync::.*::testOneWayFromLocal, CLIENT_TEST_LOG=activesyncd.log CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/exchange -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport ) Fri Jan 5 16:00:22 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['exchange'] === Fri Jan 5 16:38:32 2018 UTC (+ 2290.5s / 2290.6s) property changed: status = acquired Fri Jan 5 16:38:32 2018 UTC (+ 0.0s / 2290.6s) using jobserver Fri Jan 5 16:38:32 2018 UTC (+ 0.0s / 2290.6s) === allocating 1 job slot(s) === Fri Jan 5 16:39:19 2018 UTC (+ 46.2s / 2336.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.XIXjNX1FV6/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: '[' 41 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 39 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 39 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 38 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 37 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 70: set -x wrappercheck-18 line 70: exec wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 35 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 33 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 31 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 29 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 29 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 28 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=29 wrappercheck-25 line 73: PIDS+=29 wrappercheck-25 line 70: set -x wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 70: exec wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/7, but it's already registered wrappercheck-25 line 93: kill -0 29 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 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: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport + 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: '[' 26 -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-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 24 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 22 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 22 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 21 -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: '[' 20 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 70: exec wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' 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: /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: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 18 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 16 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 16 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 15 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 14 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 70: set -x wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 70: exec wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 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: env EAS_DEBUG_FILE=activesyncd.log /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/activesyncd -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-107 line 16: PIDS= wrappercheck-107 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-107 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-107 line 21: DAEMON_LOG= wrappercheck-107 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-107 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-107 line 25: declare -a BACKGROUND wrappercheck-107 line 26: declare -a ENV wrappercheck-107 line 28: '[' 7 -gt 1 ']' wrappercheck-107 line 28: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-107 line 29: case "$1" in wrappercheck-107 line 50: break wrappercheck-107 line 56: '[' 7 -gt 1 ']' wrappercheck-107 line 56: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 6 -gt 1 ']' wrappercheck-107 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 5 -gt 1 ']' wrappercheck-107 line 56: '[' -- '!=' -- ']' wrappercheck-107 line 60: shift wrappercheck-107 line 62: '[' '' ']' wrappercheck-107 line 66: set +x *** starting /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh as background daemon, output to stderr wrappercheck-107 line 72: BACKGROUND_PID=111 wrappercheck-107 line 73: PIDS+=111 wrappercheck-107 line 70: set -x wrappercheck-107 line 75: '[' '' ']' wrappercheck-107 line 70: exec wrappercheck-107 line 84: '[' '' ']' wrappercheck-107 line 93: kill -0 111 wrappercheck-107 line 94: set +e wrappercheck-107 line 95: '[' '' ']' wrappercheck-107 line 99: set -x wrappercheck-107 line 99: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-testing-amd64/tests/exchange/valgrind.p114.c%p.out ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport Client::Source::eas_contact::testImport ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered okay Client::Source::eas_event::testImport okay OKvalgrindcheck (114): './client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport' (122): returned 0 ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport ==122== Parent PID: 114 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 431,188 bytes in 4,126 blocks ==122== total heap usage: 122,481 allocs, 118,355 frees, 19,962,554 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 96 bytes in 1 blocks ==122== still reachable: 214,181 bytes in 678 blocks ==122== of which reachable via heuristic: ==122== newarray : 5,800 bytes in 17 blocks ==122== suppressed: 216,911 bytes in 3,447 blocks ==122== Rerun with --leak-check=full to see details of leaked memory ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==130== Memcheck, a memory error detector ==130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==130== Command: ./client-test Client::Source::eas_contact::testImport ==130== Parent PID: 122 ==130== ==130== ==130== HEAP SUMMARY: ==130== in use at exit: 519,352 bytes in 5,164 blocks ==130== total heap usage: 176,027 allocs, 170,863 frees, 24,877,689 bytes allocated ==130== ==130== LEAK SUMMARY: ==130== definitely lost: 0 bytes in 0 blocks ==130== indirectly lost: 313 bytes in 68 blocks ==130== possibly lost: 960 bytes in 3 blocks ==130== still reachable: 235,190 bytes in 827 blocks ==130== of which reachable via heuristic: ==130== length64 : 768 bytes in 15 blocks ==130== newarray : 5,992 bytes in 29 blocks ==130== suppressed: 271,905 bytes in 4,184 blocks ==130== Rerun with --leak-check=full to see details of leaked memory ==130== ==130== For counts of detected and suppressed errors, rerun with: -v ==130== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==138== Memcheck, a memory error detector ==138== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==138== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==138== Command: ./client-test Client::Source::eas_contact::testImport ==138== Parent PID: 130 ==138== ==142== Memcheck, a memory error detector ==142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==142== Command: ./client-test Client::Source::eas_event::testImport ==142== Parent PID: 122 ==142== ==142== ==142== HEAP SUMMARY: ==142== in use at exit: 581,715 bytes in 5,516 blocks ==142== total heap usage: 183,630 allocs, 178,114 frees, 26,078,274 bytes allocated ==142== ==142== LEAK SUMMARY: ==142== definitely lost: 0 bytes in 0 blocks ==142== indirectly lost: 221 bytes in 48 blocks ==142== possibly lost: 960 bytes in 3 blocks ==142== still reachable: 300,608 bytes in 1,240 blocks ==142== of which reachable via heuristic: ==142== length64 : 768 bytes in 15 blocks ==142== newarray : 5,992 bytes in 29 blocks ==142== suppressed: 270,086 bytes in 4,151 blocks ==142== Rerun with --leak-check=full to see details of leaked memory ==142== ==142== For counts of detected and suppressed errors, rerun with: -v ==142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==145== Memcheck, a memory error detector ==145== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==145== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==145== Command: ./client-test Client::Source::eas_event::testImport ==145== Parent PID: 142 ==145== valgrindcheck: ./client-test Client::Source::eas_event::testImport Client::Source::eas_contact::testImport: final result 0 wrappercheck-107 line 100: RET=0 wrappercheck-107 line 101: set -e wrappercheck-107 line 107: set +x *** killing and waiting for /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-107 line 108: kill -INT -111 wrappercheck-107 line 108: kill -TERM -111 wrappercheck-107 line 108: kill -TERM 111 wrappercheck-107 line 110: KILL_PID=222 wrappercheck-107 line 115: set +e wrappercheck-107 line 116: wait 111 wrappercheck-107 line 109: perl -e 'sleep(60); kill(9, -111);' wrappercheck-107 line 117: SUBRET=143 wrappercheck-107 line 118: case $SUBRET in wrappercheck-107 line 118: SUBRET=0 wrappercheck-107 line 120: SUBRET=0 wrappercheck-107 line 121: '[' 222 ']' wwrappercheck-107 line 122: LC_ALL=C wwrappercheck-107 line 122: kill -KILL 222 wrappercheck-107 line 122: msg= wrappercheck-107 line 123: echo '' wrappercheck-107 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 222 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-107 line 127: echo '' wrappercheck-107 line 129: wait 222 wrappercheck-107 line 131: set -e wrappercheck-107 line 132: '[' 0 = 0 ']' wrappercheck-107 line 133: RET=0 wrappercheck-107 line 136: exit 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=228 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 228 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 228 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: echo '' wrappercheck-102 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 228 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 228 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 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-addressbook-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=233 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' 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: '[' 233 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 233 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: 233 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 233 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-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -29 wrappercheck-25 line 108: kill -TERM -29 wrappercheck-25 line 108: kill -TERM 29 wrappercheck-25 line 110: KILL_PID=238 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 29 wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -29);' wrappercheck-25 line 117: SUBRET=143 wrappercheck-25 line 118: case $SUBRET in wrappercheck-25 line 118: SUBRET=0 wrappercheck-25 line 120: SUBRET=0 wrappercheck-25 line 121: '[' 238 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 238 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 238 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 238 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=243 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 22 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 243 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 243 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: 243 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 243 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.XIXjNX1FV6 Fri Jan 5 16:41:03 2018 UTC (+ 104.0s / 2440.7s) === cleaning up ===