runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 1.7s / 65.7s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-i386/home/apple/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 0.2s / 65.8s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/data/runtests/work/prebuilt-testing-i386/home/apple/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/apple/data runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) === starting apple === runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/20-apple, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/20-apple runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/apple (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/apple) runtests.py-32143 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/apple; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-i386/home/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/cache'; unset ; /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-i386/tests/apple -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution ) Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['apple'] === Fri Jan 5 15:31:13 2018 UTC (+ 16.6s / 16.6s) property changed: status = acquired Fri Jan 5 15:31:13 2018 UTC (+ 0.0s / 16.6s) using jobserver Fri Jan 5 15:31:13 2018 UTC (+ 0.0s / 16.6s) === allocating 1 job slot(s) === Fri Jan 5 15:33:31 2018 UTC (+ 138.3s / 154.9s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-i386 chroot] Running command: “env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh 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 gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.OH60Uv7EHX/keyring/control: No such file or directory + 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= 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=26 wrappercheck-20 line 73: PIDS+=26 wrappercheck-20 line 70: set -x wrappercheck-20 line 75: '[' evolution-source-registry.log ']' wrappercheck-20 line 70: exec 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 26 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-73 line 16: PIDS= wrappercheck-73 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-73 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-73 line 21: DAEMON_LOG= wrappercheck-73 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-73 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-73 line 25: declare -a BACKGROUND wrappercheck-73 line 26: declare -a ENV wrappercheck-73 line 28: '[' 20 -gt 1 ']' wrappercheck-73 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 31: shift wrappercheck-73 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 18 -gt 1 ']' wrappercheck-73 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 35: shift wrappercheck-73 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 16 -gt 1 ']' wrappercheck-73 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 50: break wrappercheck-73 line 56: '[' 16 -gt 1 ']' wrappercheck-73 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 15 -gt 1 ']' wrappercheck-73 line 56: '[' --keep-running '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 14 -gt 1 ']' wrappercheck-73 line 56: '[' -- '!=' -- ']' wrappercheck-73 line 60: shift wrappercheck-73 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 62: '[' '' ']' wrappercheck-73 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-73 line 72: BACKGROUND_PID=75 wrappercheck-73 line 73: PIDS+=75 wrappercheck-73 line 70: set -x wrappercheck-73 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 70: exec wrappercheck-73 line 75: '[' '' ']' wrappercheck-73 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-73 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-73 line 93: kill -0 75 wrappercheck-73 line 94: set +e wrappercheck-73 line 95: '[' '' ']' wrappercheck-73 line 99: set -x wrappercheck-73 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-93 line 16: PIDS= wrappercheck-93 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-93 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-93 line 21: DAEMON_LOG= wrappercheck-93 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-93 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-93 line 25: declare -a BACKGROUND wrappercheck-93 line 26: declare -a ENV wrappercheck-93 line 28: '[' 12 -gt 1 ']' wrappercheck-93 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 31: shift wrappercheck-93 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-93 line 53: shift wrappercheck-93 line 28: '[' 10 -gt 1 ']' wrappercheck-93 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 50: break wrappercheck-93 line 56: '[' 10 -gt 1 ']' wrappercheck-93 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 9 -gt 1 ']' wrappercheck-93 line 56: '[' --keep-running '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 8 -gt 1 ']' wrappercheck-93 line 56: '[' -- '!=' -- ']' wrappercheck-93 line 60: shift wrappercheck-93 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 62: '[' '' ']' wrappercheck-93 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-93 line 72: BACKGROUND_PID=95 wrappercheck-93 line 73: PIDS+=95 wrappercheck-93 line 70: set -x wrappercheck-93 line 70: exec wrappercheck-93 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 75: '[' '' ']' wrappercheck-93 line 84: '[' '' ']' wrappercheck-93 line 93: kill -0 95 wrappercheck-93 line 94: set +e wrappercheck-93 line 95: '[' '' ']' wrappercheck-93 line 99: set -x wrappercheck-93 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-98 line 16: PIDS= wrappercheck-98 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-98 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-98 line 21: DAEMON_LOG= wrappercheck-98 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-98 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-98 line 25: declare -a BACKGROUND wrappercheck-98 line 26: declare -a ENV wrappercheck-98 line 28: '[' 5 -gt 1 ']' wrappercheck-98 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-98 line 29: case "$1" in wrappercheck-98 line 50: break wrappercheck-98 line 56: '[' 5 -gt 1 ']' wrappercheck-98 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-98 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-98 line 58: shift wrappercheck-98 line 56: '[' 4 -gt 1 ']' wrappercheck-98 line 56: '[' -- '!=' -- ']' wrappercheck-98 line 60: shift wrappercheck-98 line 62: '[' '' ']' wrappercheck-98 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-98 line 72: BACKGROUND_PID=102 wrappercheck-98 line 73: PIDS+=102 wrappercheck-98 line 70: set -x wrappercheck-98 line 70: exec wrappercheck-98 line 75: '[' '' ']' wrappercheck-98 line 84: '[' '' ']' wrappercheck-98 line 93: kill -0 102 wrappercheck-98 line 94: set +e wrappercheck-98 line 95: '[' '' ']' wrappercheck-98 line 99: set -x wrappercheck-98 line 99: /home/nightly/testing/setup-syncevolution.sh apple ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/prebuilt-testing-i386/home/apple/.sync4j/evolution/apple_[12]' '/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/apple_[12]' '/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-[12]/peers/apple_[12]' '/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + 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-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/todo /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-1/peers/apple_1/sources/memo /data/runtests/work/prebuilt-testing-i386/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-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources addressbook eds_contact + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/addressbook /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_contact + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources calendar eds_event + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/calendar /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_event + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources todo eds_task + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/todo /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/eds_task + copy_source /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources memo eds_memo + path=/data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/prebuilt-testing-i386/home/apple/config/syncevolution/client-test-apple-2/peers/apple_2/sources/memo /data/runtests/work/prebuilt-testing-i386/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-i386/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 ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ sed -e 's/.*=//' ++ echo evolution-tasks=eds_task + 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 ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-98 line 100: RET=0 wrappercheck-98 line 101: set -e wrappercheck-98 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-98 line 108: kill -INT -102 wrappercheck-98 line 108: kill -TERM -102 wrappercheck-98 line 108: kill -TERM 102 wrappercheck-98 line 110: KILL_PID=348 wrappercheck-98 line 109: perl -e 'sleep(60); kill(9, -102);' wrappercheck-98 line 115: set +e wrappercheck-98 line 116: wait 102 wrappercheck-98 line 117: SUBRET=143 wrappercheck-98 line 118: case $SUBRET in wrappercheck-98 line 118: SUBRET=0 wrappercheck-98 line 120: SUBRET=0 wrappercheck-98 line 121: '[' 348 ']' wwrappercheck-98 line 122: LC_ALL=C wwrappercheck-98 line 122: kill -KILL 348 wrappercheck-98 line 122: msg= wrappercheck-98 line 123: echo '' wrappercheck-98 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 348 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-98 line 127: echo '' wrappercheck-98 line 129: wait 348 wrappercheck-98 line 131: set -e wrappercheck-98 line 132: '[' 0 = 0 ']' wrappercheck-98 line 133: RET=0 wrappercheck-98 line 136: exit 0 wrappercheck-93 line 100: RET=0 wrappercheck-93 line 101: set -e wrappercheck-93 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 108: kill -INT -95 wrappercheck-93 line 108: kill -TERM -95 wrappercheck-93 line 108: kill -TERM 95 wrappercheck-93 line 110: KILL_PID=353 wrappercheck-93 line 115: set +e wrappercheck-93 line 116: wait 95 wrappercheck-93 line 117: SUBRET=143 wrappercheck-93 line 118: case $SUBRET in wrappercheck-93 line 118: SUBRET=0 wrappercheck-93 line 120: SUBRET=0 wrappercheck-93 line 121: '[' 353 ']' wrappercheck-93 line 109: perl -e 'sleep(60); kill(9, -95);' wwrappercheck-93 line 122: LC_ALL=C wwrappercheck-93 line 122: kill -KILL 353 wrappercheck-93 line 122: msg= wrappercheck-93 line 123: echo '' wrappercheck-93 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 353 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-93 line 127: echo '' wrappercheck-93 line 129: wait 353 wrappercheck-93 line 131: set -e wrappercheck-93 line 132: '[' 0 = 0 ']' wrappercheck-93 line 133: RET=0 wrappercheck-93 line 136: exit 0 wrappercheck-73 line 100: RET=0 wrappercheck-73 line 101: set -e wrappercheck-73 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 108: kill -INT -75 wrappercheck-73 line 108: kill -TERM -75 wrappercheck-73 line 108: kill -TERM 75 wrappercheck-73 line 110: KILL_PID=358 wrappercheck-73 line 115: set +e wrappercheck-73 line 109: perl -e 'sleep(60); kill(9, -75);' wrappercheck-73 line 116: wait 75 wrappercheck-73 line 117: SUBRET=143 wrappercheck-73 line 118: case $SUBRET in wrappercheck-73 line 118: SUBRET=0 wrappercheck-73 line 120: SUBRET=0 wrappercheck-73 line 121: '[' 358 ']' wwrappercheck-73 line 122: LC_ALL=C wwrappercheck-73 line 122: kill -KILL 358 wrappercheck-73 line 122: msg= wrappercheck-73 line 123: echo '' wrappercheck-73 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 358 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-73 line 127: echo '' wrappercheck-73 line 129: wait 358 wrappercheck-73 line 131: set -e wrappercheck-73 line 132: '[' 0 = 0 ']' wrappercheck-73 line 133: RET=0 wrappercheck-73 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 -26 wrappercheck-20 line 108: kill -TERM -26 wrappercheck-20 line 108: kill -TERM 26 wrappercheck-20 line 110: KILL_PID=363 wrappercheck-20 line 109: perl -e 'sleep(60); kill(9, -26);' wrappercheck-20 line 115: set +e wrappercheck-20 line 116: wait 26 wrappercheck-20 line 117: SUBRET=143 wrappercheck-20 line 118: case $SUBRET in wrappercheck-20 line 118: SUBRET=0 wrappercheck-20 line 120: SUBRET=0 wrappercheck-20 line 121: '[' 363 ']' wwrappercheck-20 line 122: LC_ALL=C wwrappercheck-20 line 122: kill -KILL 363 wrappercheck-20 line 122: msg= wrappercheck-20 line 123: echo '' wrappercheck-20 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 363 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-20 line 127: echo '' wrappercheck-20 line 129: wait 363 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=368 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: '[' 368 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 368 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: echo '' wrappercheck-15 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 368 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 368 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.OH60Uv7EHX Fri Jan 5 15:33:41 2018 UTC (+ 10.3s / 165.1s) === cleaning up === runtests.py-32143 Fri Jan 5 15:33:41 2018 UTC (+ 165.2s / 231.0s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/apple; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-i386/home/apple' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/apple/cache'; unset ; /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-i386/tests/apple -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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:33:41 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['apple'] === Fri Jan 5 15:42:35 2018 UTC (+ 534.0s / 534.0s) property changed: status = acquired Fri Jan 5 15:42:35 2018 UTC (+ 0.0s / 534.0s) using jobserver Fri Jan 5 15:42:35 2018 UTC (+ 0.0s / 534.0s) === allocating 1 job slot(s) === Fri Jan 5 15:56:39 2018 UTC (+ 843.6s / 1377.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-i386 chroot] Running command: “env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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.893GQeAIMD/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 41 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 39 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 39 -gt 1 ']' wrappercheck-19 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 38 -gt 1 ']' wrappercheck-19 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 37 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 99: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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: '[' 35 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 33 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 31 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 29 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 29 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 28 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 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 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-73 line 16: PIDS= wrappercheck-73 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-73 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-73 line 21: DAEMON_LOG= wrappercheck-73 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-73 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-73 line 25: declare -a BACKGROUND wrappercheck-73 line 26: declare -a ENV wrappercheck-73 line 28: '[' 26 -gt 1 ']' wrappercheck-73 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 31: shift wrappercheck-73 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 24 -gt 1 ']' wrappercheck-73 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 35: shift wrappercheck-73 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 22 -gt 1 ']' wrappercheck-73 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 50: break wrappercheck-73 line 56: '[' 22 -gt 1 ']' wrappercheck-73 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 21 -gt 1 ']' wrappercheck-73 line 56: '[' --keep-running '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 20 -gt 1 ']' wrappercheck-73 line 56: '[' -- '!=' -- ']' wrappercheck-73 line 60: shift wrappercheck-73 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 62: '[' '' ']' wrappercheck-73 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-73 line 72: BACKGROUND_PID=75 wrappercheck-73 line 73: PIDS+=75 wrappercheck-73 line 70: set -x wrappercheck-73 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 75: '[' '' ']' wrappercheck-73 line 70: exec wrappercheck-73 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-73 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-73 line 93: kill -0 75 wrappercheck-73 line 94: set +e wrappercheck-73 line 95: '[' '' ']' wrappercheck-73 line 99: set -x wrappercheck-73 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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-93 line 16: PIDS= wrappercheck-93 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-93 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-93 line 21: DAEMON_LOG= wrappercheck-93 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-93 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-93 line 25: declare -a BACKGROUND wrappercheck-93 line 26: declare -a ENV wrappercheck-93 line 28: '[' 18 -gt 1 ']' wrappercheck-93 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 31: shift wrappercheck-93 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-93 line 53: shift wrappercheck-93 line 28: '[' 16 -gt 1 ']' wrappercheck-93 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 50: break wrappercheck-93 line 56: '[' 16 -gt 1 ']' wrappercheck-93 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 15 -gt 1 ']' wrappercheck-93 line 56: '[' --keep-running '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 14 -gt 1 ']' wrappercheck-93 line 56: '[' -- '!=' -- ']' wrappercheck-93 line 60: shift wrappercheck-93 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 62: '[' '' ']' wrappercheck-93 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-93 line 72: BACKGROUND_PID=95 wrappercheck-93 line 73: PIDS+=95 wrappercheck-93 line 70: set -x wrappercheck-93 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 75: '[' '' ']' wrappercheck-93 line 70: exec wrappercheck-93 line 84: '[' '' ']' wrappercheck-93 line 93: kill -0 95 wrappercheck-93 line 94: set +e wrappercheck-93 line 95: '[' '' ']' wrappercheck-93 line 99: set -x wrappercheck-93 line 99: env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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-i386/tests/apple/valgrind.p98.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 (98): './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' (102): returned 0 ==102== Memcheck, a memory error detector ==102== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==102== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==102== 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 ==102== Parent PID: 98 ==102== ==102== ==102== HEAP SUMMARY: ==102== in use at exit: 347,627 bytes in 5,276 blocks ==102== total heap usage: 155,598 allocs, 150,269 frees, 20,550,431 bytes allocated ==102== ==102== LEAK SUMMARY: ==102== definitely lost: 0 bytes in 0 blocks ==102== indirectly lost: 0 bytes in 0 blocks ==102== possibly lost: 484 bytes in 3 blocks ==102== still reachable: 144,581 bytes in 934 blocks ==102== of which reachable via heuristic: ==102== newarray : 5,316 bytes in 46 blocks ==102== suppressed: 195,818 bytes in 4,255 blocks ==102== Rerun with --leak-check=full to see details of leaked memory ==102== ==102== For counts of detected and suppressed errors, rerun with: -v ==102== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==113== Memcheck, a memory error detector ==113== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==113== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==113== Command: ./client-test Client::Source::apple_caldav::testChanges ==113== Parent PID: 102 ==113== ==113== ==113== HEAP SUMMARY: ==113== in use at exit: 500,111 bytes in 6,075 blocks ==113== total heap usage: 453,348 allocs, 447,182 frees, 56,473,264 bytes allocated ==113== ==113== LEAK SUMMARY: ==113== definitely lost: 0 bytes in 0 blocks ==113== indirectly lost: 0 bytes in 0 blocks ==113== possibly lost: 700 bytes in 4 blocks ==113== still reachable: 296,877 bytes in 1,729 blocks ==113== of which reachable via heuristic: ==113== newarray : 5,316 bytes in 46 blocks ==113== suppressed: 195,790 bytes in 4,258 blocks ==113== Rerun with --leak-check=full to see details of leaked memory ==113== ==113== For counts of detected and suppressed errors, rerun with: -v ==113== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==117== Memcheck, a memory error detector ==117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==117== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==117== Command: ./client-test Client::Source::apple_caldav::testImport ==117== Parent PID: 102 ==117== ==117== ==117== HEAP SUMMARY: ==117== in use at exit: 478,559 bytes in 5,990 blocks ==117== total heap usage: 204,012 allocs, 197,965 frees, 31,441,129 bytes allocated ==117== ==117== LEAK SUMMARY: ==117== definitely lost: 0 bytes in 0 blocks ==117== indirectly lost: 0 bytes in 0 blocks ==117== possibly lost: 700 bytes in 4 blocks ==117== still reachable: 275,373 bytes in 1,645 blocks ==117== of which reachable via heuristic: ==117== newarray : 5,316 bytes in 46 blocks ==117== suppressed: 195,742 bytes in 4,257 blocks ==117== Rerun with --leak-check=full to see details of leaked memory ==117== ==117== For counts of detected and suppressed errors, rerun with: -v ==117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==121== Memcheck, a memory error detector ==121== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==121== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==121== Command: ./client-test Client::Source::apple_caldav::testImport ==121== Parent PID: 117 ==121== ==129== Memcheck, a memory error detector ==129== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==129== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==129== Command: ./client-test Client::Source::apple_caldavtodo::testChanges ==129== Parent PID: 102 ==129== ==129== ==129== HEAP SUMMARY: ==129== in use at exit: 348,405 bytes in 5,300 blocks ==129== total heap usage: 429,269 allocs, 423,878 frees, 44,727,148 bytes allocated ==129== ==129== LEAK SUMMARY: ==129== definitely lost: 0 bytes in 0 blocks ==129== indirectly lost: 0 bytes in 0 blocks ==129== possibly lost: 484 bytes in 3 blocks ==129== still reachable: 145,403 bytes in 957 blocks ==129== of which reachable via heuristic: ==129== newarray : 5,316 bytes in 46 blocks ==129== suppressed: 195,774 bytes in 4,256 blocks ==129== Rerun with --leak-check=full to see details of leaked memory ==129== ==129== For counts of detected and suppressed errors, rerun with: -v ==129== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==133== Memcheck, a memory error detector ==133== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==133== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==133== Command: ./client-test Client::Source::apple_caldavtodo::testImport ==133== Parent PID: 102 ==133== ==133== ==133== HEAP SUMMARY: ==133== in use at exit: 350,725 bytes in 5,305 blocks ==133== total heap usage: 154,420 allocs, 149,058 frees, 19,931,921 bytes allocated ==133== ==133== LEAK SUMMARY: ==133== definitely lost: 0 bytes in 0 blocks ==133== indirectly lost: 0 bytes in 0 blocks ==133== possibly lost: 700 bytes in 4 blocks ==133== still reachable: 147,491 bytes in 959 blocks ==133== of which reachable via heuristic: ==133== newarray : 5,316 bytes in 46 blocks ==133== suppressed: 195,790 bytes in 4,258 blocks ==133== Rerun with --leak-check=full to see details of leaked memory ==133== ==133== For counts of detected and suppressed errors, rerun with: -v ==133== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==137== Memcheck, a memory error detector ==137== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==137== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==137== Command: ./client-test Client::Source::apple_caldavtodo::testImport ==137== Parent PID: 133 ==137== ==145== Memcheck, a memory error detector ==145== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==145== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==145== Command: ./client-test Client::Source::apple_carddav::testChanges ==145== Parent PID: 102 ==145== ==145== ==145== HEAP SUMMARY: ==145== in use at exit: 348,405 bytes in 5,300 blocks ==145== total heap usage: 439,535 allocs, 434,144 frees, 54,214,644 bytes allocated ==145== ==145== LEAK SUMMARY: ==145== definitely lost: 0 bytes in 0 blocks ==145== indirectly lost: 0 bytes in 0 blocks ==145== possibly lost: 484 bytes in 3 blocks ==145== still reachable: 145,403 bytes in 957 blocks ==145== of which reachable via heuristic: ==145== newarray : 5,316 bytes in 46 blocks ==145== suppressed: 195,774 bytes in 4,256 blocks ==145== Rerun with --leak-check=full to see details of leaked memory ==145== ==145== For counts of detected and suppressed errors, rerun with: -v ==145== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==149== Memcheck, a memory error detector ==149== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==149== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==149== Command: ./client-test Client::Source::apple_carddav::testImport ==149== Parent PID: 102 ==149== ==149== ==149== HEAP SUMMARY: ==149== in use at exit: 350,729 bytes in 5,305 blocks ==149== total heap usage: 195,425 allocs, 190,063 frees, 27,981,573 bytes allocated ==149== ==149== LEAK SUMMARY: ==149== definitely lost: 0 bytes in 0 blocks ==149== indirectly lost: 0 bytes in 0 blocks ==149== possibly lost: 700 bytes in 4 blocks ==149== still reachable: 147,491 bytes in 959 blocks ==149== of which reachable via heuristic: ==149== newarray : 5,316 bytes in 46 blocks ==149== suppressed: 195,794 bytes in 4,258 blocks ==149== Rerun with --leak-check=full to see details of leaked memory ==149== ==149== For counts of detected and suppressed errors, rerun with: -v ==149== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==153== Memcheck, a memory error detector ==153== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==153== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==153== Command: ./client-test Client::Source::apple_carddav::testImport ==153== Parent PID: 149 ==153== ==161== Memcheck, a memory error detector ==161== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==161== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==161== Command: ./client-test Client::Sync::eds_event::testItems ==161== Parent PID: 102 ==161== ==161== ==161== HEAP SUMMARY: ==161== in use at exit: 2,341,494 bytes in 30,298 blocks ==161== total heap usage: 2,213,377 allocs, 2,183,022 frees, 203,738,250 bytes allocated ==161== ==161== LEAK SUMMARY: ==161== definitely lost: 0 bytes in 0 blocks ==161== indirectly lost: 0 bytes in 0 blocks ==161== possibly lost: 700 bytes in 4 blocks ==161== still reachable: 1,924,757 bytes in 21,859 blocks ==161== of which reachable via heuristic: ==161== newarray : 7,528 bytes in 129 blocks ==161== suppressed: 375,529 bytes in 7,903 blocks ==161== Rerun with --leak-check=full to see details of leaked memory ==161== ==161== For counts of detected and suppressed errors, rerun with: -v ==161== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==187== Memcheck, a memory error detector ==187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==187== Command: /usr/libexec/syncevo-local-sync ==187== Parent PID: 161 ==187== ==187== ==187== HEAP SUMMARY: ==187== in use at exit: 2,157,437 bytes in 25,925 blocks ==187== total heap usage: 440,957 allocs, 415,032 frees, 49,658,671 bytes allocated ==187== ==187== LEAK SUMMARY: ==187== definitely lost: 0 bytes in 0 blocks ==187== indirectly lost: 0 bytes in 0 blocks ==187== possibly lost: 484 bytes in 3 blocks ==187== still reachable: 1,968,203 bytes in 21,937 blocks ==187== of which reachable via heuristic: ==187== stdstring : 31 bytes in 1 blocks ==187== newarray : 5,096 bytes in 38 blocks ==187== suppressed: 184,650 bytes in 3,929 blocks ==187== Rerun with --leak-check=full to see details of leaked memory ==187== ==187== For counts of detected and suppressed errors, rerun with: -v ==187== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==203== Memcheck, a memory error detector ==203== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==203== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==203== Command: /usr/libexec/syncevo-local-sync ==203== Parent PID: 161 ==203== ==203== ==203== HEAP SUMMARY: ==203== in use at exit: 2,128,973 bytes in 25,812 blocks ==203== total heap usage: 305,458 allocs, 279,646 frees, 36,213,600 bytes allocated ==203== ==203== LEAK SUMMARY: ==203== definitely lost: 0 bytes in 0 blocks ==203== indirectly lost: 0 bytes in 0 blocks ==203== possibly lost: 484 bytes in 3 blocks ==203== still reachable: 1,939,787 bytes in 21,826 blocks ==203== of which reachable via heuristic: ==203== stdstring : 31 bytes in 1 blocks ==203== newarray : 5,096 bytes in 38 blocks ==203== suppressed: 184,602 bytes in 3,927 blocks ==203== Rerun with --leak-check=full to see details of leaked memory ==203== ==203== For counts of detected and suppressed errors, rerun with: -v ==203== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==229== Memcheck, a memory error detector ==229== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==229== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==229== Command: ./client-test Client::Sync::eds_event::testItems ==229== Parent PID: 161 ==229== ==237== Memcheck, a memory error detector ==237== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==237== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==237== Command: /usr/libexec/syncevo-local-sync ==237== Parent PID: 161 ==237== ==237== ==237== HEAP SUMMARY: ==237== in use at exit: 2,084,717 bytes in 25,679 blocks ==237== total heap usage: 496,126 allocs, 470,447 frees, 49,448,611 bytes allocated ==237== ==237== LEAK SUMMARY: ==237== definitely lost: 0 bytes in 0 blocks ==237== indirectly lost: 0 bytes in 0 blocks ==237== possibly lost: 484 bytes in 3 blocks ==237== still reachable: 1,895,479 bytes in 21,691 blocks ==237== of which reachable via heuristic: ==237== stdstring : 31 bytes in 1 blocks ==237== newarray : 5,096 bytes in 38 blocks ==237== suppressed: 184,654 bytes in 3,929 blocks ==237== Rerun with --leak-check=full to see details of leaked memory ==237== ==237== For counts of detected and suppressed errors, rerun with: -v ==237== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==245== Memcheck, a memory error detector ==245== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==245== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==245== Command: /usr/libexec/syncevo-local-sync ==245== Parent PID: 161 ==245== ==245== ==245== HEAP SUMMARY: ==245== in use at exit: 2,157,429 bytes in 25,925 blocks ==245== total heap usage: 389,856 allocs, 363,931 frees, 42,161,165 bytes allocated ==245== ==245== LEAK SUMMARY: ==245== definitely lost: 0 bytes in 0 blocks ==245== indirectly lost: 0 bytes in 0 blocks ==245== possibly lost: 484 bytes in 3 blocks ==245== still reachable: 1,968,203 bytes in 21,937 blocks ==245== of which reachable via heuristic: ==245== stdstring : 31 bytes in 1 blocks ==245== newarray : 5,096 bytes in 38 blocks ==245== suppressed: 184,642 bytes in 3,929 blocks ==245== Rerun with --leak-check=full to see details of leaked memory ==245== ==245== For counts of detected and suppressed errors, rerun with: -v ==245== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==266== Memcheck, a memory error detector ==266== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==266== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==266== Command: ./client-test Client::Sync::eds_event::testItems ==266== Parent PID: 161 ==266== ==270== Memcheck, a memory error detector ==270== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==270== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==270== Command: ./client-test Client::Sync::eds_task::testItems ==270== Parent PID: 102 ==270== ==270== ==270== HEAP SUMMARY: ==270== in use at exit: 2,341,334 bytes in 30,295 blocks ==270== total heap usage: 1,501,217 allocs, 1,470,865 frees, 150,949,953 bytes allocated ==270== ==270== LEAK SUMMARY: ==270== definitely lost: 0 bytes in 0 blocks ==270== indirectly lost: 0 bytes in 0 blocks ==270== possibly lost: 700 bytes in 4 blocks ==270== still reachable: 1,924,734 bytes in 21,860 blocks ==270== of which reachable via heuristic: ==270== newarray : 7,528 bytes in 129 blocks ==270== suppressed: 375,308 bytes in 7,897 blocks ==270== Rerun with --leak-check=full to see details of leaked memory ==270== ==270== For counts of detected and suppressed errors, rerun with: -v ==270== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==302== Memcheck, a memory error detector ==302== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==302== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==302== Command: /usr/libexec/syncevo-local-sync ==302== Parent PID: 270 ==302== ==302== ==302== HEAP SUMMARY: ==302== in use at exit: 2,084,705 bytes in 25,679 blocks ==302== total heap usage: 317,711 allocs, 292,032 frees, 40,951,015 bytes allocated ==302== ==302== LEAK SUMMARY: ==302== definitely lost: 0 bytes in 0 blocks ==302== indirectly lost: 0 bytes in 0 blocks ==302== possibly lost: 484 bytes in 3 blocks ==302== still reachable: 1,895,479 bytes in 21,691 blocks ==302== of which reachable via heuristic: ==302== stdstring : 31 bytes in 1 blocks ==302== newarray : 5,096 bytes in 38 blocks ==302== suppressed: 184,642 bytes in 3,929 blocks ==302== Rerun with --leak-check=full to see details of leaked memory ==302== ==302== For counts of detected and suppressed errors, rerun with: -v ==302== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==342== Memcheck, a memory error detector ==342== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==342== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==342== Command: /usr/libexec/syncevo-local-sync ==342== Parent PID: 270 ==342== ==342== ==342== HEAP SUMMARY: ==342== in use at exit: 2,084,709 bytes in 25,679 blocks ==342== total heap usage: 265,990 allocs, 240,311 frees, 33,355,110 bytes allocated ==342== ==342== LEAK SUMMARY: ==342== definitely lost: 0 bytes in 0 blocks ==342== indirectly lost: 0 bytes in 0 blocks ==342== possibly lost: 484 bytes in 3 blocks ==342== still reachable: 1,895,479 bytes in 21,691 blocks ==342== of which reachable via heuristic: ==342== stdstring : 31 bytes in 1 blocks ==342== newarray : 5,096 bytes in 38 blocks ==342== suppressed: 184,646 bytes in 3,929 blocks ==342== Rerun with --leak-check=full to see details of leaked memory ==342== ==342== For counts of detected and suppressed errors, rerun with: -v ==342== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==408== Memcheck, a memory error detector ==408== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==408== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==408== Command: ./client-test Client::Sync::eds_task::testItems ==408== Parent PID: 270 ==408== ==416== Memcheck, a memory error detector ==416== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==416== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==416== Command: /usr/libexec/syncevo-local-sync ==416== Parent PID: 270 ==416== ==416== ==416== HEAP SUMMARY: ==416== in use at exit: 2,084,705 bytes in 25,679 blocks ==416== total heap usage: 275,665 allocs, 249,986 frees, 34,089,894 bytes allocated ==416== ==416== LEAK SUMMARY: ==416== definitely lost: 0 bytes in 0 blocks ==416== indirectly lost: 0 bytes in 0 blocks ==416== possibly lost: 484 bytes in 3 blocks ==416== still reachable: 1,895,479 bytes in 21,691 blocks ==416== of which reachable via heuristic: ==416== stdstring : 31 bytes in 1 blocks ==416== newarray : 5,096 bytes in 38 blocks ==416== suppressed: 184,642 bytes in 3,929 blocks ==416== Rerun with --leak-check=full to see details of leaked memory ==416== ==416== For counts of detected and suppressed errors, rerun with: -v ==416== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==432== Memcheck, a memory error detector ==432== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==432== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==432== Command: /usr/libexec/syncevo-local-sync ==432== Parent PID: 270 ==432== ==432== ==432== HEAP SUMMARY: ==432== in use at exit: 2,084,705 bytes in 25,679 blocks ==432== total heap usage: 271,292 allocs, 245,613 frees, 33,706,422 bytes allocated ==432== ==432== LEAK SUMMARY: ==432== definitely lost: 0 bytes in 0 blocks ==432== indirectly lost: 0 bytes in 0 blocks ==432== possibly lost: 484 bytes in 3 blocks ==432== still reachable: 1,895,479 bytes in 21,691 blocks ==432== of which reachable via heuristic: ==432== stdstring : 31 bytes in 1 blocks ==432== newarray : 5,096 bytes in 38 blocks ==432== suppressed: 184,642 bytes in 3,929 blocks ==432== Rerun with --leak-check=full to see details of leaked memory ==432== ==432== For counts of detected and suppressed errors, rerun with: -v ==432== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==470== Memcheck, a memory error detector ==470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==470== Command: ./client-test Client::Sync::eds_task::testItems ==470== Parent PID: 270 ==470== ==474== Memcheck, a memory error detector ==474== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==474== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==474== Command: ./client-test Client::Sync::eds_contact::testItems ==474== Parent PID: 102 ==474== ==474== ==474== HEAP SUMMARY: ==474== in use at exit: 2,365,906 bytes in 30,542 blocks ==474== total heap usage: 2,171,260 allocs, 2,140,661 frees, 203,152,981 bytes allocated ==474== ==474== LEAK SUMMARY: ==474== definitely lost: 0 bytes in 0 blocks ==474== indirectly lost: 0 bytes in 0 blocks ==474== possibly lost: 916 bytes in 5 blocks ==474== still reachable: 1,969,471 bytes in 21,845 blocks ==474== of which reachable via heuristic: ==474== newarray : 7,508 bytes in 128 blocks ==474== suppressed: 343,467 bytes in 8,035 blocks ==474== Rerun with --leak-check=full to see details of leaked memory ==474== ==474== For counts of detected and suppressed errors, rerun with: -v ==474== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==500== Memcheck, a memory error detector ==500== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==500== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==500== Command: /usr/libexec/syncevo-local-sync ==500== Parent PID: 474 ==500== ==500== ==500== HEAP SUMMARY: ==500== in use at exit: 2,084,733 bytes in 25,680 blocks ==500== total heap usage: 709,528 allocs, 683,848 frees, 67,437,808 bytes allocated ==500== ==500== LEAK SUMMARY: ==500== definitely lost: 0 bytes in 0 blocks ==500== indirectly lost: 0 bytes in 0 blocks ==500== possibly lost: 484 bytes in 3 blocks ==500== still reachable: 1,895,479 bytes in 21,691 blocks ==500== of which reachable via heuristic: ==500== stdstring : 31 bytes in 1 blocks ==500== newarray : 5,116 bytes in 39 blocks ==500== suppressed: 184,670 bytes in 3,930 blocks ==500== Rerun with --leak-check=full to see details of leaked memory ==500== ==500== For counts of detected and suppressed errors, rerun with: -v ==500== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==518== Memcheck, a memory error detector ==518== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==518== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==518== Command: /usr/libexec/syncevo-local-sync ==518== Parent PID: 474 ==518== ==518== ==518== HEAP SUMMARY: ==518== in use at exit: 2,084,725 bytes in 25,680 blocks ==518== total heap usage: 299,704 allocs, 274,024 frees, 36,063,024 bytes allocated ==518== ==518== LEAK SUMMARY: ==518== definitely lost: 0 bytes in 0 blocks ==518== indirectly lost: 0 bytes in 0 blocks ==518== possibly lost: 484 bytes in 3 blocks ==518== still reachable: 1,895,479 bytes in 21,691 blocks ==518== of which reachable via heuristic: ==518== stdstring : 31 bytes in 1 blocks ==518== newarray : 5,116 bytes in 39 blocks ==518== suppressed: 184,662 bytes in 3,930 blocks ==518== Rerun with --leak-check=full to see details of leaked memory ==518== ==518== For counts of detected and suppressed errors, rerun with: -v ==518== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==546== Memcheck, a memory error detector ==546== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==546== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==546== Command: ./client-test Client::Sync::eds_contact::testItems ==546== Parent PID: 474 ==546== ==554== Memcheck, a memory error detector ==554== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==554== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==554== Command: /usr/libexec/syncevo-local-sync ==554== Parent PID: 474 ==554== ==554== ==554== HEAP SUMMARY: ==554== in use at exit: 2,084,705 bytes in 25,679 blocks ==554== total heap usage: 571,159 allocs, 545,480 frees, 54,957,337 bytes allocated ==554== ==554== LEAK SUMMARY: ==554== definitely lost: 0 bytes in 0 blocks ==554== indirectly lost: 0 bytes in 0 blocks ==554== possibly lost: 484 bytes in 3 blocks ==554== still reachable: 1,895,479 bytes in 21,691 blocks ==554== of which reachable via heuristic: ==554== stdstring : 31 bytes in 1 blocks ==554== newarray : 5,096 bytes in 38 blocks ==554== suppressed: 184,642 bytes in 3,929 blocks ==554== Rerun with --leak-check=full to see details of leaked memory ==554== ==554== For counts of detected and suppressed errors, rerun with: -v ==554== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==563== Memcheck, a memory error detector ==563== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==563== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==563== Command: /usr/libexec/syncevo-local-sync ==563== Parent PID: 474 ==563== ==563== ==563== HEAP SUMMARY: ==563== in use at exit: 2,084,705 bytes in 25,679 blocks ==563== total heap usage: 612,968 allocs, 587,289 frees, 57,196,098 bytes allocated ==563== ==563== LEAK SUMMARY: ==563== definitely lost: 0 bytes in 0 blocks ==563== indirectly lost: 0 bytes in 0 blocks ==563== possibly lost: 484 bytes in 3 blocks ==563== still reachable: 1,895,479 bytes in 21,691 blocks ==563== of which reachable via heuristic: ==563== stdstring : 31 bytes in 1 blocks ==563== newarray : 5,096 bytes in 38 blocks ==563== suppressed: 184,642 bytes in 3,929 blocks ==563== Rerun with --leak-check=full to see details of leaked memory ==563== ==563== For counts of detected and suppressed errors, rerun with: -v ==563== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==587== Memcheck, a memory error detector ==587== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==587== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==587== Command: ./client-test Client::Sync::eds_contact::testItems ==587== Parent PID: 474 ==587== 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-93 line 100: RET=0 wrappercheck-93 line 101: set -e wrappercheck-93 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 108: kill -INT -95 wrappercheck-93 line 108: kill -TERM -95 wrappercheck-93 line 108: kill -TERM 95 wrappercheck-93 line 110: KILL_PID=1004 wrappercheck-93 line 115: set +e wrappercheck-93 line 109: perl -e 'sleep(60); kill(9, -95);' wrappercheck-93 line 116: wait 95 wrappercheck-93 line 117: SUBRET=143 wrappercheck-93 line 118: case $SUBRET in wrappercheck-93 line 118: SUBRET=0 wrappercheck-93 line 120: SUBRET=0 wrappercheck-93 line 121: '[' 1004 ']' wwrappercheck-93 line 122: LC_ALL=C wwrappercheck-93 line 122: kill -KILL 1004 wrappercheck-93 line 122: msg= wrappercheck-93 line 123: grep -q 'No such process' wrappercheck-93 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1004 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-93 line 127: echo '' wrappercheck-93 line 129: wait 1004 wrappercheck-93 line 131: set -e wrappercheck-93 line 132: '[' 0 = 0 ']' wrappercheck-93 line 133: RET=0 wrappercheck-93 line 136: exit 0 wrappercheck-73 line 100: RET=0 wrappercheck-73 line 101: set -e wrappercheck-73 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 108: kill -INT -75 wrappercheck-73 line 108: kill -TERM -75 wrappercheck-73 line 108: kill -TERM 75 wrappercheck-73 line 110: KILL_PID=1009 wrappercheck-73 line 115: set +e wrappercheck-73 line 109: perl -e 'sleep(60); kill(9, -75);' wrappercheck-73 line 116: wait 75 wrappercheck-73 line 117: SUBRET=143 wrappercheck-73 line 118: case $SUBRET in wrappercheck-73 line 118: SUBRET=0 wrappercheck-73 line 120: SUBRET=0 wrappercheck-73 line 121: '[' 1009 ']' wwrappercheck-73 line 122: LC_ALL=C wwrappercheck-73 line 122: kill -KILL 1009 wrappercheck-73 line 122: msg= wrappercheck-73 line 123: echo '' wrappercheck-73 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1009 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-73 line 127: echo '' wrappercheck-73 line 129: wait 1009 wrappercheck-73 line 131: set -e wrappercheck-73 line 132: '[' 0 = 0 ']' wrappercheck-73 line 133: RET=0 wrappercheck-73 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=1014 wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-25 line 115: set +e 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: '[' 1014 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 1014 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: 1014 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 1014 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=1019 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 22 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 1019 ']' wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 1019 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 1019 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 1019 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.893GQeAIMD Fri Jan 5 16:07:06 2018 UTC (+ 627.0s / 2004.7s) === cleaning up ===