runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 1.5s / 65.5s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 0.1s / 65.7s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/prebuilt-testing-i386/home/davical/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/davical/data runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.7s) === starting davical === runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.7s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/19-davical, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/19-davical runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.7s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/davical (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/davical) runtests.py-32142 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.7s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/davical; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' '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-i386/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/cache'; unset ; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- env 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server schroot -d /data/runtests/work/prebuilt-testing-i386/tests/davical -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib 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 davical ./syncevolution ) Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['davical'] === Fri Jan 5 15:33:14 2018 UTC (+ 138.1s / 138.1s) property changed: status = acquired Fri Jan 5 15:33:14 2018 UTC (+ 0.0s / 138.1s) using jobserver Fri Jan 5 15:33:14 2018 UTC (+ 0.0s / 138.1s) === allocating 1 job slot(s) === Fri Jan 5 15:33:27 2018 UTC (+ 12.9s / 151.0s) === 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-i386 chroot] Running command: “env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib 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 davical ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 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 gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 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 davical ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.x4LxwRX2AJ/keyring/control: No such file or directory wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 29 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 27 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 43: shift wrappercheck-19 line 44: DAEMON_SLEEP=5 wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 25 -gt 1 ']' wrappercheck-19 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 35: shift wrappercheck-19 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 23 -gt 1 ']' wrappercheck-19 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 23 -gt 1 ']' wrappercheck-19 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 22 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' evolution-source-registry.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-19 line 72: BACKGROUND_PID=24 wrappercheck-19 line 73: PIDS+=24 wrappercheck-19 line 75: '[' evolution-source-registry.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-19 line 93: kill -0 24 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' 5 ']' wrappercheck-19 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-19 line 97: sleep 5 wrappercheck-19 line 99: set -x wrappercheck-19 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 davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-70 line 16: PIDS= wrappercheck-70 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-70 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-70 line 21: DAEMON_LOG= wrappercheck-70 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-70 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-70 line 25: declare -a BACKGROUND wrappercheck-70 line 26: declare -a ENV wrappercheck-70 line 28: '[' 20 -gt 1 ']' wrappercheck-70 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-70 line 29: case "$1" in wrappercheck-70 line 31: shift wrappercheck-70 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-70 line 53: shift wrappercheck-70 line 28: '[' 18 -gt 1 ']' wrappercheck-70 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-70 line 29: case "$1" in wrappercheck-70 line 35: shift wrappercheck-70 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-70 line 53: shift wrappercheck-70 line 28: '[' 16 -gt 1 ']' wrappercheck-70 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-70 line 29: case "$1" in wrappercheck-70 line 50: break wrappercheck-70 line 56: '[' 16 -gt 1 ']' wrappercheck-70 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-70 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-70 line 58: shift wrappercheck-70 line 56: '[' 15 -gt 1 ']' wrappercheck-70 line 56: '[' --keep-running '!=' -- ']' wrappercheck-70 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-70 line 58: shift wrappercheck-70 line 56: '[' 14 -gt 1 ']' wrappercheck-70 line 56: '[' -- '!=' -- ']' wrappercheck-70 line 60: shift wrappercheck-70 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-70 line 62: '[' '' ']' wrappercheck-70 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-70 line 72: BACKGROUND_PID=72 wrappercheck-70 line 73: PIDS+=72 wrappercheck-70 line 70: set -x wrappercheck-70 line 70: exec wrappercheck-70 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-70 line 75: '[' '' ']' wrappercheck-70 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-70 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-70 line 93: kill -0 72 wrappercheck-70 line 94: set +e wrappercheck-70 line 95: '[' '' ']' wrappercheck-70 line 99: set -x wrappercheck-70 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 davical ./syncevolution + 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: '[' 12 -gt 1 ']' wrappercheck-90 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-90 line 29: case "$1" in wrappercheck-90 line 31: shift wrappercheck-90 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-90 line 53: shift wrappercheck-90 line 28: '[' 10 -gt 1 ']' wrappercheck-90 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-90 line 29: case "$1" in wrappercheck-90 line 50: break wrappercheck-90 line 56: '[' 10 -gt 1 ']' wrappercheck-90 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 9 -gt 1 ']' wrappercheck-90 line 56: '[' --keep-running '!=' -- ']' wrappercheck-90 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-90 line 58: shift wrappercheck-90 line 56: '[' 8 -gt 1 ']' wrappercheck-90 line 56: '[' -- '!=' -- ']' wrappercheck-90 line 60: shift wrappercheck-90 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-90 line 62: '[' '' ']' wrappercheck-90 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-90 line 72: BACKGROUND_PID=92 wrappercheck-90 line 73: PIDS+=92 wrappercheck-90 line 70: set -x wrappercheck-90 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-90 line 75: '[' '' ']' wrappercheck-90 line 70: exec wrappercheck-90 line 84: '[' '' ']' wrappercheck-90 line 93: kill -0 92 wrappercheck-90 line 94: set +e wrappercheck-90 line 95: '[' '' ']' wrappercheck-90 line 99: set -x wrappercheck-90 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-95 line 16: PIDS= wrappercheck-95 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-95 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-95 line 21: DAEMON_LOG= wrappercheck-95 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-95 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-95 line 25: declare -a BACKGROUND wrappercheck-95 line 26: declare -a ENV wrappercheck-95 line 28: '[' 5 -gt 1 ']' wrappercheck-95 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-95 line 29: case "$1" in wrappercheck-95 line 50: break wrappercheck-95 line 56: '[' 5 -gt 1 ']' wrappercheck-95 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-95 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-95 line 58: shift wrappercheck-95 line 56: '[' 4 -gt 1 ']' wrappercheck-95 line 56: '[' -- '!=' -- ']' wrappercheck-95 line 60: shift wrappercheck-95 line 62: '[' '' ']' wrappercheck-95 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-95 line 72: BACKGROUND_PID=99 wrappercheck-95 line 73: PIDS+=99 wrappercheck-95 line 70: set -x wrappercheck-95 line 70: exec wrappercheck-95 line 75: '[' '' ']' wrappercheck-95 line 84: '[' '' ']' wrappercheck-95 line 93: kill -0 99 wrappercheck-95 line 94: set +e wrappercheck-95 line 95: '[' '' ']' wrappercheck-95 line 99: set -x wrappercheck-95 line 99: /home/nightly/testing/setup-syncevolution.sh davical ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-testing-i386/home/davical/.sync4j/evolution/davical_[12]' '/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/davical_[12]' '/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-[12]/peers/davical_[12]' '/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=davical_1@client-test-davical-1 ++ credentials davical_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_1@client-test-davical-1 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/todo /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/memo /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-1/peers/davical_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 davical_1@client-test-davical-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 davical_1@client-test-davical-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 davical_1@client-test-davical-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 davical_1@client-test-davical-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_1/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_1/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_1@client-test-davical-1 davical_caldav davical_caldavtodo davical_carddav + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=davical_2@client-test-davical-2 ++ credentials davical_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template davical --template SyncEvolution_Client username= password= syncURL=local://@client-test-davical retryDuration=30s calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 davical_2@client-test-davical-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/todo /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/memo /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical-2/peers/davical_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 davical_2@client-test-davical-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 davical_2@client-test-davical-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 davical_2@client-test-davical-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 davical_2@client-test-davical-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=tester2 databasePassword=testing2 davical_caldav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_caldavtodo/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_caldav_2/ davical_carddav/database=http://localhost:9009/davical/caldav.php/tester2/Test_davical_carddav_2/ davical_caldav/backend=caldav davical_caldavtodo/backend=caldavtodo davical_carddav/backend=carddav davical_2@client-test-davical-2 davical_caldav davical_caldavtodo davical_carddav + case $TEST in + rm -rf /data/runtests/work/prebuilt-testing-i386/home/davical/config/syncevolution/client-test-davical + ./syncevolution --configure --daemon=no proxyHost=http://proxy.vlan13.01.org:3128 useProxy=0 loglevel=4 syncURL=http://localhost:9009/davical/caldav.php retryDuration=2m username=test password=testing printChanges=0 dumpData=0 caldav/backend=caldav caldavtodo/backend=caldavtodo carddav/backend=carddav target-config@client-test-davical caldav caldavtodo carddav [INFO] caldav: configuring datastore with sync mode 'two-way' [INFO] caldavtodo: configuring datastore with sync mode 'two-way' [INFO] carddav: configuring datastore with sync mode 'two-way' + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./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 ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ sed -e 's/.*=//' ++ echo evolution-memos=eds_memo + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./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-95 line 100: RET=0 wrappercheck-95 line 101: set -e wrappercheck-95 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-95 line 108: kill -INT -99 wrappercheck-95 line 108: kill -TERM -99 wrappercheck-95 line 108: kill -TERM 99 wrappercheck-95 line 110: KILL_PID=345 wrappercheck-95 line 109: perl -e 'sleep(60); kill(9, -99);' wrappercheck-95 line 115: set +e wrappercheck-95 line 116: wait 99 wrappercheck-95 line 117: SUBRET=143 wrappercheck-95 line 118: case $SUBRET in wrappercheck-95 line 118: SUBRET=0 wrappercheck-95 line 120: SUBRET=0 wrappercheck-95 line 121: '[' 345 ']' wwrappercheck-95 line 122: LC_ALL=C wwrappercheck-95 line 122: kill -KILL 345 wrappercheck-95 line 122: msg= wrappercheck-95 line 123: grep -q 'No such process' wrappercheck-95 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 345 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-95 line 127: echo '' wrappercheck-95 line 129: wait 345 wrappercheck-95 line 131: set -e wrappercheck-95 line 132: '[' 0 = 0 ']' wrappercheck-95 line 133: RET=0 wrappercheck-95 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 /usr/lib/evolution/evolution-calendar-factory wrappercheck-90 line 108: kill -INT -92 wrappercheck-90 line 108: kill -TERM -92 wrappercheck-90 line 108: kill -TERM 92 wrappercheck-90 line 110: KILL_PID=350 wrappercheck-90 line 115: set +e wrappercheck-90 line 116: wait 92 wrappercheck-90 line 109: perl -e 'sleep(60); kill(9, -92);' 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: '[' 350 ']' wwrappercheck-90 line 122: LC_ALL=C wwrappercheck-90 line 122: kill -KILL 350 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: 350 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-90 line 127: echo '' wrappercheck-90 line 129: wait 350 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-70 line 100: RET=0 wrappercheck-70 line 101: set -e wrappercheck-70 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-70 line 108: kill -INT -72 wrappercheck-70 line 108: kill -TERM -72 wrappercheck-70 line 108: kill -TERM 72 wrappercheck-70 line 110: KILL_PID=355 wrappercheck-70 line 115: set +e wrappercheck-70 line 109: perl -e 'sleep(60); kill(9, -72);' wrappercheck-70 line 116: wait 72 wrappercheck-70 line 117: SUBRET=143 wrappercheck-70 line 118: case $SUBRET in wrappercheck-70 line 118: SUBRET=0 wrappercheck-70 line 120: SUBRET=0 wrappercheck-70 line 121: '[' 355 ']' wwrappercheck-70 line 122: LC_ALL=C wwrappercheck-70 line 122: kill -KILL 355 wrappercheck-70 line 122: msg= wrappercheck-70 line 123: grep -q 'No such process' wrappercheck-70 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 355 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-70 line 127: echo '' wrappercheck-70 line 129: wait 355 wrappercheck-70 line 131: set -e wrappercheck-70 line 132: '[' 0 = 0 ']' wrappercheck-70 line 133: RET=0 wrappercheck-70 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-19 line 108: kill -INT -24 wrappercheck-19 line 108: kill -TERM -24 wrappercheck-19 line 108: kill -TERM 24 wrappercheck-19 line 110: KILL_PID=360 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -24);' wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 24 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 360 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 360 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 360 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 360 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 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=365 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: '[' 365 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 365 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: echo '' wrappercheck-15 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 365 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 365 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.x4LxwRX2AJ Fri Jan 5 15:33:37 2018 UTC (+ 10.3s / 161.4s) === cleaning up === runtests.py-32142 Fri Jan 5 15:33:37 2018 UTC (+ 161.4s / 227.1s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/davical; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' '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-i386/home/davical' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/davical/cache'; unset ; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r davical -- env VALGRIND_LEAK_CHECK_SKIP=akonadi_control,.bin.sh.-c. VALGRIND_LEAK_CHECK_ONLY_FIRST=1 'VALGRIND_ARGS=--show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=davical CLIENT_TEST_SOURCES=davical_caldav,davical_caldavtodo,davical_carddav,eds_event,eds_task,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 'CLIENT_TEST_WEBDAV=davical caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-i386/tests/davical -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib 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 PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 15:33:37 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['davical'] === Fri Jan 5 15:41:35 2018 UTC (+ 477.4s / 477.4s) property changed: status = acquired Fri Jan 5 15:41:35 2018 UTC (+ 0.0s / 477.4s) using jobserver Fri Jan 5 15:41:35 2018 UTC (+ 0.0s / 477.4s) === allocating 1 job slot(s) === Fri Jan 5 15:42:41 2018 UTC (+ 66.8s / 544.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-i386 chroot] Running command: “env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib 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 PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.TyX5lXzUqI/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 39 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 37 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 37 -gt 1 ']' wrappercheck-19 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 36 -gt 1 ']' wrappercheck-19 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 35 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=21 wrappercheck-19 line 73: PIDS+=21 wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 21 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 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 PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 33 -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: '[' 31 -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: '[' 29 -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: '[' 27 -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: '[' 27 -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: '[' 26 -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 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' 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 PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-75 line 16: PIDS= wrappercheck-75 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-75 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-75 line 21: DAEMON_LOG= wrappercheck-75 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-75 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-75 line 25: declare -a BACKGROUND wrappercheck-75 line 26: declare -a ENV wrappercheck-75 line 28: '[' 24 -gt 1 ']' wrappercheck-75 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 31: shift wrappercheck-75 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-75 line 53: shift wrappercheck-75 line 28: '[' 22 -gt 1 ']' wrappercheck-75 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 35: shift wrappercheck-75 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-75 line 53: shift wrappercheck-75 line 28: '[' 20 -gt 1 ']' wrappercheck-75 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 50: break wrappercheck-75 line 56: '[' 20 -gt 1 ']' wrappercheck-75 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-75 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-75 line 58: shift wrappercheck-75 line 56: '[' 19 -gt 1 ']' wrappercheck-75 line 56: '[' --keep-running '!=' -- ']' wrappercheck-75 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-75 line 58: shift wrappercheck-75 line 56: '[' 18 -gt 1 ']' wrappercheck-75 line 56: '[' -- '!=' -- ']' wrappercheck-75 line 60: shift wrappercheck-75 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-75 line 62: '[' '' ']' wrappercheck-75 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-75 line 72: BACKGROUND_PID=77 wrappercheck-75 line 73: PIDS+=77 wrappercheck-75 line 70: set -x wrappercheck-75 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-75 line 70: exec wrappercheck-75 line 75: '[' '' ']' wrappercheck-75 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-75 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-75 line 93: kill -0 77 wrappercheck-75 line 94: set +e wrappercheck-75 line 95: '[' '' ']' wrappercheck-75 line 99: set -x wrappercheck-75 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 PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-95 line 16: PIDS= wrappercheck-95 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-95 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-95 line 21: DAEMON_LOG= wrappercheck-95 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-95 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-95 line 25: declare -a BACKGROUND wrappercheck-95 line 26: declare -a ENV wrappercheck-95 line 28: '[' 16 -gt 1 ']' wrappercheck-95 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-95 line 29: case "$1" in wrappercheck-95 line 31: shift wrappercheck-95 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-95 line 53: shift wrappercheck-95 line 28: '[' 14 -gt 1 ']' wrappercheck-95 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-95 line 29: case "$1" in wrappercheck-95 line 50: break wrappercheck-95 line 56: '[' 14 -gt 1 ']' wrappercheck-95 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-95 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-95 line 58: shift wrappercheck-95 line 56: '[' 13 -gt 1 ']' wrappercheck-95 line 56: '[' --keep-running '!=' -- ']' wrappercheck-95 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-95 line 58: shift wrappercheck-95 line 56: '[' 12 -gt 1 ']' wrappercheck-95 line 56: '[' -- '!=' -- ']' wrappercheck-95 line 60: shift wrappercheck-95 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-95 line 62: '[' '' ']' wrappercheck-95 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-95 line 72: BACKGROUND_PID=97 wrappercheck-95 line 73: PIDS+=97 wrappercheck-95 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-95 line 75: '[' '' ']' wrappercheck-95 line 84: '[' '' ']' wrappercheck-95 line 93: kill -0 97 wrappercheck-95 line 94: set +e wrappercheck-95 line 95: '[' '' ']' wrappercheck-95 line 99: set -x wrappercheck-95 line 99: env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems wrappercheck-95 line 70: set -x wrappercheck-95 line 70: exec *** 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-i386/tests/davical/valgrind.p99.c%p.out ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems Client::Source::davical_caldav::testLinkedSources okay sess: Destroying session. Client::Source::davical_caldav::testImport okay sess: Destroying session. Client::Source::davical_caldavtodo::testImport okay sess: Destroying session. Client::Source::davical_carddav::testImport okay sess: Destroying session. Client::Sync::eds_event::testItems okay Client::Sync::eds_task::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (99): './client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems' (104): returned 0 ==104== Memcheck, a memory error detector ==104== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==104== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==104== Command: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ==104== Parent PID: 99 ==104== ==104== ==104== HEAP SUMMARY: ==104== in use at exit: 347,775 bytes in 5,276 blocks ==104== total heap usage: 144,535 allocs, 139,206 frees, 15,503,865 bytes allocated ==104== ==104== LEAK SUMMARY: ==104== definitely lost: 0 bytes in 0 blocks ==104== indirectly lost: 0 bytes in 0 blocks ==104== possibly lost: 484 bytes in 3 blocks ==104== still reachable: 144,581 bytes in 934 blocks ==104== of which reachable via heuristic: ==104== newarray : 5,316 bytes in 46 blocks ==104== suppressed: 195,966 bytes in 4,255 blocks ==104== Rerun with --leak-check=full to see details of leaked memory ==104== ==104== For counts of detected and suppressed errors, rerun with: -v ==104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==115== Memcheck, a memory error detector ==115== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==115== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==115== Command: ./client-test Client::Source::davical_caldav::testLinkedSources ==115== Parent PID: 104 ==115== ==115== ==115== HEAP SUMMARY: ==115== in use at exit: 472,783 bytes in 5,971 blocks ==115== total heap usage: 401,166 allocs, 395,110 frees, 48,787,260 bytes allocated ==115== ==115== LEAK SUMMARY: ==115== definitely lost: 0 bytes in 0 blocks ==115== indirectly lost: 0 bytes in 0 blocks ==115== possibly lost: 484 bytes in 3 blocks ==115== still reachable: 269,701 bytes in 1,629 blocks ==115== of which reachable via heuristic: ==115== newarray : 5,316 bytes in 46 blocks ==115== suppressed: 195,854 bytes in 4,255 blocks ==115== Rerun with --leak-check=full to see details of leaked memory ==115== ==115== For counts of detected and suppressed errors, rerun with: -v ==115== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==119== Memcheck, a memory error detector ==119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==119== Command: ./client-test Client::Source::davical_caldav::testImport ==119== Parent PID: 104 ==119== ==119== ==119== HEAP SUMMARY: ==119== in use at exit: 472,035 bytes in 5,964 blocks ==119== total heap usage: 189,328 allocs, 183,307 frees, 27,156,222 bytes allocated ==119== ==119== LEAK SUMMARY: ==119== definitely lost: 0 bytes in 0 blocks ==119== indirectly lost: 0 bytes in 0 blocks ==119== possibly lost: 700 bytes in 4 blocks ==119== still reachable: 268,717 bytes in 1,619 blocks ==119== of which reachable via heuristic: ==119== newarray : 5,316 bytes in 46 blocks ==119== suppressed: 195,874 bytes in 4,257 blocks ==119== Rerun with --leak-check=full to see details of leaked memory ==119== ==119== For counts of detected and suppressed errors, rerun with: -v ==119== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==123== Memcheck, a memory error detector ==123== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==123== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==123== Command: ./client-test Client::Source::davical_caldav::testImport ==123== Parent PID: 119 ==123== ==131== Memcheck, a memory error detector ==131== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==131== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==131== Command: ./client-test Client::Source::davical_caldavtodo::testImport ==131== Parent PID: 104 ==131== ==131== ==131== HEAP SUMMARY: ==131== in use at exit: 350,885 bytes in 5,305 blocks ==131== total heap usage: 142,798 allocs, 137,436 frees, 15,000,557 bytes allocated ==131== ==131== LEAK SUMMARY: ==131== definitely lost: 0 bytes in 0 blocks ==131== indirectly lost: 0 bytes in 0 blocks ==131== possibly lost: 700 bytes in 4 blocks ==131== still reachable: 147,491 bytes in 959 blocks ==131== of which reachable via heuristic: ==131== newarray : 5,316 bytes in 46 blocks ==131== suppressed: 195,950 bytes in 4,258 blocks ==131== Rerun with --leak-check=full to see details of leaked memory ==131== ==131== For counts of detected and suppressed errors, rerun with: -v ==131== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==135== Memcheck, a memory error detector ==135== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==135== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==135== Command: ./client-test Client::Source::davical_caldavtodo::testImport ==135== Parent PID: 131 ==135== ==143== Memcheck, a memory error detector ==143== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==143== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==143== Command: ./client-test Client::Source::davical_carddav::testImport ==143== Parent PID: 104 ==143== ==143== ==143== HEAP SUMMARY: ==143== in use at exit: 350,889 bytes in 5,305 blocks ==143== total heap usage: 203,923 allocs, 198,561 frees, 31,849,890 bytes allocated ==143== ==143== LEAK SUMMARY: ==143== definitely lost: 0 bytes in 0 blocks ==143== indirectly lost: 0 bytes in 0 blocks ==143== possibly lost: 700 bytes in 4 blocks ==143== still reachable: 147,491 bytes in 959 blocks ==143== of which reachable via heuristic: ==143== newarray : 5,316 bytes in 46 blocks ==143== suppressed: 195,954 bytes in 4,258 blocks ==143== Rerun with --leak-check=full to see details of leaked memory ==143== ==143== For counts of detected and suppressed errors, rerun with: -v ==143== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==147== Memcheck, a memory error detector ==147== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==147== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==147== Command: ./client-test Client::Source::davical_carddav::testImport ==147== Parent PID: 143 ==147== ==155== Memcheck, a memory error detector ==155== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==155== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==155== Command: ./client-test Client::Sync::eds_event::testItems ==155== Parent PID: 104 ==155== ==155== ==155== HEAP SUMMARY: ==155== in use at exit: 2,341,314 bytes in 30,285 blocks ==155== total heap usage: 2,156,733 allocs, 2,126,391 frees, 193,606,671 bytes allocated ==155== ==155== LEAK SUMMARY: ==155== definitely lost: 0 bytes in 0 blocks ==155== indirectly lost: 0 bytes in 0 blocks ==155== possibly lost: 700 bytes in 4 blocks ==155== still reachable: 1,924,549 bytes in 21,855 blocks ==155== of which reachable via heuristic: ==155== newarray : 7,528 bytes in 129 blocks ==155== suppressed: 375,557 bytes in 7,894 blocks ==155== Rerun with --leak-check=full to see details of leaked memory ==155== ==155== For counts of detected and suppressed errors, rerun with: -v ==155== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==181== Memcheck, a memory error detector ==181== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==181== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==181== Command: /usr/libexec/syncevo-local-sync ==181== Parent PID: 155 ==181== ==181== ==181== HEAP SUMMARY: ==181== in use at exit: 2,153,999 bytes in 25,911 blocks ==181== total heap usage: 397,967 allocs, 372,056 frees, 42,782,644 bytes allocated ==181== ==181== LEAK SUMMARY: ==181== definitely lost: 0 bytes in 0 blocks ==181== indirectly lost: 0 bytes in 0 blocks ==181== possibly lost: 484 bytes in 3 blocks ==181== still reachable: 1,964,621 bytes in 21,923 blocks ==181== of which reachable via heuristic: ==181== stdstring : 33 bytes in 1 blocks ==181== newarray : 5,096 bytes in 38 blocks ==181== suppressed: 184,794 bytes in 3,929 blocks ==181== Rerun with --leak-check=full to see details of leaked memory ==181== ==181== For counts of detected and suppressed errors, rerun with: -v ==181== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==197== Memcheck, a memory error detector ==197== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==197== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==197== Command: /usr/libexec/syncevo-local-sync ==197== Parent PID: 155 ==197== ==197== ==197== HEAP SUMMARY: ==197== in use at exit: 2,116,363 bytes in 25,764 blocks ==197== total heap usage: 300,775 allocs, 275,011 frees, 35,706,769 bytes allocated ==197== ==197== LEAK SUMMARY: ==197== definitely lost: 0 bytes in 0 blocks ==197== indirectly lost: 0 bytes in 0 blocks ==197== possibly lost: 484 bytes in 3 blocks ==197== still reachable: 1,926,989 bytes in 21,776 blocks ==197== of which reachable via heuristic: ==197== stdstring : 33 bytes in 1 blocks ==197== newarray : 5,096 bytes in 38 blocks ==197== suppressed: 184,790 bytes in 3,929 blocks ==197== Rerun with --leak-check=full to see details of leaked memory ==197== ==197== For counts of detected and suppressed errors, rerun with: -v ==197== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==223== Memcheck, a memory error detector ==223== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==223== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==223== Command: ./client-test Client::Sync::eds_event::testItems ==223== Parent PID: 155 ==223== ==231== Memcheck, a memory error detector ==231== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==231== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==231== Command: /usr/libexec/syncevo-local-sync ==231== Parent PID: 155 ==231== ==231== ==231== HEAP SUMMARY: ==231== in use at exit: 2,084,859 bytes in 25,679 blocks ==231== total heap usage: 480,185 allocs, 454,506 frees, 48,140,260 bytes allocated ==231== ==231== LEAK SUMMARY: ==231== definitely lost: 0 bytes in 0 blocks ==231== indirectly lost: 0 bytes in 0 blocks ==231== possibly lost: 484 bytes in 3 blocks ==231== still reachable: 1,895,481 bytes in 21,691 blocks ==231== of which reachable via heuristic: ==231== stdstring : 33 bytes in 1 blocks ==231== newarray : 5,096 bytes in 38 blocks ==231== suppressed: 184,794 bytes in 3,929 blocks ==231== Rerun with --leak-check=full to see details of leaked memory ==231== ==231== For counts of detected and suppressed errors, rerun with: -v ==231== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==239== Memcheck, a memory error detector ==239== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==239== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==239== Command: /usr/libexec/syncevo-local-sync ==239== Parent PID: 155 ==239== ==239== ==239== HEAP SUMMARY: ==239== in use at exit: 2,153,999 bytes in 25,911 blocks ==239== total heap usage: 386,233 allocs, 360,322 frees, 41,930,305 bytes allocated ==239== ==239== LEAK SUMMARY: ==239== definitely lost: 0 bytes in 0 blocks ==239== indirectly lost: 0 bytes in 0 blocks ==239== possibly lost: 484 bytes in 3 blocks ==239== still reachable: 1,964,621 bytes in 21,923 blocks ==239== of which reachable via heuristic: ==239== stdstring : 33 bytes in 1 blocks ==239== newarray : 5,096 bytes in 38 blocks ==239== suppressed: 184,794 bytes in 3,929 blocks ==239== Rerun with --leak-check=full to see details of leaked memory ==239== ==239== For counts of detected and suppressed errors, rerun with: -v ==239== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==260== Memcheck, a memory error detector ==260== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==260== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==260== Command: ./client-test Client::Sync::eds_event::testItems ==260== Parent PID: 155 ==260== ==265== Memcheck, a memory error detector ==265== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==265== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==265== Command: ./client-test Client::Sync::eds_task::testItems ==265== Parent PID: 104 ==265== ==265== ==265== HEAP SUMMARY: ==265== in use at exit: 2,341,676 bytes in 30,301 blocks ==265== total heap usage: 1,489,719 allocs, 1,459,361 frees, 145,982,050 bytes allocated ==265== ==265== LEAK SUMMARY: ==265== definitely lost: 0 bytes in 0 blocks ==265== indirectly lost: 0 bytes in 0 blocks ==265== possibly lost: 700 bytes in 4 blocks ==265== still reachable: 1,924,907 bytes in 21,862 blocks ==265== of which reachable via heuristic: ==265== newarray : 7,528 bytes in 129 blocks ==265== suppressed: 375,561 bytes in 7,903 blocks ==265== Rerun with --leak-check=full to see details of leaked memory ==265== ==265== For counts of detected and suppressed errors, rerun with: -v ==265== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==297== Memcheck, a memory error detector ==297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==297== Command: /usr/libexec/syncevo-local-sync ==297== Parent PID: 265 ==297== ==297== ==297== HEAP SUMMARY: ==297== in use at exit: 2,084,859 bytes in 25,679 blocks ==297== total heap usage: 281,789 allocs, 256,110 frees, 34,598,033 bytes allocated ==297== ==297== LEAK SUMMARY: ==297== definitely lost: 0 bytes in 0 blocks ==297== indirectly lost: 0 bytes in 0 blocks ==297== possibly lost: 484 bytes in 3 blocks ==297== still reachable: 1,895,481 bytes in 21,691 blocks ==297== of which reachable via heuristic: ==297== stdstring : 33 bytes in 1 blocks ==297== newarray : 5,096 bytes in 38 blocks ==297== suppressed: 184,794 bytes in 3,929 blocks ==297== Rerun with --leak-check=full to see details of leaked memory ==297== ==297== For counts of detected and suppressed errors, rerun with: -v ==297== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==338== Memcheck, a memory error detector ==338== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==338== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==338== Command: /usr/libexec/syncevo-local-sync ==338== Parent PID: 265 ==338== ==338== ==338== HEAP SUMMARY: ==338== in use at exit: 2,084,867 bytes in 25,679 blocks ==338== total heap usage: 265,969 allocs, 240,290 frees, 33,350,677 bytes allocated ==338== ==338== LEAK SUMMARY: ==338== definitely lost: 0 bytes in 0 blocks ==338== indirectly lost: 0 bytes in 0 blocks ==338== possibly lost: 484 bytes in 3 blocks ==338== still reachable: 1,895,481 bytes in 21,691 blocks ==338== of which reachable via heuristic: ==338== stdstring : 33 bytes in 1 blocks ==338== newarray : 5,096 bytes in 38 blocks ==338== suppressed: 184,802 bytes in 3,929 blocks ==338== Rerun with --leak-check=full to see details of leaked memory ==338== ==338== For counts of detected and suppressed errors, rerun with: -v ==338== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==405== Memcheck, a memory error detector ==405== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==405== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==405== Command: ./client-test Client::Sync::eds_task::testItems ==405== Parent PID: 265 ==405== ==413== Memcheck, a memory error detector ==413== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==413== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==413== Command: /usr/libexec/syncevo-local-sync ==413== Parent PID: 265 ==413== ==413== ==413== HEAP SUMMARY: ==413== in use at exit: 2,084,867 bytes in 25,679 blocks ==413== total heap usage: 274,649 allocs, 248,970 frees, 33,984,692 bytes allocated ==413== ==413== LEAK SUMMARY: ==413== definitely lost: 0 bytes in 0 blocks ==413== indirectly lost: 0 bytes in 0 blocks ==413== possibly lost: 484 bytes in 3 blocks ==413== still reachable: 1,895,481 bytes in 21,691 blocks ==413== of which reachable via heuristic: ==413== stdstring : 33 bytes in 1 blocks ==413== newarray : 5,096 bytes in 38 blocks ==413== suppressed: 184,802 bytes in 3,929 blocks ==413== Rerun with --leak-check=full to see details of leaked memory ==413== ==413== For counts of detected and suppressed errors, rerun with: -v ==413== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==429== Memcheck, a memory error detector ==429== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==429== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==429== Command: /usr/libexec/syncevo-local-sync ==429== Parent PID: 265 ==429== ==429== ==429== HEAP SUMMARY: ==429== in use at exit: 2,084,855 bytes in 25,679 blocks ==429== total heap usage: 272,209 allocs, 246,530 frees, 33,760,434 bytes allocated ==429== ==429== LEAK SUMMARY: ==429== definitely lost: 0 bytes in 0 blocks ==429== indirectly lost: 0 bytes in 0 blocks ==429== possibly lost: 484 bytes in 3 blocks ==429== still reachable: 1,895,481 bytes in 21,691 blocks ==429== of which reachable via heuristic: ==429== stdstring : 33 bytes in 1 blocks ==429== newarray : 5,096 bytes in 38 blocks ==429== suppressed: 184,790 bytes in 3,929 blocks ==429== Rerun with --leak-check=full to see details of leaked memory ==429== ==429== For counts of detected and suppressed errors, rerun with: -v ==429== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==466== Memcheck, a memory error detector ==466== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==466== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==466== Command: ./client-test Client::Sync::eds_task::testItems ==466== Parent PID: 265 ==466== ==470== Memcheck, a memory error detector ==470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==470== Command: ./client-test Client::Sync::eds_contact::testItems ==470== Parent PID: 104 ==470== ==470== ==470== HEAP SUMMARY: ==470== in use at exit: 2,373,715 bytes in 30,692 blocks ==470== total heap usage: 2,155,185 allocs, 2,124,436 frees, 197,700,832 bytes allocated ==470== ==470== LEAK SUMMARY: ==470== definitely lost: 0 bytes in 0 blocks ==470== indirectly lost: 0 bytes in 0 blocks ==470== possibly lost: 916 bytes in 5 blocks ==470== still reachable: 1,973,858 bytes in 21,895 blocks ==470== of which reachable via heuristic: ==470== newarray : 7,508 bytes in 128 blocks ==470== suppressed: 346,889 bytes in 8,135 blocks ==470== Rerun with --leak-check=full to see details of leaked memory ==470== ==470== For counts of detected and suppressed errors, rerun with: -v ==470== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==496== Memcheck, a memory error detector ==496== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==496== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==496== Command: /usr/libexec/syncevo-local-sync ==496== Parent PID: 470 ==496== ==496== ==496== HEAP SUMMARY: ==496== in use at exit: 2,084,859 bytes in 25,679 blocks ==496== total heap usage: 625,312 allocs, 599,633 frees, 58,553,230 bytes allocated ==496== ==496== LEAK SUMMARY: ==496== definitely lost: 0 bytes in 0 blocks ==496== indirectly lost: 0 bytes in 0 blocks ==496== possibly lost: 484 bytes in 3 blocks ==496== still reachable: 1,895,481 bytes in 21,691 blocks ==496== of which reachable via heuristic: ==496== stdstring : 33 bytes in 1 blocks ==496== newarray : 5,096 bytes in 38 blocks ==496== suppressed: 184,794 bytes in 3,929 blocks ==496== Rerun with --leak-check=full to see details of leaked memory ==496== ==496== For counts of detected and suppressed errors, rerun with: -v ==496== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==514== Memcheck, a memory error detector ==514== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==514== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==514== Command: /usr/libexec/syncevo-local-sync ==514== Parent PID: 470 ==514== ==514== ==514== HEAP SUMMARY: ==514== in use at exit: 2,084,855 bytes in 25,679 blocks ==514== total heap usage: 300,268 allocs, 274,589 frees, 35,915,921 bytes allocated ==514== ==514== LEAK SUMMARY: ==514== definitely lost: 0 bytes in 0 blocks ==514== indirectly lost: 0 bytes in 0 blocks ==514== possibly lost: 484 bytes in 3 blocks ==514== still reachable: 1,895,481 bytes in 21,691 blocks ==514== of which reachable via heuristic: ==514== stdstring : 33 bytes in 1 blocks ==514== newarray : 5,096 bytes in 38 blocks ==514== suppressed: 184,790 bytes in 3,929 blocks ==514== Rerun with --leak-check=full to see details of leaked memory ==514== ==514== For counts of detected and suppressed errors, rerun with: -v ==514== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==542== Memcheck, a memory error detector ==542== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==542== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==542== Command: ./client-test Client::Sync::eds_contact::testItems ==542== Parent PID: 470 ==542== ==550== Memcheck, a memory error detector ==550== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==550== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==550== Command: /usr/libexec/syncevo-local-sync ==550== Parent PID: 470 ==550== ==550== ==550== HEAP SUMMARY: ==550== in use at exit: 2,084,855 bytes in 25,679 blocks ==550== total heap usage: 583,060 allocs, 557,381 frees, 55,671,804 bytes allocated ==550== ==550== LEAK SUMMARY: ==550== definitely lost: 0 bytes in 0 blocks ==550== indirectly lost: 0 bytes in 0 blocks ==550== possibly lost: 484 bytes in 3 blocks ==550== still reachable: 1,895,481 bytes in 21,691 blocks ==550== of which reachable via heuristic: ==550== stdstring : 33 bytes in 1 blocks ==550== newarray : 5,096 bytes in 38 blocks ==550== suppressed: 184,790 bytes in 3,929 blocks ==550== Rerun with --leak-check=full to see details of leaked memory ==550== ==550== For counts of detected and suppressed errors, rerun with: -v ==550== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==559== Memcheck, a memory error detector ==559== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==559== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==559== Command: /usr/libexec/syncevo-local-sync ==559== Parent PID: 470 ==559== ==559== ==559== HEAP SUMMARY: ==559== in use at exit: 2,084,863 bytes in 25,679 blocks ==559== total heap usage: 619,848 allocs, 594,169 frees, 57,928,713 bytes allocated ==559== ==559== LEAK SUMMARY: ==559== definitely lost: 0 bytes in 0 blocks ==559== indirectly lost: 0 bytes in 0 blocks ==559== possibly lost: 484 bytes in 3 blocks ==559== still reachable: 1,895,481 bytes in 21,691 blocks ==559== of which reachable via heuristic: ==559== stdstring : 33 bytes in 1 blocks ==559== newarray : 5,096 bytes in 38 blocks ==559== suppressed: 184,798 bytes in 3,929 blocks ==559== Rerun with --leak-check=full to see details of leaked memory ==559== ==559== For counts of detected and suppressed errors, rerun with: -v ==559== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==583== Memcheck, a memory error detector ==583== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==583== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==583== Command: ./client-test Client::Sync::eds_contact::testItems ==583== Parent PID: 470 ==583== valgrindcheck: ./client-test Client::Source::davical_caldav::testImport Client::Source::davical_caldav::testLinkedSources Client::Source::davical_caldavtodo::testImport Client::Source::davical_carddav::testImport Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-95 line 100: RET=0 wrappercheck-95 line 101: set -e wrappercheck-95 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-95 line 108: kill -INT -97 wrappercheck-95 line 108: kill -TERM -97 wrappercheck-95 line 108: kill -TERM 97 wrappercheck-95 line 110: KILL_PID=973 wrappercheck-95 line 115: set +e wrappercheck-95 line 116: wait 97 wrappercheck-95 line 117: SUBRET=143 wrappercheck-95 line 118: case $SUBRET in wrappercheck-95 line 118: SUBRET=0 wrappercheck-95 line 120: SUBRET=0 wrappercheck-95 line 121: '[' 973 ']' wrappercheck-95 line 109: perl -e 'sleep(60); kill(9, -97);' wwrappercheck-95 line 122: LC_ALL=C wwrappercheck-95 line 122: kill -KILL 973 wrappercheck-95 line 122: msg= wrappercheck-95 line 123: echo '' wrappercheck-95 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 973 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-95 line 127: echo '' wrappercheck-95 line 129: wait 973 wrappercheck-95 line 131: set -e wrappercheck-95 line 132: '[' 0 = 0 ']' wrappercheck-95 line 133: RET=0 wrappercheck-95 line 136: exit 0 wrappercheck-75 line 100: RET=0 wrappercheck-75 line 101: set -e wrappercheck-75 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-75 line 108: kill -INT -77 wrappercheck-75 line 108: kill -TERM -77 wrappercheck-75 line 108: kill -TERM 77 wrappercheck-75 line 110: KILL_PID=978 wrappercheck-75 line 115: set +e wrappercheck-75 line 116: wait 77 wrappercheck-75 line 109: perl -e 'sleep(60); kill(9, -77);' wrappercheck-75 line 117: SUBRET=143 wrappercheck-75 line 118: case $SUBRET in wrappercheck-75 line 118: SUBRET=0 wrappercheck-75 line 120: SUBRET=0 wrappercheck-75 line 121: '[' 978 ']' wwrappercheck-75 line 122: LC_ALL=C wwrappercheck-75 line 122: kill -KILL 978 wrappercheck-75 line 122: msg= wrappercheck-75 line 123: grep -q 'No such process' wrappercheck-75 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 978 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-75 line 127: echo '' wrappercheck-75 line 129: wait 978 wrappercheck-75 line 131: set -e wrappercheck-75 line 132: '[' 0 = 0 ']' wrappercheck-75 line 133: RET=0 wrappercheck-75 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=983 wrappercheck-25 line 115: set +e wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -29);' wrappercheck-25 line 116: wait 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: '[' 983 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 983 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: grep -q 'No such process' wrappercheck-25 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 983 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 983 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-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -21 wrappercheck-19 line 108: kill -TERM -21 wrappercheck-19 line 108: kill -TERM 21 wrappercheck-19 line 110: KILL_PID=988 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 21 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -21);' wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 988 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 988 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 988 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 988 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 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.TyX5lXzUqI Fri Jan 5 15:51:47 2018 UTC (+ 545.6s / 1089.8s) === cleaning up ===