runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 1.6s / 65.6s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-i386/home/edsfile/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 0.2s / 65.8s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/.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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/edsfile/data runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) === starting edsfile === runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) 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/23-edsfile, /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/23-edsfile runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/edsfile (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/edsfile) runtests.py-32145 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/edsfile; 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/edsfile' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/cache'; unset ; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsfile -- env CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_ADD_BOTH_SIDES_SERVER_IS_DUMB=1 CLIENT_TEST_SKIP= schroot -d /data/runtests/work/prebuilt-testing-i386/tests/edsfile -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 edsfile ./syncevolution ) Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsfile'] === Fri Jan 5 15:31:15 2018 UTC (+ 19.1s / 19.1s) property changed: status = acquired Fri Jan 5 15:31:16 2018 UTC (+ 0.9s / 20.0s) using jobserver Fri Jan 5 15:31:16 2018 UTC (+ 0.0s / 20.0s) === allocating 1 job slot(s) === Fri Jan 5 15:33:42 2018 UTC (+ 146.3s / 166.4s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-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 edsfile ./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 70: set -x wrappercheck-15 line 70: exec 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 edsfile ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.9MAFxiq5Xy/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: '[' 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=26 wrappercheck-19 line 73: PIDS+=26 wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 75: '[' evolution-source-registry.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' org.gnome.evolution.dataserver.Sources ']' 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 26 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 edsfile ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-72 line 16: PIDS= wrappercheck-72 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-72 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-72 line 21: DAEMON_LOG= wrappercheck-72 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-72 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-72 line 25: declare -a BACKGROUND wrappercheck-72 line 26: declare -a ENV wrappercheck-72 line 28: '[' 20 -gt 1 ']' wrappercheck-72 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 31: shift wrappercheck-72 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-72 line 53: shift wrappercheck-72 line 28: '[' 18 -gt 1 ']' wrappercheck-72 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 35: shift wrappercheck-72 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-72 line 53: shift wrappercheck-72 line 28: '[' 16 -gt 1 ']' wrappercheck-72 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 50: break wrappercheck-72 line 56: '[' 16 -gt 1 ']' wrappercheck-72 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 15 -gt 1 ']' wrappercheck-72 line 56: '[' --keep-running '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 14 -gt 1 ']' wrappercheck-72 line 56: '[' -- '!=' -- ']' wrappercheck-72 line 60: shift wrappercheck-72 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-72 line 62: '[' '' ']' wrappercheck-72 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-72 line 72: BACKGROUND_PID=74 wrappercheck-72 line 73: PIDS+=74 wrappercheck-72 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-72 line 70: set -x wrappercheck-72 line 75: '[' '' ']' wrappercheck-72 line 70: exec wrappercheck-72 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-72 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-72 line 93: kill -0 74 wrappercheck-72 line 94: set +e wrappercheck-72 line 95: '[' '' ']' wrappercheck-72 line 99: set -x wrappercheck-72 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 edsfile ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-92 line 16: PIDS= wrappercheck-92 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-92 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-92 line 21: DAEMON_LOG= wrappercheck-92 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-92 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-92 line 25: declare -a BACKGROUND wrappercheck-92 line 26: declare -a ENV wrappercheck-92 line 28: '[' 12 -gt 1 ']' wrappercheck-92 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-92 line 29: case "$1" in wrappercheck-92 line 31: shift wrappercheck-92 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-92 line 53: shift wrappercheck-92 line 28: '[' 10 -gt 1 ']' wrappercheck-92 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-92 line 29: case "$1" in wrappercheck-92 line 50: break wrappercheck-92 line 56: '[' 10 -gt 1 ']' wrappercheck-92 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-92 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-92 line 58: shift wrappercheck-92 line 56: '[' 9 -gt 1 ']' wrappercheck-92 line 56: '[' --keep-running '!=' -- ']' wrappercheck-92 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-92 line 58: shift wrappercheck-92 line 56: '[' 8 -gt 1 ']' wrappercheck-92 line 56: '[' -- '!=' -- ']' wrappercheck-92 line 60: shift wrappercheck-92 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-92 line 62: '[' '' ']' wrappercheck-92 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-92 line 72: BACKGROUND_PID=94 wrappercheck-92 line 73: PIDS+=94 wrappercheck-92 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-92 line 75: '[' '' ']' wrappercheck-92 line 84: '[' '' ']' wrappercheck-92 line 93: kill -0 94 wrappercheck-92 line 94: set +e wrappercheck-92 line 95: '[' '' ']' wrappercheck-92 line 70: set -x wrappercheck-92 line 70: exec wrappercheck-92 line 99: set -x wrappercheck-92 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-99 line 16: PIDS= wrappercheck-99 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-99 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-99 line 21: DAEMON_LOG= wrappercheck-99 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-99 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-99 line 25: declare -a BACKGROUND wrappercheck-99 line 26: declare -a ENV wrappercheck-99 line 28: '[' 5 -gt 1 ']' wrappercheck-99 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-99 line 29: case "$1" in wrappercheck-99 line 50: break wrappercheck-99 line 56: '[' 5 -gt 1 ']' wrappercheck-99 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-99 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-99 line 58: shift wrappercheck-99 line 56: '[' 4 -gt 1 ']' wrappercheck-99 line 56: '[' -- '!=' -- ']' wrappercheck-99 line 60: shift wrappercheck-99 line 62: '[' '' ']' wrappercheck-99 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-99 line 72: BACKGROUND_PID=101 wrappercheck-99 line 73: PIDS+=101 wrappercheck-99 line 75: '[' '' ']' wrappercheck-99 line 84: '[' '' ']' wrappercheck-99 line 93: kill -0 101 wrappercheck-99 line 94: set +e wrappercheck-99 line 95: '[' '' ']' wrappercheck-99 line 70: set -x wrappercheck-99 line 70: exec wrappercheck-99 line 99: set -x wrappercheck-99 line 99: /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-testing-i386/home/edsfile/.sync4j/evolution/edsfile_[12]' '/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/edsfile_[12]' '/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-[12]/peers/edsfile_[12]' '/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=edsfile_1@client-test-edsfile-1 ++ credentials edsfile_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_1 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsfile --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_1 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edsfile_1@client-test-edsfile-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/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/todo /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/memo /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 edsfile_1@client-test-edsfile-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 edsfile_1@client-test-edsfile-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 edsfile_1@client-test-edsfile-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 edsfile_1@client-test-edsfile-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=edsfile_2@client-test-edsfile-2 ++ credentials edsfile_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_2 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsfile --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_2 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edsfile_2@client-test-edsfile-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered + sources=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/todo /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/memo /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 edsfile_2@client-test-edsfile-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 edsfile_2@client-test-edsfile-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 edsfile_2@client-test-edsfile-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 edsfile_2@client-test-edsfile-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + context=client-test-fileserver + rm -rf /data/runtests/work/prebuilt-testing-i386/home/edsfile/config/syncevolution/client-test-fileserver + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_addressbook + mkdir Test_addressbook + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_addressbook2 + mkdir Test_addressbook2 + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_calendar + mkdir Test_calendar + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_calendar2 + mkdir Test_calendar2 + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_todo + mkdir Test_todo + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_todo2 + mkdir Test_todo2 + ./syncevolution --configure --daemon=no addressbook/database=Test_addressbook addressbook/databaseFormat=text/vcard addressbook/backend=file addressbook2/database=Test_addressbook2 addressbook2/databaseFormat=text/vcard addressbook2/backend=file calendar/database=Test_calendar calendar/databaseFormat=text/calendar calendar/backend=file calendar2/database=Test_calendar2 calendar2/databaseFormat=text/calendar calendar2/backend=file todo/database=Test_todo todo/databaseFormat=text/calendar todo/backend=file todo2/database=Test_todo2 todo2/databaseFormat=text/calendar todo2/backend=file @client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore [INFO] calendar: checking usability... [INFO] calendar: configuring datastore [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore [INFO] todo: checking usability... [INFO] todo: configuring datastore [INFO] todo2: checking usability... [INFO] todo2: configuring datastore + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/prebuilt-testing-i386/tests/edsfile/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsfile_1 client-edsfile-1@client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' [INFO] todo2: checking usability... [INFO] todo2: configuring datastore with sync mode 'two-way' + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/prebuilt-testing-i386/tests/edsfile/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsfile_2 client-edsfile-2@client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' [INFO] todo2: checking usability... [INFO] todo2: 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 ++ sed -e 's/.*=//' ++ echo evolution-contacts=eds_contact + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ sed -e 's/.*=//' ++ echo evolution-tasks=eds_task + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ sed -e 's/.*=//' ++ echo evolution-memos=eds_memo + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + grep Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + 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-99 line 100: RET=0 wrappercheck-99 line 101: set -e wrappercheck-99 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-99 line 108: kill -INT -101 wrappercheck-99 line 108: kill -TERM -101 wrappercheck-99 line 108: kill -TERM 101 wrappercheck-99 line 110: KILL_PID=361 wrappercheck-99 line 115: set +e wrappercheck-99 line 109: perl -e 'sleep(60); kill(9, -101);' wrappercheck-99 line 116: wait 101 wrappercheck-99 line 117: SUBRET=143 wrappercheck-99 line 118: case $SUBRET in wrappercheck-99 line 118: SUBRET=0 wrappercheck-99 line 120: SUBRET=0 wrappercheck-99 line 121: '[' 361 ']' wwrappercheck-99 line 122: LC_ALL=C wwrappercheck-99 line 122: kill -KILL 361 wrappercheck-99 line 122: msg= wrappercheck-99 line 123: echo '' wrappercheck-99 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 361 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-99 line 127: echo '' wrappercheck-99 line 129: wait 361 wrappercheck-99 line 131: set -e wrappercheck-99 line 132: '[' 0 = 0 ']' wrappercheck-99 line 133: RET=0 wrappercheck-99 line 136: exit 0 wrappercheck-92 line 100: RET=0 wrappercheck-92 line 101: set -e wrappercheck-92 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-92 line 108: kill -INT -94 wrappercheck-92 line 108: kill -TERM -94 wrappercheck-92 line 108: kill -TERM 94 wrappercheck-92 line 110: KILL_PID=366 wrappercheck-92 line 109: perl -e 'sleep(60); kill(9, -94);' wrappercheck-92 line 115: set +e wrappercheck-92 line 116: wait 94 wrappercheck-92 line 117: SUBRET=143 wrappercheck-92 line 118: case $SUBRET in wrappercheck-92 line 118: SUBRET=0 wrappercheck-92 line 120: SUBRET=0 wrappercheck-92 line 121: '[' 366 ']' wwrappercheck-92 line 122: LC_ALL=C wwrappercheck-92 line 122: kill -KILL 366 wrappercheck-92 line 122: msg= wrappercheck-92 line 123: echo '' wrappercheck-92 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 366 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-92 line 127: echo '' wrappercheck-92 line 129: wait 366 wrappercheck-92 line 131: set -e wrappercheck-92 line 132: '[' 0 = 0 ']' wrappercheck-92 line 133: RET=0 wrappercheck-92 line 136: exit 0 wrappercheck-72 line 100: RET=0 wrappercheck-72 line 101: set -e wrappercheck-72 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-72 line 108: kill -INT -74 wrappercheck-72 line 108: kill -TERM -74 wrappercheck-72 line 108: kill -TERM 74 wrappercheck-72 line 110: KILL_PID=371 wrappercheck-72 line 109: perl -e 'sleep(60); kill(9, -74);' wrappercheck-72 line 115: set +e wrappercheck-72 line 116: wait 74 wrappercheck-72 line 117: SUBRET=143 wrappercheck-72 line 118: case $SUBRET in wrappercheck-72 line 118: SUBRET=0 wrappercheck-72 line 120: SUBRET=0 wrappercheck-72 line 121: '[' 371 ']' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 371 wrappercheck-72 line 122: msg= wrappercheck-72 line 123: echo '' wrappercheck-72 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 371 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 371 wrappercheck-72 line 131: set -e wrappercheck-72 line 132: '[' 0 = 0 ']' wrappercheck-72 line 133: RET=0 wrappercheck-72 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 -26 wrappercheck-19 line 108: kill -TERM -26 wrappercheck-19 line 108: kill -TERM 26 wrappercheck-19 line 110: KILL_PID=376 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -26);' wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 26 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: '[' 376 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 376 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: 376 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 376 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=381 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 381 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 381 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: 381 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 381 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.9MAFxiq5Xy Fri Jan 5 15:33:53 2018 UTC (+ 10.6s / 176.9s) === cleaning up === runtests.py-32145 Fri Jan 5 15:33:53 2018 UTC (+ 177.0s / 242.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/edsfile; 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/edsfile' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/edsfile/cache'; unset ; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsfile -- 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=edsfile CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_ADD_BOTH_SIDES_SERVER_IS_DUMB=1 CLIENT_TEST_SKIP= CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-i386/tests/edsfile -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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 15:33:53 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsfile'] === Fri Jan 5 15:37:52 2018 UTC (+ 239.2s / 239.2s) property changed: status = acquired Fri Jan 5 15:37:52 2018 UTC (+ 0.0s / 239.2s) using jobserver Fri Jan 5 15:37:52 2018 UTC (+ 0.0s / 239.2s) === allocating 1 job slot(s) === Fri Jan 5 15:48:09 2018 UTC (+ 616.7s / 855.9s) === 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.qCfAITiDEI/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 53 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 51 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 51 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 50 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 49 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 70: set -x wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 70: exec wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 47 -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: '[' 45 -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: '[' 43 -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: '[' 41 -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: '[' 41 -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: '[' 40 -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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-74 line 16: PIDS= wrappercheck-74 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-74 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-74 line 21: DAEMON_LOG= wrappercheck-74 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-74 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-74 line 25: declare -a BACKGROUND wrappercheck-74 line 26: declare -a ENV wrappercheck-74 line 28: '[' 38 -gt 1 ']' wrappercheck-74 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-74 line 29: case "$1" in wrappercheck-74 line 31: shift wrappercheck-74 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-74 line 53: shift wrappercheck-74 line 28: '[' 36 -gt 1 ']' wrappercheck-74 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-74 line 29: case "$1" in wrappercheck-74 line 35: shift wrappercheck-74 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-74 line 53: shift wrappercheck-74 line 28: '[' 34 -gt 1 ']' wrappercheck-74 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-74 line 29: case "$1" in wrappercheck-74 line 50: break wrappercheck-74 line 56: '[' 34 -gt 1 ']' wrappercheck-74 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-74 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-74 line 58: shift wrappercheck-74 line 56: '[' 33 -gt 1 ']' wrappercheck-74 line 56: '[' --keep-running '!=' -- ']' wrappercheck-74 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-74 line 58: shift wrappercheck-74 line 56: '[' 32 -gt 1 ']' wrappercheck-74 line 56: '[' -- '!=' -- ']' wrappercheck-74 line 60: shift wrappercheck-74 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-74 line 62: '[' '' ']' wrappercheck-74 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-74 line 72: BACKGROUND_PID=76 wrappercheck-74 line 73: PIDS+=76 wrappercheck-74 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-74 line 70: set -x wrappercheck-74 line 75: '[' '' ']' wrappercheck-74 line 70: exec wrappercheck-74 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-74 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-74 line 93: kill -0 76 wrappercheck-74 line 94: set +e wrappercheck-74 line 95: '[' '' ']' wrappercheck-74 line 99: set -x wrappercheck-74 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-94 line 16: PIDS= wrappercheck-94 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-94 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-94 line 21: DAEMON_LOG= wrappercheck-94 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-94 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-94 line 25: declare -a BACKGROUND wrappercheck-94 line 26: declare -a ENV wrappercheck-94 line 28: '[' 30 -gt 1 ']' wrappercheck-94 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-94 line 29: case "$1" in wrappercheck-94 line 31: shift wrappercheck-94 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-94 line 53: shift wrappercheck-94 line 28: '[' 28 -gt 1 ']' wrappercheck-94 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-94 line 29: case "$1" in wrappercheck-94 line 50: break wrappercheck-94 line 56: '[' 28 -gt 1 ']' wrappercheck-94 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-94 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-94 line 58: shift wrappercheck-94 line 56: '[' 27 -gt 1 ']' wrappercheck-94 line 56: '[' --keep-running '!=' -- ']' wrappercheck-94 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-94 line 58: shift wrappercheck-94 line 56: '[' 26 -gt 1 ']' wrappercheck-94 line 56: '[' -- '!=' -- ']' wrappercheck-94 line 60: shift wrappercheck-94 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-94 line 62: '[' '' ']' wrappercheck-94 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-94 line 72: BACKGROUND_PID=96 wrappercheck-94 line 73: PIDS+=96 wrappercheck-94 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-94 line 75: '[' '' ']' wrappercheck-94 line 84: '[' '' ']' wrappercheck-94 line 93: kill -0 96 wrappercheck-94 line 94: set +e wrappercheck-94 line 95: '[' '' ']' wrappercheck-94 line 70: set -x wrappercheck-94 line 99: set -x wrappercheck-94 line 70: exec wrappercheck-94 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-98 line 16: PIDS= wrappercheck-98 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-98 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-98 line 21: DAEMON_LOG= wrappercheck-98 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-98 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-98 line 25: declare -a BACKGROUND wrappercheck-98 line 26: declare -a ENV wrappercheck-98 line 28: '[' 22 -gt 1 ']' wrappercheck-98 line 28: '[' VALGRIND_CMD_LOG=syncevohttp.log '!=' -- ']' wrappercheck-98 line 29: case "$1" in wrappercheck-98 line 47: ENV[${#ENV[*]}]=VALGRIND_CMD_LOG=syncevohttp.log wrappercheck-98 line 53: shift wrappercheck-98 line 28: '[' 21 -gt 1 ']' wrappercheck-98 line 28: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-98 line 29: case "$1" in wrappercheck-98 line 50: break wrappercheck-98 line 56: '[' 21 -gt 1 ']' wrappercheck-98 line 56: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 20 -gt 1 ']' wrappercheck-98 line 56: '[' /usr/libexec/syncevo-dbus-server '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/syncevo-dbus-server wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 19 -gt 1 ']' wrappercheck-98 line 56: '[' --verbosity=3 '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=--verbosity=3 wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 18 -gt 1 ']' wrappercheck-98 line 56: '[' --dbus-verbosity=1 '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=--dbus-verbosity=1 wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 17 -gt 1 ']' wrappercheck-98 line 56: '[' --stdout '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=--stdout wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 16 -gt 1 ']' wrappercheck-98 line 56: '[' --no-syslog '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=--no-syslog wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 15 -gt 1 ']' wrappercheck-98 line 56: '[' --duration=unlimited '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=--duration=unlimited wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 14 -gt 1 ']' wrappercheck-98 line 56: '[' -- '!=' -- ']' wrappercheck-98 line 60: shift wrappercheck-98 line 62: '[' '' ']' wrappercheck-98 line 66: set +x *** starting /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh as background daemon, output to stderr wrappercheck-98 line 72: BACKGROUND_PID=103 wrappercheck-98 line 73: PIDS+=103 wrappercheck-98 line 70: set -x wrappercheck-98 line 70: exec wrappercheck-98 line 75: '[' '' ']' wrappercheck-98 line 84: '[' '' ']' wrappercheck-98 line 93: kill -0 103 wrappercheck-98 line 94: set +e wrappercheck-98 line 95: '[' '' ']' wrappercheck-98 line 99: set -x wrappercheck-98 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-106 line 16: PIDS= wrappercheck-106 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-106 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-106 line 21: DAEMON_LOG= wrappercheck-106 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-106 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-106 line 25: declare -a BACKGROUND wrappercheck-106 line 26: declare -a ENV wrappercheck-106 line 28: '[' 12 -gt 1 ']' wrappercheck-106 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-106 line 29: case "$1" in wrappercheck-106 line 31: shift wrappercheck-106 line 32: DAEMON_LOG=syncevohttp.log wrappercheck-106 line 53: shift wrappercheck-106 line 28: '[' 10 -gt 1 ']' wrappercheck-106 line 28: '[' --wait-for-daemon-output '!=' -- ']' wrappercheck-106 line 29: case "$1" in wrappercheck-106 line 39: shift wrappercheck-106 line 40: WAIT_FOR_DAEMON_OUTPUT=syncevo-http:.listening.on.port.9900 wrappercheck-106 line 53: shift wrappercheck-106 line 28: '[' 8 -gt 1 ']' wrappercheck-106 line 28: '[' /usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-106 line 29: case "$1" in wrappercheck-106 line 50: break wrappercheck-106 line 56: '[' 8 -gt 1 ']' wrappercheck-106 line 56: '[' /usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-106 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/bin/syncevo-http-server wrappercheck-106 line 58: shift wrappercheck-106 line 56: '[' 7 -gt 1 ']' wrappercheck-106 line 56: '[' --debug '!=' -- ']' wrappercheck-106 line 57: BACKGROUND[${#BACKGROUND[*]}]=--debug wrappercheck-106 line 58: shift wrappercheck-106 line 56: '[' 6 -gt 1 ']' wrappercheck-106 line 56: '[' http://127.0.0.1:9900/syncevolution '!=' -- ']' wrappercheck-106 line 57: BACKGROUND[${#BACKGROUND[*]}]=http://127.0.0.1:9900/syncevolution wrappercheck-106 line 58: shift wrappercheck-106 line 56: '[' 5 -gt 1 ']' wrappercheck-106 line 56: '[' -- '!=' -- ']' wrappercheck-106 line 60: shift wrappercheck-106 line 62: '[' syncevohttp.log ']' wrappercheck-106 line 62: '[' syncevo-http:.listening.on.port.9900 ']' wwrappercheck-106 line 63: wc -l wwrappercheck-106 line 63: grep -e syncevo-http:.listening.on.port.9900 syncevohttp.log wrappercheck-106 line 63: daemonmatches=0 wrappercheck-106 line 66: set +x *** starting /usr/bin/syncevo-http-server as background daemon, output to syncevohttp.log wrappercheck-106 line 72: BACKGROUND_PID=118 wrappercheck-106 line 73: PIDS+=118 wrappercheck-106 line 75: '[' syncevohttp.log ']' wrappercheck-106 line 75: '[' syncevo-http:.listening.on.port.9900 ']' wrappercheck-106 line 76: set +x *** waiting for daemon to write 'syncevo-http:.listening.on.port.9900' into syncevohttp.log wrappercheck-106 line 70: set -x wrappercheck-106 line 70: exec wrappercheck-106 line 84: '[' '' ']' wrappercheck-106 line 93: kill -0 118 wrappercheck-106 line 94: set +e wrappercheck-106 line 95: '[' '' ']' wrappercheck-106 line 99: set -x wrappercheck-106 line 99: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-testing-i386/tests/edsfile/valgrind.p144.c%p.out ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems Client::Sync::eds_event::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (144): './client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems' (148): returned 0 ==148== Memcheck, a memory error detector ==148== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==148== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==148== Command: ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems ==148== Parent PID: 144 ==148== ==148== ==148== HEAP SUMMARY: ==148== in use at exit: 289,838 bytes in 4,101 blocks ==148== total heap usage: 106,670 allocs, 102,569 frees, 12,385,676 bytes allocated ==148== ==148== LEAK SUMMARY: ==148== definitely lost: 0 bytes in 0 blocks ==148== indirectly lost: 0 bytes in 0 blocks ==148== possibly lost: 52 bytes in 1 blocks ==148== still reachable: 127,249 bytes in 678 blocks ==148== of which reachable via heuristic: ==148== newarray : 4,712 bytes in 17 blocks ==148== suppressed: 162,537 bytes in 3,422 blocks ==148== Rerun with --leak-check=full to see details of leaked memory ==148== ==148== For counts of detected and suppressed errors, rerun with: -v ==148== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==151== Memcheck, a memory error detector ==151== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==151== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==151== Command: ./client-test Client::Sync::eds_event::testItems ==151== Parent PID: 148 ==151== ==151== ==151== HEAP SUMMARY: ==151== in use at exit: 5,745,826 bytes in 58,136 blocks ==151== total heap usage: 2,206,241 allocs, 2,148,052 frees, 220,387,183 bytes allocated ==151== ==151== LEAK SUMMARY: ==151== definitely lost: 0 bytes in 0 blocks ==151== indirectly lost: 0 bytes in 0 blocks ==151== possibly lost: 916 bytes in 5 blocks ==151== still reachable: 5,264,169 bytes in 48,559 blocks ==151== of which reachable via heuristic: ==151== newarray : 8,028 bytes in 154 blocks ==151== suppressed: 429,821 bytes in 8,901 blocks ==151== Rerun with --leak-check=full to see details of leaked memory ==151== ==151== For counts of detected and suppressed errors, rerun with: -v ==151== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==208== Memcheck, a memory error detector ==208== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==208== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==208== Command: ./client-test Client::Sync::eds_event::testItems ==208== Parent PID: 151 ==208== ==251== Memcheck, a memory error detector ==251== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==251== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==251== Command: ./client-test Client::Sync::eds_event::testItems ==251== Parent PID: 151 ==251== ==256== Memcheck, a memory error detector ==256== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==256== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==256== Command: ./client-test Client::Sync::eds_contact::testItems ==256== Parent PID: 148 ==256== ==256== ==256== HEAP SUMMARY: ==256== in use at exit: 5,772,704 bytes in 58,342 blocks ==256== total heap usage: 2,181,287 allocs, 2,122,892 frees, 221,263,692 bytes allocated ==256== ==256== LEAK SUMMARY: ==256== definitely lost: 0 bytes in 0 blocks ==256== indirectly lost: 0 bytes in 0 blocks ==256== possibly lost: 916 bytes in 5 blocks ==256== still reachable: 5,305,948 bytes in 48,537 blocks ==256== of which reachable via heuristic: ==256== newarray : 8,008 bytes in 153 blocks ==256== suppressed: 403,376 bytes in 9,004 blocks ==256== Rerun with --leak-check=full to see details of leaked memory ==256== ==256== For counts of detected and suppressed errors, rerun with: -v ==256== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==312== Memcheck, a memory error detector ==312== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==312== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==312== Command: ./client-test Client::Sync::eds_contact::testItems ==312== Parent PID: 256 ==312== ==357== Memcheck, a memory error detector ==357== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==357== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==357== Command: ./client-test Client::Sync::eds_contact::testItems ==357== Parent PID: 256 ==357== valgrindcheck: ./client-test Client::Sync::eds_event::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-106 line 100: RET=0 wrappercheck-106 line 101: set -e wrappercheck-106 line 107: set +x *** killing and waiting for /usr/bin/syncevo-http-server wrappercheck-106 line 108: kill -INT -118 wrappercheck-106 line 108: kill -TERM -118 wrappercheck-106 line 108: kill -TERM 118 wrappercheck-106 line 110: KILL_PID=461 wrappercheck-106 line 115: set +e wrappercheck-106 line 116: wait 118 wrappercheck-106 line 109: perl -e 'sleep(60); kill(9, -118);' wrappercheck-106 line 117: SUBRET=143 wrappercheck-106 line 118: case $SUBRET in wrappercheck-106 line 118: SUBRET=0 wrappercheck-106 line 120: SUBRET=0 wrappercheck-106 line 121: '[' 461 ']' wwrappercheck-106 line 122: LC_ALL=C wwrappercheck-106 line 122: kill -KILL 461 wrappercheck-106 line 122: msg= wrappercheck-106 line 123: echo '' wrappercheck-106 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 461 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-106 line 127: echo '' wrappercheck-106 line 129: wait 461 wrappercheck-106 line 131: set -e wrappercheck-106 line 132: '[' 0 = 0 ']' wrappercheck-106 line 133: RET=0 wrappercheck-106 line 136: exit 0 wrappercheck-98 line 100: RET=0 wrappercheck-98 line 101: set -e wrappercheck-98 line 107: set +x *** killing and waiting for /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-98 line 108: kill -INT -103 wrappercheck-98 line 108: kill -TERM -103 wrappercheck-98 line 108: kill -TERM 103 wrappercheck-98 line 110: KILL_PID=466 wrappercheck-98 line 115: set +e wrappercheck-98 line 116: wait 103 wrappercheck-98 line 109: perl -e 'sleep(60); kill(9, -103);' wrappercheck-98 line 117: SUBRET=143 wrappercheck-98 line 118: case $SUBRET in wrappercheck-98 line 118: SUBRET=0 wrappercheck-98 line 120: SUBRET=0 wrappercheck-98 line 121: '[' 466 ']' wwrappercheck-98 line 122: LC_ALL=C wwrappercheck-98 line 122: kill -KILL 466 wrappercheck-98 line 122: msg= wrappercheck-98 line 123: echo '' wrappercheck-98 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 466 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-98 line 127: echo '' wrappercheck-98 line 129: wait 466 wrappercheck-98 line 131: set -e wrappercheck-98 line 132: '[' 0 = 0 ']' wrappercheck-98 line 133: RET=0 wrappercheck-98 line 136: exit 0 wrappercheck-94 line 100: RET=0 wrappercheck-94 line 101: set -e wrappercheck-94 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-94 line 108: kill -INT -96 wrappercheck-94 line 108: kill -TERM -96 wrappercheck-94 line 108: kill -TERM 96 wrappercheck-94 line 110: KILL_PID=472 wrappercheck-94 line 115: set +e wrappercheck-94 line 116: wait 96 wrappercheck-94 line 109: perl -e 'sleep(60); kill(9, -96);' wrappercheck-94 line 117: SUBRET=143 wrappercheck-94 line 118: case $SUBRET in wrappercheck-94 line 118: SUBRET=0 wrappercheck-94 line 120: SUBRET=0 wrappercheck-94 line 121: '[' 472 ']' wwrappercheck-94 line 122: LC_ALL=C wwrappercheck-94 line 122: kill -KILL 472 wrappercheck-94 line 122: msg= wrappercheck-94 line 123: echo '' wrappercheck-94 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 472 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-94 line 127: echo '' wrappercheck-94 line 129: wait 472 wrappercheck-94 line 131: set -e wrappercheck-94 line 132: '[' 0 = 0 ']' wrappercheck-94 line 133: RET=0 wrappercheck-94 line 136: exit 0 wrappercheck-74 line 100: RET=0 wrappercheck-74 line 101: set -e wrappercheck-74 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-74 line 108: kill -INT -76 wrappercheck-74 line 108: kill -TERM -76 wrappercheck-74 line 108: kill -TERM 76 wrappercheck-74 line 110: KILL_PID=477 wrappercheck-74 line 115: set +e wrappercheck-74 line 116: wait 76 wrappercheck-74 line 117: SUBRET=143 wrappercheck-74 line 118: case $SUBRET in wrappercheck-74 line 109: perl -e 'sleep(60); kill(9, -76);' wrappercheck-74 line 118: SUBRET=0 wrappercheck-74 line 120: SUBRET=0 wrappercheck-74 line 121: '[' 477 ']' wwrappercheck-74 line 122: LC_ALL=C wwrappercheck-74 line 122: kill -KILL 477 wrappercheck-74 line 122: msg= wrappercheck-74 line 123: echo '' wrappercheck-74 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 477 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-74 line 127: echo '' wrappercheck-74 line 129: wait 477 wrappercheck-74 line 131: set -e wrappercheck-74 line 132: '[' 0 = 0 ']' wrappercheck-74 line 133: RET=0 wrappercheck-74 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=482 wrappercheck-25 line 115: set +e 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: '[' 482 ']' wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -29);' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 482 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 482 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 482 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=487 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 22 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 487 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 487 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: echo '' wrappercheck-18 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 487 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 487 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 0 = 0 ']' wrappercheck-18 line 133: RET=0 wrappercheck-18 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.qCfAITiDEI Fri Jan 5 15:52:48 2018 UTC (+ 279.0s / 1134.8s) === cleaning up ===