runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 4.0s / 112.4s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 0.2s / 112.6s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/prebuilt-testing-amd64/home/apple/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/apple/data runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) === starting apple === runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/20-apple, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/20-apple runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/apple (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/apple) runtests.py-2282 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/apple; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r apple -- env 'CLIENT_TEST_WEBDAV=apple caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_FAILURES=Client::Sync::eds_contact::testOneWayFromLocal,Client::Sync::eds_contact::testOneWayFromClient,Client::Sync::eds_task::testOneWayFromLocal,Client::Sync::eds_task::testOneWayFromClient, CLIENT_TEST_NO_TIMEZONES=1 CLIENT_TEST_MODE=server schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/apple -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution ) Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['apple'] === Fri Jan 5 15:33:41 2018 UTC (+ 153.9s / 153.9s) property changed: status = acquired Fri Jan 5 15:33:41 2018 UTC (+ 0.0s / 153.9s) using jobserver Fri Jan 5 15:33:41 2018 UTC (+ 0.0s / 153.9s) === allocating 1 job slot(s) === Fri Jan 5 15:33:52 2018 UTC (+ 11.3s / 165.2s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 35 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 33 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 33 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 32 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 31 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 70: set -x wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' 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 apple ./syncevolution gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-20 line 16: PIDS= wrappercheck-20 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-20 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-20 line 21: DAEMON_LOG= wrappercheck-20 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-20 line 23: WAIT_FOR_DBUS_DAEMON= ** Message: couldn't access control socket: /tmp/tmp.w0NPhSGDVy/keyring/control: No such file or directory wrappercheck-20 line 25: declare -a BACKGROUND wrappercheck-20 line 26: declare -a ENV wrappercheck-20 line 28: '[' 29 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 31: shift wrappercheck-20 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 27 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 43: shift wrappercheck-20 line 44: DAEMON_SLEEP=5 wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 25 -gt 1 ']' wrappercheck-20 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 35: shift wrappercheck-20 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 23 -gt 1 ']' wrappercheck-20 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 50: break wrappercheck-20 line 56: '[' 23 -gt 1 ']' wrappercheck-20 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-20 line 58: shift wrappercheck-20 line 56: '[' 22 -gt 1 ']' wrappercheck-20 line 56: '[' -- '!=' -- ']' wrappercheck-20 line 60: shift wrappercheck-20 line 62: '[' evolution-source-registry.log ']' wrappercheck-20 line 62: '[' '' ']' wrappercheck-20 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-20 line 72: BACKGROUND_PID=23 wrappercheck-20 line 70: set -x wrappercheck-20 line 73: PIDS+=23 wrappercheck-20 line 70: exec wrappercheck-20 line 75: '[' evolution-source-registry.log ']' wrappercheck-20 line 75: '[' '' ']' wrappercheck-20 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-20 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-20 line 93: kill -0 23 wrappercheck-20 line 94: set +e wrappercheck-20 line 95: '[' 5 ']' wrappercheck-20 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-20 line 97: sleep 5 wrappercheck-20 line 99: set -x wrappercheck-20 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 apple ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-80 line 16: PIDS= wrappercheck-80 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-80 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-80 line 21: DAEMON_LOG= wrappercheck-80 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-80 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-80 line 25: declare -a BACKGROUND wrappercheck-80 line 26: declare -a ENV wrappercheck-80 line 28: '[' 20 -gt 1 ']' wrappercheck-80 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 31: shift wrappercheck-80 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 18 -gt 1 ']' wrappercheck-80 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 35: shift wrappercheck-80 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 16 -gt 1 ']' wrappercheck-80 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 50: break wrappercheck-80 line 56: '[' 16 -gt 1 ']' wrappercheck-80 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 15 -gt 1 ']' wrappercheck-80 line 56: '[' --keep-running '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 14 -gt 1 ']' wrappercheck-80 line 56: '[' -- '!=' -- ']' wrappercheck-80 line 60: shift wrappercheck-80 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 62: '[' '' ']' wrappercheck-80 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-80 line 72: BACKGROUND_PID=82 wrappercheck-80 line 73: PIDS+=82 wrappercheck-80 line 70: set -x wrappercheck-80 line 70: exec wrappercheck-80 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 75: '[' '' ']' wrappercheck-80 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-80 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-80 line 93: kill -0 82 wrappercheck-80 line 94: set +e wrappercheck-80 line 95: '[' '' ']' wrappercheck-80 line 99: set -x wrappercheck-80 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 apple ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-100 line 16: PIDS= wrappercheck-100 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-100 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-100 line 21: DAEMON_LOG= wrappercheck-100 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-100 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-100 line 25: declare -a BACKGROUND wrappercheck-100 line 26: declare -a ENV wrappercheck-100 line 28: '[' 12 -gt 1 ']' wrappercheck-100 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 31: shift wrappercheck-100 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-100 line 53: shift wrappercheck-100 line 28: '[' 10 -gt 1 ']' wrappercheck-100 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 50: break wrappercheck-100 line 56: '[' 10 -gt 1 ']' wrappercheck-100 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 9 -gt 1 ']' wrappercheck-100 line 56: '[' --keep-running '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 8 -gt 1 ']' wrappercheck-100 line 56: '[' -- '!=' -- ']' wrappercheck-100 line 60: shift wrappercheck-100 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 62: '[' '' ']' wrappercheck-100 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-100 line 72: BACKGROUND_PID=102 wrappercheck-100 line 73: PIDS+=102 wrappercheck-100 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 75: '[' '' ']' wrappercheck-100 line 84: '[' '' ']' wrappercheck-100 line 93: kill -0 102 wrappercheck-100 line 94: set +e wrappercheck-100 line 95: '[' '' ']' wrappercheck-100 line 70: set -x wrappercheck-100 line 99: set -x wrappercheck-100 line 70: exec wrappercheck-100 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-104 line 16: PIDS= wrappercheck-104 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-104 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-104 line 21: DAEMON_LOG= wrappercheck-104 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-104 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-104 line 25: declare -a BACKGROUND wrappercheck-104 line 26: declare -a ENV wrappercheck-104 line 28: '[' 5 -gt 1 ']' wrappercheck-104 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-104 line 29: case "$1" in wrappercheck-104 line 50: break wrappercheck-104 line 56: '[' 5 -gt 1 ']' wrappercheck-104 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-104 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-104 line 58: shift wrappercheck-104 line 56: '[' 4 -gt 1 ']' wrappercheck-104 line 56: '[' -- '!=' -- ']' wrappercheck-104 line 60: shift wrappercheck-104 line 62: '[' '' ']' wrappercheck-104 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-104 line 72: BACKGROUND_PID=109 wrappercheck-104 line 73: PIDS+=109 wrappercheck-104 line 70: set -x wrappercheck-104 line 75: '[' '' ']' wrappercheck-104 line 70: exec wrappercheck-104 line 84: '[' '' ']' wrappercheck-104 line 93: kill -0 109 wrappercheck-104 line 94: set +e wrappercheck-104 line 95: '[' '' ']' wrappercheck-104 line 99: set -x wrappercheck-104 line 99: /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-testing-amd64/home/apple/.sync4j/evolution/apple_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/apple_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-[12]/peers/apple_[12]' '/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=apple_1@client-test-apple-1 ++ credentials apple_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template apple --template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 apple_1@client-test-apple-1 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 apple_1@client-test-apple-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 apple_1@client-test-apple-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 apple_1@client-test-apple-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 apple_1@client-test-apple-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=user01 databasePassword=user01 sslverifyhost=0 sslverifyserver=0 apple_caldav/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/calendar/ apple_caldavtodo/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/tasks/ apple_carddav/database=http://127.0.0.1:8008/addressbooks/__uids__/10000000-0000-0000-0000-000000000001/addressbook/ apple_caldav/backend=caldav apple_caldavtodo/backend=caldavtodo apple_carddav/backend=carddav apple_1@client-test-apple-1 apple_caldav apple_caldavtodo apple_carddav + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=apple_2@client-test-apple-2 ++ credentials apple_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav' + ./syncevolution --daemon=no --configure --template apple --template SyncEvolution_Client username= password= syncURL=local://@client-test-apple calendar/uri=caldav todo/uri=caldavtodo addressbook/uri=carddav --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 apple_2@client-test-apple-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' + sources=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 apple_2@client-test-apple-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 apple_2@client-test-apple-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 apple_2@client-test-apple-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 apple_2@client-test-apple-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + ./syncevolution --configure --daemon=no databaseUser=user01 databasePassword=user01 sslverifyhost=0 sslverifyserver=0 apple_caldav/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/calendar/ apple_caldavtodo/database=http://127.0.0.1:8008/calendars/__uids__/10000000-0000-0000-0000-000000000001/tasks/ apple_carddav/database=http://127.0.0.1:8008/addressbooks/__uids__/10000000-0000-0000-0000-000000000001/addressbook/ apple_caldav/backend=caldav apple_caldavtodo/backend=caldavtodo apple_carddav/backend=carddav apple_2@client-test-apple-2 apple_caldav apple_caldavtodo apple_carddav + case $TEST in + rm -rf /data/runtests/work/prebuilt-testing-amd64/home/apple/config/syncevolution/client-test-apple + ./syncevolution --configure --daemon=no useProxy=0 loglevel=4 sslverifyhost=0 sslverifyserver=0 syncURL=http://127.0.0.1:8008/ printChanges=0 dumpData=0 username=user01 password=user01 caldav/backend=caldav caldavtodo/backend=caldavtodo carddav/backend=carddav target-config@client-test-apple caldav caldavtodo carddav [INFO] caldav: configuring datastore with sync mode 'two-way' [INFO] caldavtodo: configuring datastore with sync mode 'two-way' [INFO] carddav: configuring datastore with sync mode 'two-way' + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ sed -e 's/.*=//' ++ echo evolution-memos=eds_memo + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + 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-104 line 100: RET=0 wrappercheck-104 line 101: set -e wrappercheck-104 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-104 line 108: kill -INT -109 wrappercheck-104 line 108: kill -TERM -109 wrappercheck-104 line 108: kill -TERM 109 wrappercheck-104 line 110: KILL_PID=359 wrappercheck-104 line 115: set +e wrappercheck-104 line 116: wait 109 wrappercheck-104 line 117: SUBRET=143 wrappercheck-104 line 118: case $SUBRET in wrappercheck-104 line 118: SUBRET=0 wrappercheck-104 line 120: SUBRET=0 wrappercheck-104 line 121: '[' 359 ']' wwrappercheck-104 line 122: LC_ALL=C wwrappercheck-104 line 122: kill -KILL 359 wrappercheck-104 line 122: msg= wrappercheck-104 line 123: echo '' wrappercheck-104 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 359 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-104 line 127: echo '' wrappercheck-104 line 129: wait 359 wrappercheck-104 line 131: set -e wrappercheck-104 line 132: '[' 0 = 0 ']' wrappercheck-104 line 133: RET=0 wrappercheck-104 line 136: exit 0 wrappercheck-100 line 100: RET=0 wrappercheck-100 line 101: set -e wrappercheck-100 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 108: kill -INT -102 wrappercheck-100 line 108: kill -TERM -102 wrappercheck-100 line 108: kill -TERM 102 wrappercheck-100 line 110: KILL_PID=364 wrappercheck-100 line 115: set +e wrappercheck-100 line 116: wait 102 wrappercheck-100 line 117: SUBRET=143 wrappercheck-100 line 118: case $SUBRET in wrappercheck-100 line 118: SUBRET=0 wrappercheck-100 line 120: SUBRET=0 wrappercheck-100 line 121: '[' 364 ']' wrappercheck-100 line 109: perl -e 'sleep(60); kill(9, -102);' wwrappercheck-100 line 122: LC_ALL=C wwrappercheck-100 line 122: kill -KILL 364 wrappercheck-100 line 122: msg= wrappercheck-100 line 123: grep -q 'No such process' wrappercheck-100 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 364 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-100 line 127: echo '' wrappercheck-100 line 129: wait 364 wrappercheck-100 line 131: set -e wrappercheck-100 line 132: '[' 0 = 0 ']' wrappercheck-100 line 133: RET=0 wrappercheck-100 line 136: exit 0 wrappercheck-80 line 100: RET=0 wrappercheck-80 line 101: set -e wrappercheck-80 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 108: kill -INT -82 wrappercheck-80 line 108: kill -TERM -82 wrappercheck-80 line 108: kill -TERM 82 wrappercheck-80 line 110: KILL_PID=369 wrappercheck-80 line 109: perl -e 'sleep(60); kill(9, -82);' wrappercheck-80 line 115: set +e wrappercheck-80 line 116: wait 82 wrappercheck-80 line 117: SUBRET=143 wrappercheck-80 line 118: case $SUBRET in wrappercheck-80 line 118: SUBRET=0 wrappercheck-80 line 120: SUBRET=0 wrappercheck-80 line 121: '[' 369 ']' wwrappercheck-80 line 122: LC_ALL=C wwrappercheck-80 line 122: kill -KILL 369 wrappercheck-80 line 122: msg= wrappercheck-80 line 123: echo '' wrappercheck-80 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 369 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-80 line 127: echo '' wrappercheck-80 line 129: wait 369 wrappercheck-80 line 131: set -e wrappercheck-80 line 132: '[' 0 = 0 ']' wrappercheck-80 line 133: RET=0 wrappercheck-80 line 136: exit 0 wrappercheck-20 line 100: RET=0 wrappercheck-20 line 101: set -e wrappercheck-20 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-20 line 108: kill -INT -23 wrappercheck-20 line 108: kill -TERM -23 wrappercheck-20 line 108: kill -TERM 23 wrappercheck-20 line 110: KILL_PID=374 wrappercheck-20 line 115: set +e wrappercheck-20 line 116: wait 23 wrappercheck-20 line 117: SUBRET=143 wrappercheck-20 line 109: perl -e 'sleep(60); kill(9, -23);' wrappercheck-20 line 118: case $SUBRET in wrappercheck-20 line 118: SUBRET=0 wrappercheck-20 line 120: SUBRET=0 wrappercheck-20 line 121: '[' 374 ']' wwrappercheck-20 line 122: LC_ALL=C wwrappercheck-20 line 122: kill -KILL 374 wrappercheck-20 line 122: msg= wrappercheck-20 line 123: grep -q 'No such process' wrappercheck-20 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 374 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-20 line 127: echo '' wrappercheck-20 line 129: wait 374 wrappercheck-20 line 131: set -e wrappercheck-20 line 132: '[' 0 = 0 ']' wrappercheck-20 line 133: RET=0 wrappercheck-20 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=379 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: '[' 379 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 379 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: grep -q 'No such process' wrappercheck-15 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 379 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 379 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.w0NPhSGDVy Fri Jan 5 15:34:03 2018 UTC (+ 10.4s / 175.5s) === cleaning up === runtests.py-2282 Fri Jan 5 15:34:03 2018 UTC (+ 175.6s / 288.2s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/apple; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/apple/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r apple -- 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=apple CLIENT_TEST_SOURCES=apple_caldav,apple_caldavtodo,apple_carddav,eds_event,eds_task,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=2400 'CLIENT_TEST_WEBDAV=apple caldav caldavtodo carddav' CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_FAILURES=Client::Sync::eds_contact::testOneWayFromLocal,Client::Sync::eds_contact::testOneWayFromClient,Client::Sync::eds_task::testOneWayFromLocal,Client::Sync::eds_task::testOneWayFromClient, CLIENT_TEST_NO_TIMEZONES=1 CLIENT_TEST_MODE=server CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/apple -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ) Fri Jan 5 15:34:03 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['apple'] === Fri Jan 5 16:07:06 2018 UTC (+ 1983.0s / 1983.0s) property changed: status = acquired Fri Jan 5 16:07:06 2018 UTC (+ 0.0s / 1983.0s) using jobserver Fri Jan 5 16:07:06 2018 UTC (+ 0.0s / 1983.0s) === allocating 1 job slot(s) === Fri Jan 5 16:15:40 2018 UTC (+ 514.2s / 2497.3s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.MRo1F9ycct/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: '[' 42 -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: '[' 40 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 40 -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: '[' 39 -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: '[' 38 -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 70: set -x wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 70: exec wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 36 -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: '[' 34 -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: '[' 32 -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: '[' 30 -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: '[' 30 -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: '[' 29 -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=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 70: set -x wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 70: exec wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 27 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 25 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 23 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 23 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 22 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 21 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 70: exec wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 19 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 17 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 17 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 16 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 15 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-testing-amd64/tests/apple/valgrind.p107.c%p.out ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems Client::Source::apple_caldav::testChanges okay sess: Destroying session. Client::Source::apple_caldav::testImport okay sess: Destroying session. Client::Source::apple_caldavtodo::testChanges okay sess: Destroying session. Client::Source::apple_caldavtodo::testImport okay sess: Destroying session. Client::Source::apple_carddav::testChanges okay sess: Destroying session. Client::Source::apple_carddav::testImport okay sess: Destroying session. Client::Sync::eds_event::testItems okay Client::Sync::eds_task::testItems okay Client::Sync::eds_contact::testItems okay OKvalgrindcheck (107): './client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems' (111): returned 0 ==111== Memcheck, a memory error detector ==111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==111== Command: ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems ==111== Parent PID: 107 ==111== ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 521,169 bytes in 5,301 blocks ==111== total heap usage: 155,828 allocs, 150,474 frees, 23,124,240 bytes allocated ==111== ==111== LEAK SUMMARY: ==111== definitely lost: 0 bytes in 0 blocks ==111== indirectly lost: 0 bytes in 0 blocks ==111== possibly lost: 960 bytes in 3 blocks ==111== still reachable: 236,789 bytes in 934 blocks ==111== of which reachable via heuristic: ==111== length64 : 1,032 bytes in 18 blocks ==111== newarray : 5,976 bytes in 28 blocks ==111== suppressed: 271,900 bytes in 4,280 blocks ==111== Rerun with --leak-check=full to see details of leaked memory ==111== ==111== For counts of detected and suppressed errors, rerun with: -v ==111== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test Client::Source::apple_caldav::testChanges ==122== Parent PID: 111 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 713,293 bytes in 6,102 blocks ==122== total heap usage: 453,502 allocs, 447,309 frees, 63,024,118 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 1,392 bytes in 4 blocks ==122== still reachable: 428,433 bytes in 1,729 blocks ==122== of which reachable via heuristic: ==122== length64 : 1,032 bytes in 18 blocks ==122== newarray : 5,976 bytes in 28 blocks ==122== suppressed: 271,948 bytes in 4,285 blocks ==122== Rerun with --leak-check=full to see details of leaked memory ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==126== Memcheck, a memory error detector ==126== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==126== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==126== Command: ./client-test Client::Source::apple_caldav::testImport ==126== Parent PID: 111 ==126== ==126== ==126== HEAP SUMMARY: ==126== in use at exit: 691,721 bytes in 6,017 blocks ==126== total heap usage: 204,210 allocs, 198,136 frees, 34,522,979 bytes allocated ==126== ==126== LEAK SUMMARY: ==126== definitely lost: 0 bytes in 0 blocks ==126== indirectly lost: 0 bytes in 0 blocks ==126== possibly lost: 1,392 bytes in 4 blocks ==126== still reachable: 406,929 bytes in 1,645 blocks ==126== of which reachable via heuristic: ==126== length64 : 1,032 bytes in 18 blocks ==126== newarray : 5,976 bytes in 28 blocks ==126== suppressed: 271,880 bytes in 4,284 blocks ==126== Rerun with --leak-check=full to see details of leaked memory ==126== ==126== For counts of detected and suppressed errors, rerun with: -v ==126== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==130== Memcheck, a memory error detector ==130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==130== Command: ./client-test Client::Source::apple_caldav::testImport ==130== Parent PID: 126 ==130== ==138== Memcheck, a memory error detector ==138== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==138== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==138== Command: ./client-test Client::Source::apple_caldavtodo::testChanges ==138== Parent PID: 111 ==138== ==138== ==138== HEAP SUMMARY: ==138== in use at exit: 522,615 bytes in 5,327 blocks ==138== total heap usage: 429,411 allocs, 423,993 frees, 50,874,597 bytes allocated ==138== ==138== LEAK SUMMARY: ==138== definitely lost: 0 bytes in 0 blocks ==138== indirectly lost: 0 bytes in 0 blocks ==138== possibly lost: 960 bytes in 3 blocks ==138== still reachable: 238,243 bytes in 957 blocks ==138== of which reachable via heuristic: ==138== length64 : 1,032 bytes in 18 blocks ==138== newarray : 5,976 bytes in 28 blocks ==138== suppressed: 271,892 bytes in 4,283 blocks ==138== Rerun with --leak-check=full to see details of leaked memory ==138== ==138== For counts of detected and suppressed errors, rerun with: -v ==138== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==142== Memcheck, a memory error detector ==142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==142== Command: ./client-test Client::Source::apple_caldavtodo::testImport ==142== Parent PID: 111 ==142== ==142== ==142== HEAP SUMMARY: ==142== in use at exit: 525,207 bytes in 5,332 blocks ==142== total heap usage: 154,642 allocs, 149,253 frees, 22,478,302 bytes allocated ==142== ==142== LEAK SUMMARY: ==142== definitely lost: 0 bytes in 0 blocks ==142== indirectly lost: 0 bytes in 0 blocks ==142== possibly lost: 1,392 bytes in 4 blocks ==142== still reachable: 240,347 bytes in 959 blocks ==142== of which reachable via heuristic: ==142== length64 : 1,032 bytes in 18 blocks ==142== newarray : 5,976 bytes in 28 blocks ==142== suppressed: 271,948 bytes in 4,285 blocks ==142== Rerun with --leak-check=full to see details of leaked memory ==142== ==142== For counts of detected and suppressed errors, rerun with: -v ==142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==146== Memcheck, a memory error detector ==146== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==146== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==146== Command: ./client-test Client::Source::apple_caldavtodo::testImport ==146== Parent PID: 142 ==146== ==154== Memcheck, a memory error detector ==154== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==154== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==154== Command: ./client-test Client::Source::apple_carddav::testChanges ==154== Parent PID: 111 ==154== ==154== ==154== HEAP SUMMARY: ==154== in use at exit: 522,623 bytes in 5,327 blocks ==154== total heap usage: 439,679 allocs, 434,261 frees, 60,466,381 bytes allocated ==154== ==154== LEAK SUMMARY: ==154== definitely lost: 0 bytes in 0 blocks ==154== indirectly lost: 0 bytes in 0 blocks ==154== possibly lost: 960 bytes in 3 blocks ==154== still reachable: 238,243 bytes in 957 blocks ==154== of which reachable via heuristic: ==154== length64 : 1,032 bytes in 18 blocks ==154== newarray : 5,976 bytes in 28 blocks ==154== suppressed: 271,900 bytes in 4,283 blocks ==154== Rerun with --leak-check=full to see details of leaked memory ==154== ==154== For counts of detected and suppressed errors, rerun with: -v ==154== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==158== Memcheck, a memory error detector ==158== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==158== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==158== Command: ./client-test Client::Source::apple_carddav::testImport ==158== Parent PID: 111 ==158== ==158== ==158== HEAP SUMMARY: ==158== in use at exit: 525,231 bytes in 5,332 blocks ==158== total heap usage: 195,672 allocs, 190,283 frees, 31,593,759 bytes allocated ==158== ==158== LEAK SUMMARY: ==158== definitely lost: 0 bytes in 0 blocks ==158== indirectly lost: 0 bytes in 0 blocks ==158== possibly lost: 1,392 bytes in 4 blocks ==158== still reachable: 240,347 bytes in 959 blocks ==158== of which reachable via heuristic: ==158== length64 : 1,032 bytes in 18 blocks ==158== newarray : 5,976 bytes in 28 blocks ==158== suppressed: 271,972 bytes in 4,285 blocks ==158== Rerun with --leak-check=full to see details of leaked memory ==158== ==158== For counts of detected and suppressed errors, rerun with: -v ==158== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==162== Memcheck, a memory error detector ==162== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==162== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==162== Command: ./client-test Client::Source::apple_carddav::testImport ==162== Parent PID: 158 ==162== ==170== Memcheck, a memory error detector ==170== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==170== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==170== Command: ./client-test Client::Sync::eds_event::testItems ==170== Parent PID: 111 ==170== ==170== ==170== HEAP SUMMARY: ==170== in use at exit: 3,056,324 bytes in 30,318 blocks ==170== total heap usage: 2,213,359 allocs, 2,182,984 frees, 232,732,502 bytes allocated ==170== ==170== LEAK SUMMARY: ==170== definitely lost: 0 bytes in 0 blocks ==170== indirectly lost: 0 bytes in 0 blocks ==170== possibly lost: 1,392 bytes in 4 blocks ==170== still reachable: 2,407,269 bytes in 21,819 blocks ==170== of which reachable via heuristic: ==170== length64 : 5,120 bytes in 80 blocks ==170== newarray : 6,312 bytes in 49 blocks ==170== suppressed: 577,567 bytes in 7,963 blocks ==170== Rerun with --leak-check=full to see details of leaked memory ==170== ==170== For counts of detected and suppressed errors, rerun with: -v ==170== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==200== Memcheck, a memory error detector ==200== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==200== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==200== Command: /usr/libexec/syncevo-local-sync ==200== Parent PID: 170 ==200== ==200== ==200== HEAP SUMMARY: ==200== in use at exit: 2,743,187 bytes in 25,952 blocks ==200== total heap usage: 441,213 allocs, 415,261 frees, 56,403,070 bytes allocated ==200== ==200== LEAK SUMMARY: ==200== definitely lost: 0 bytes in 0 blocks ==200== indirectly lost: 0 bytes in 0 blocks ==200== possibly lost: 528 bytes in 2 blocks ==200== still reachable: 2,481,931 bytes in 21,919 blocks ==200== of which reachable via heuristic: ==200== stdstring : 43 bytes in 1 blocks ==200== length64 : 592 bytes in 10 blocks ==200== newarray : 5,976 bytes in 28 blocks ==200== suppressed: 253,616 bytes in 3,975 blocks ==200== Rerun with --leak-check=full to see details of leaked memory ==200== ==200== For counts of detected and suppressed errors, rerun with: -v ==200== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==216== Memcheck, a memory error detector ==216== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==216== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==216== Command: /usr/libexec/syncevo-local-sync ==216== Parent PID: 170 ==216== ==216== ==216== HEAP SUMMARY: ==216== in use at exit: 2,714,771 bytes in 25,841 blocks ==216== total heap usage: 305,686 allocs, 279,845 frees, 40,796,404 bytes allocated ==216== ==216== LEAK SUMMARY: ==216== definitely lost: 0 bytes in 0 blocks ==216== indirectly lost: 0 bytes in 0 blocks ==216== possibly lost: 528 bytes in 2 blocks ==216== still reachable: 2,453,515 bytes in 21,808 blocks ==216== of which reachable via heuristic: ==216== stdstring : 43 bytes in 1 blocks ==216== length64 : 592 bytes in 10 blocks ==216== newarray : 5,976 bytes in 28 blocks ==216== suppressed: 253,616 bytes in 3,975 blocks ==216== Rerun with --leak-check=full to see details of leaked memory ==216== ==216== For counts of detected and suppressed errors, rerun with: -v ==216== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==242== Memcheck, a memory error detector ==242== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==242== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==242== Command: ./client-test Client::Sync::eds_event::testItems ==242== Parent PID: 170 ==242== ==250== Memcheck, a memory error detector ==250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==250== Command: /usr/libexec/syncevo-local-sync ==250== Parent PID: 170 ==250== ==250== ==250== HEAP SUMMARY: ==250== in use at exit: 2,660,475 bytes in 25,706 blocks ==250== total heap usage: 496,391 allocs, 470,685 frees, 56,508,419 bytes allocated ==250== ==250== LEAK SUMMARY: ==250== definitely lost: 0 bytes in 0 blocks ==250== indirectly lost: 0 bytes in 0 blocks ==250== possibly lost: 528 bytes in 2 blocks ==250== still reachable: 2,399,203 bytes in 21,673 blocks ==250== of which reachable via heuristic: ==250== stdstring : 43 bytes in 1 blocks ==250== length64 : 592 bytes in 10 blocks ==250== newarray : 5,976 bytes in 28 blocks ==250== suppressed: 253,632 bytes in 3,975 blocks ==250== Rerun with --leak-check=full to see details of leaked memory ==250== ==250== For counts of detected and suppressed errors, rerun with: -v ==250== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==258== Memcheck, a memory error detector ==258== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==258== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==258== Command: /usr/libexec/syncevo-local-sync ==258== Parent PID: 170 ==258== ==258== ==258== HEAP SUMMARY: ==258== in use at exit: 2,743,179 bytes in 25,952 blocks ==258== total heap usage: 390,080 allocs, 364,128 frees, 47,865,709 bytes allocated ==258== ==258== LEAK SUMMARY: ==258== definitely lost: 0 bytes in 0 blocks ==258== indirectly lost: 0 bytes in 0 blocks ==258== possibly lost: 528 bytes in 2 blocks ==258== still reachable: 2,481,931 bytes in 21,919 blocks ==258== of which reachable via heuristic: ==258== stdstring : 43 bytes in 1 blocks ==258== length64 : 592 bytes in 10 blocks ==258== newarray : 5,976 bytes in 28 blocks ==258== suppressed: 253,608 bytes in 3,975 blocks ==258== Rerun with --leak-check=full to see details of leaked memory ==258== ==258== For counts of detected and suppressed errors, rerun with: -v ==258== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==279== Memcheck, a memory error detector ==279== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==279== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==279== Command: ./client-test Client::Sync::eds_event::testItems ==279== Parent PID: 170 ==279== ==283== Memcheck, a memory error detector ==283== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==283== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==283== Command: ./client-test Client::Sync::eds_task::testItems ==283== Parent PID: 111 ==283== ==283== ==283== HEAP SUMMARY: ==283== in use at exit: 3,057,974 bytes in 30,351 blocks ==283== total heap usage: 1,500,466 allocs, 1,470,058 frees, 170,876,159 bytes allocated ==283== ==283== LEAK SUMMARY: ==283== definitely lost: 0 bytes in 0 blocks ==283== indirectly lost: 0 bytes in 0 blocks ==283== possibly lost: 1,392 bytes in 4 blocks ==283== still reachable: 2,407,586 bytes in 21,820 blocks ==283== of which reachable via heuristic: ==283== length64 : 5,120 bytes in 80 blocks ==283== newarray : 6,312 bytes in 49 blocks ==283== suppressed: 578,732 bytes in 7,993 blocks ==283== Rerun with --leak-check=full to see details of leaked memory ==283== ==283== For counts of detected and suppressed errors, rerun with: -v ==283== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==315== Memcheck, a memory error detector ==315== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==315== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==315== Command: /usr/libexec/syncevo-local-sync ==315== Parent PID: 283 ==315== ==315== ==315== HEAP SUMMARY: ==315== in use at exit: 2,660,459 bytes in 25,706 blocks ==315== total heap usage: 317,941 allocs, 292,235 frees, 46,100,686 bytes allocated ==315== ==315== LEAK SUMMARY: ==315== definitely lost: 0 bytes in 0 blocks ==315== indirectly lost: 0 bytes in 0 blocks ==315== possibly lost: 528 bytes in 2 blocks ==315== still reachable: 2,399,203 bytes in 21,673 blocks ==315== of which reachable via heuristic: ==315== stdstring : 43 bytes in 1 blocks ==315== length64 : 592 bytes in 10 blocks ==315== newarray : 5,976 bytes in 28 blocks ==315== suppressed: 253,616 bytes in 3,975 blocks ==315== Rerun with --leak-check=full to see details of leaked memory ==315== ==315== For counts of detected and suppressed errors, rerun with: -v ==315== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==356== Memcheck, a memory error detector ==356== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==356== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==356== Command: /usr/libexec/syncevo-local-sync ==356== Parent PID: 283 ==356== ==356== ==356== HEAP SUMMARY: ==356== in use at exit: 2,660,475 bytes in 25,706 blocks ==356== total heap usage: 266,195 allocs, 240,489 frees, 37,453,140 bytes allocated ==356== ==356== LEAK SUMMARY: ==356== definitely lost: 0 bytes in 0 blocks ==356== indirectly lost: 0 bytes in 0 blocks ==356== possibly lost: 528 bytes in 2 blocks ==356== still reachable: 2,399,203 bytes in 21,673 blocks ==356== of which reachable via heuristic: ==356== stdstring : 43 bytes in 1 blocks ==356== length64 : 592 bytes in 10 blocks ==356== newarray : 5,976 bytes in 28 blocks ==356== suppressed: 253,632 bytes in 3,975 blocks ==356== Rerun with --leak-check=full to see details of leaked memory ==356== ==356== For counts of detected and suppressed errors, rerun with: -v ==356== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==422== Memcheck, a memory error detector ==422== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==422== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==422== Command: ./client-test Client::Sync::eds_task::testItems ==422== Parent PID: 283 ==422== ==430== Memcheck, a memory error detector ==430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==430== Command: /usr/libexec/syncevo-local-sync ==430== Parent PID: 283 ==430== ==430== ==430== HEAP SUMMARY: ==430== in use at exit: 2,660,467 bytes in 25,706 blocks ==430== total heap usage: 275,903 allocs, 250,197 frees, 38,309,874 bytes allocated ==430== ==430== LEAK SUMMARY: ==430== definitely lost: 0 bytes in 0 blocks ==430== indirectly lost: 0 bytes in 0 blocks ==430== possibly lost: 528 bytes in 2 blocks ==430== still reachable: 2,399,203 bytes in 21,673 blocks ==430== of which reachable via heuristic: ==430== stdstring : 43 bytes in 1 blocks ==430== length64 : 592 bytes in 10 blocks ==430== newarray : 5,976 bytes in 28 blocks ==430== suppressed: 253,624 bytes in 3,975 blocks ==430== Rerun with --leak-check=full to see details of leaked memory ==430== ==430== For counts of detected and suppressed errors, rerun with: -v ==430== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==446== Memcheck, a memory error detector ==446== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==446== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==446== Command: /usr/libexec/syncevo-local-sync ==446== Parent PID: 283 ==446== ==446== ==446== HEAP SUMMARY: ==446== in use at exit: 2,660,467 bytes in 25,706 blocks ==446== total heap usage: 271,510 allocs, 245,804 frees, 37,874,680 bytes allocated ==446== ==446== LEAK SUMMARY: ==446== definitely lost: 0 bytes in 0 blocks ==446== indirectly lost: 0 bytes in 0 blocks ==446== possibly lost: 528 bytes in 2 blocks ==446== still reachable: 2,399,203 bytes in 21,673 blocks ==446== of which reachable via heuristic: ==446== stdstring : 43 bytes in 1 blocks ==446== length64 : 592 bytes in 10 blocks ==446== newarray : 5,976 bytes in 28 blocks ==446== suppressed: 253,624 bytes in 3,975 blocks ==446== Rerun with --leak-check=full to see details of leaked memory ==446== ==446== For counts of detected and suppressed errors, rerun with: -v ==446== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==484== Memcheck, a memory error detector ==484== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==484== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==484== Command: ./client-test Client::Sync::eds_task::testItems ==484== Parent PID: 283 ==484== ==488== Memcheck, a memory error detector ==488== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==488== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==488== Command: ./client-test Client::Sync::eds_contact::testItems ==488== Parent PID: 111 ==488== ==488== ==488== HEAP SUMMARY: ==488== in use at exit: 3,112,367 bytes in 30,781 blocks ==488== total heap usage: 2,170,607 allocs, 2,139,769 frees, 231,468,008 bytes allocated ==488== ==488== LEAK SUMMARY: ==488== definitely lost: 0 bytes in 0 blocks ==488== indirectly lost: 0 bytes in 0 blocks ==488== possibly lost: 1,824 bytes in 5 blocks ==488== still reachable: 2,490,097 bytes in 21,934 blocks ==488== of which reachable via heuristic: ==488== length64 : 5,096 bytes in 80 blocks ==488== newarray : 6,296 bytes in 48 blocks ==488== suppressed: 530,502 bytes in 8,185 blocks ==488== Rerun with --leak-check=full to see details of leaked memory ==488== ==488== For counts of detected and suppressed errors, rerun with: -v ==488== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==514== Memcheck, a memory error detector ==514== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==514== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==514== Command: /usr/libexec/syncevo-local-sync ==514== Parent PID: 488 ==514== ==514== ==514== HEAP SUMMARY: ==514== in use at exit: 2,660,467 bytes in 25,706 blocks ==514== total heap usage: 709,773 allocs, 684,067 frees, 77,480,716 bytes allocated ==514== ==514== LEAK SUMMARY: ==514== definitely lost: 0 bytes in 0 blocks ==514== indirectly lost: 0 bytes in 0 blocks ==514== possibly lost: 528 bytes in 2 blocks ==514== still reachable: 2,399,203 bytes in 21,673 blocks ==514== of which reachable via heuristic: ==514== stdstring : 43 bytes in 1 blocks ==514== length64 : 592 bytes in 10 blocks ==514== newarray : 5,976 bytes in 28 blocks ==514== suppressed: 253,624 bytes in 3,975 blocks ==514== Rerun with --leak-check=full to see details of leaked memory ==514== ==514== For counts of detected and suppressed errors, rerun with: -v ==514== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==532== Memcheck, a memory error detector ==532== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==532== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==532== Command: /usr/libexec/syncevo-local-sync ==532== Parent PID: 488 ==532== ==532== ==532== HEAP SUMMARY: ==532== in use at exit: 2,660,467 bytes in 25,706 blocks ==532== total heap usage: 299,939 allocs, 274,233 frees, 40,612,182 bytes allocated ==532== ==532== LEAK SUMMARY: ==532== definitely lost: 0 bytes in 0 blocks ==532== indirectly lost: 0 bytes in 0 blocks ==532== possibly lost: 528 bytes in 2 blocks ==532== still reachable: 2,399,203 bytes in 21,673 blocks ==532== of which reachable via heuristic: ==532== stdstring : 43 bytes in 1 blocks ==532== length64 : 592 bytes in 10 blocks ==532== newarray : 5,976 bytes in 28 blocks ==532== suppressed: 253,624 bytes in 3,975 blocks ==532== Rerun with --leak-check=full to see details of leaked memory ==532== ==532== For counts of detected and suppressed errors, rerun with: -v ==532== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==561== Memcheck, a memory error detector ==561== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==561== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==561== Command: ./client-test Client::Sync::eds_contact::testItems ==561== Parent PID: 488 ==561== ==569== Memcheck, a memory error detector ==569== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==569== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==569== Command: /usr/libexec/syncevo-local-sync ==569== Parent PID: 488 ==569== ==569== ==569== HEAP SUMMARY: ==569== in use at exit: 2,660,403 bytes in 25,704 blocks ==569== total heap usage: 571,387 allocs, 545,683 frees, 62,957,336 bytes allocated ==569== ==569== LEAK SUMMARY: ==569== definitely lost: 0 bytes in 0 blocks ==569== indirectly lost: 0 bytes in 0 blocks ==569== possibly lost: 528 bytes in 2 blocks ==569== still reachable: 2,399,203 bytes in 21,673 blocks ==569== of which reachable via heuristic: ==569== stdstring : 43 bytes in 1 blocks ==569== length64 : 592 bytes in 10 blocks ==569== newarray : 5,976 bytes in 28 blocks ==569== suppressed: 253,560 bytes in 3,973 blocks ==569== Rerun with --leak-check=full to see details of leaked memory ==569== ==569== For counts of detected and suppressed errors, rerun with: -v ==569== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==578== Memcheck, a memory error detector ==578== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==578== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==578== Command: /usr/libexec/syncevo-local-sync ==578== Parent PID: 488 ==578== ==578== ==578== HEAP SUMMARY: ==578== in use at exit: 2,660,443 bytes in 25,706 blocks ==578== total heap usage: 613,202 allocs, 587,496 frees, 65,635,452 bytes allocated ==578== ==578== LEAK SUMMARY: ==578== definitely lost: 0 bytes in 0 blocks ==578== indirectly lost: 0 bytes in 0 blocks ==578== possibly lost: 528 bytes in 2 blocks ==578== still reachable: 2,399,203 bytes in 21,673 blocks ==578== of which reachable via heuristic: ==578== stdstring : 43 bytes in 1 blocks ==578== length64 : 592 bytes in 10 blocks ==578== newarray : 5,976 bytes in 28 blocks ==578== suppressed: 253,600 bytes in 3,975 blocks ==578== Rerun with --leak-check=full to see details of leaked memory ==578== ==578== For counts of detected and suppressed errors, rerun with: -v ==578== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==602== Memcheck, a memory error detector ==602== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==602== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==602== Command: ./client-test Client::Sync::eds_contact::testItems ==602== Parent PID: 488 ==602== valgrindcheck: ./client-test Client::Source::apple_caldav::testImport Client::Source::apple_caldav::testChanges Client::Source::apple_caldavtodo::testImport Client::Source::apple_caldavtodo::testChanges Client::Source::apple_carddav::testImport Client::Source::apple_carddav::testChanges Client::Sync::eds_event::testItems Client::Sync::eds_task::testItems Client::Sync::eds_contact::testItems: final result 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=1019 wrappercheck-102 line 115: set +e wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 1019 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 1019 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: grep -q 'No such process' wrappercheck-102 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1019 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 1019 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=1024 wrappercheck-82 line 115: set +e wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 116: wait 84 wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 1024 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 1024 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: echo '' wrappercheck-82 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1024 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 1024 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=1029 wrappercheck-25 line 115: set +e wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-25 line 116: wait 30 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: '[' 1029 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 1029 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: 1029 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 1029 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=1034 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: '[' 1034 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 1034 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: grep -q 'No such process' wrappercheck-18 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1034 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 1034 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.MRo1F9ycct Fri Jan 5 16:24:15 2018 UTC (+ 515.1s / 3012.4s) === cleaning up ===