runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 1.2s / 1633.1s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/edseds/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 0.4s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/.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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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/testing-amd64/home/edseds/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-testing-amd64/data/runtests/work/testing-amd64/home/edseds/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edseds/data runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) === starting edseds === runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) result dir: /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/24-edseds, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/24-edseds runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) changing into directory /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edseds (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edseds) runtests.py-17083 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edseds; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/edseds' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edseds/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edseds/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edseds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edseds -- env CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale schroot -d /data/runtests/work/testing-amd64/tests/edseds -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig 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 /home/nightly/testing/setup-syncevolution.sh edseds ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edseds'] === Fri Jan 5 16:13:45 2018 UTC (+ 1045.1s / 1045.1s) property changed: status = acquired Fri Jan 5 16:13:45 2018 UTC (+ 0.0s / 1045.1s) using jobserver Fri Jan 5 16:13:45 2018 UTC (+ 0.0s / 1045.1s) === allocating 1 job slot(s) === Fri Jan 5 16:25:47 2018 UTC (+ 722.3s / 1767.5s) === 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-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig 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 /home/nightly/testing/setup-syncevolution.sh edseds ./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: '[' 32 -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: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -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: '[' 29 -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: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 70: set -x wrappercheck-15 line 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: '[' '' ']' ** Message: couldn't access control socket: /tmp/tmp.5nyPEfMcDM/keyring/control: No such file or directory wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edseds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 26 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 24 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 43: shift wrappercheck-21 line 44: DAEMON_SLEEP=5 wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 22 -gt 1 ']' wrappercheck-21 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 35: shift wrappercheck-21 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 20 -gt 1 ']' wrappercheck-21 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 20 -gt 1 ']' wrappercheck-21 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 19 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' evolution-source-registry.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-21 line 72: BACKGROUND_PID=24 wrappercheck-21 line 73: PIDS+=24 wrappercheck-21 line 70: set -x wrappercheck-21 line 75: '[' evolution-source-registry.log ']' wrappercheck-21 line 70: exec wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-21 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/7, but it's already registered wrappercheck-21 line 93: kill -0 24 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' 5 ']' wrappercheck-21 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-21 line 97: sleep 5 wrappercheck-21 line 99: set -x wrappercheck-21 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edseds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 17 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 15 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 13 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 13 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 12 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 11 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 70: exec wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edseds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 9 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 7 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 7 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 6 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 5 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env /home/nightly/testing/setup-syncevolution.sh edseds ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/edseds/.sync4j/evolution/edseds_[12]' '/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/edseds_[12]' '/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-[12]/peers/edseds_[12]' '/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=edseds_1@client-test-edseds-1 ++ credentials edseds_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_1 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edseds --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_1 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edseds_1@client-test-edseds-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/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/addressbook /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/calendar /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/todo /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/memo /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-1/peers/edseds_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 edseds_1@client-test-edseds-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 edseds_1@client-test-edseds-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 edseds_1@client-test-edseds-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 edseds_1@client-test-edseds-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=edseds_2@client-test-edseds-2 ++ credentials edseds_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_2 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edseds --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edseds_2 --sync-property syncURL=http://127.0.0.1:9901/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edseds_2@client-test-edseds-2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered + sources=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/addressbook /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/calendar /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/todo /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/memo /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edseds-2/peers/edseds_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 edseds_2@client-test-edseds-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 edseds_2@client-test-edseds-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 edseds_2@client-test-edseds-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 edseds_2@client-test-edseds-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + context=client-test-edsserver + rm -rf /data/runtests/work/testing-amd64/home/edseds/config/syncevolution/client-test-edsserver + ./syncevolution --configure --daemon=no addressbook/database= addressbook/backend=evolution-contacts calendar/database= calendar/backend=evolution-calendar @client-test-edsserver addressbook calendar [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore [INFO] calendar: checking usability... [INFO] calendar: configuring datastore + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/testing-amd64/tests/edseds/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edseds_1 client-edseds-1@client-test-edsserver addressbook calendar [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' + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/testing-amd64/tests/edseds/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edseds_2 client-edseds-2@client-test-edsserver addressbook calendar [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' + 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 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ 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-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=435 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 435 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 435 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: grep -q 'No such process' wrappercheck-102 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 435 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 435 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=440 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 440 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 440 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: grep -q 'No such process' wrappercheck-82 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 440 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 440 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-21 line 108: kill -INT -24 wrappercheck-21 line 108: kill -TERM -24 wrappercheck-21 line 108: kill -TERM 24 wrappercheck-21 line 110: KILL_PID=445 wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 24 wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 445 ']' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 445 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: echo '' wrappercheck-21 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 445 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 445 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=450 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: '[' 450 ']' wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 450 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: 450 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 450 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.5nyPEfMcDM Fri Jan 5 16:25:58 2018 UTC (+ 10.0s / 1777.5s) === cleaning up === runtests.py-17083 Fri Jan 5 16:25:58 2018 UTC (+ 1777.6s / 3411.0s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edseds; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/edseds' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edseds/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edseds/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edseds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edseds -- 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 --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=edseds CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/testing-amd64/tests/edseds -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact ) Fri Jan 5 16:25:58 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edseds'] === Fri Jan 5 16:30:11 2018 UTC (+ 253.5s / 253.5s) property changed: status = acquired Fri Jan 5 16:30:11 2018 UTC (+ 0.0s / 253.5s) using jobserver Fri Jan 5 16:30:11 2018 UTC (+ 0.0s / 253.5s) === allocating 1 job slot(s) === Fri Jan 5 16:42:18 2018 UTC (+ 727.2s / 980.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-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.TofT15fXHX/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: '[' 55 -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: '[' 53 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 53 -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: '[' 52 -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: '[' 51 -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 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + 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: '[' 49 -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: '[' 47 -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: '[' 45 -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: '[' 43 -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: '[' 43 -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: '[' 42 -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 85: set +x wrappercheck-25 line 70: exec *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 40 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 38 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 36 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 36 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 35 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 34 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 70: set -x wrappercheck-82 line 70: exec wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 32 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 30 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 30 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 29 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 28 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-107 line 16: PIDS= wrappercheck-107 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-107 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-107 line 21: DAEMON_LOG= wrappercheck-107 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-107 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-107 line 25: declare -a BACKGROUND wrappercheck-107 line 26: declare -a ENV wrappercheck-107 line 28: '[' 23 -gt 1 ']' wrappercheck-107 line 28: '[' VALGRIND_CMD_LOG=syncevohttp.log '!=' -- ']' wrappercheck-107 line 29: case "$1" in wrappercheck-107 line 47: ENV[${#ENV[*]}]=VALGRIND_CMD_LOG=syncevohttp.log wrappercheck-107 line 53: shift wrappercheck-107 line 28: '[' 22 -gt 1 ']' wrappercheck-107 line 28: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-107 line 29: case "$1" in wrappercheck-107 line 50: break wrappercheck-107 line 56: '[' 22 -gt 1 ']' wrappercheck-107 line 56: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 21 -gt 1 ']' wrappercheck-107 line 56: '[' /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 20 -gt 1 ']' wrappercheck-107 line 56: '[' --verbosity=3 '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=--verbosity=3 wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 19 -gt 1 ']' wrappercheck-107 line 56: '[' --dbus-verbosity=1 '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=--dbus-verbosity=1 wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 18 -gt 1 ']' wrappercheck-107 line 56: '[' --stdout '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=--stdout wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 17 -gt 1 ']' wrappercheck-107 line 56: '[' --no-syslog '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=--no-syslog wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 16 -gt 1 ']' wrappercheck-107 line 56: '[' --duration=unlimited '!=' -- ']' wrappercheck-107 line 57: BACKGROUND[${#BACKGROUND[*]}]=--duration=unlimited wrappercheck-107 line 58: shift wrappercheck-107 line 56: '[' 15 -gt 1 ']' wrappercheck-107 line 56: '[' -- '!=' -- ']' wrappercheck-107 line 60: shift wrappercheck-107 line 62: '[' '' ']' wrappercheck-107 line 66: set +x *** starting /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh as background daemon, output to stderr wrappercheck-107 line 72: BACKGROUND_PID=111 wrappercheck-107 line 73: PIDS+=111 wrappercheck-107 line 75: '[' '' ']' wrappercheck-107 line 84: '[' '' ']' wrappercheck-107 line 70: set -x wrappercheck-107 line 93: kill -0 111 wrappercheck-107 line 70: exec wrappercheck-107 line 94: set +e wrappercheck-107 line 95: '[' '' ']' wrappercheck-107 line 99: set -x wrappercheck-107 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9901 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9901/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-114 line 16: PIDS= wrappercheck-114 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-114 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-114 line 21: DAEMON_LOG= wrappercheck-114 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-114 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-114 line 25: declare -a BACKGROUND wrappercheck-114 line 26: declare -a ENV wrappercheck-114 line 28: '[' 13 -gt 1 ']' wrappercheck-114 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-114 line 29: case "$1" in wrappercheck-114 line 31: shift wrappercheck-114 line 32: DAEMON_LOG=syncevohttp.log wrappercheck-114 line 53: shift wrappercheck-114 line 28: '[' 11 -gt 1 ']' wrappercheck-114 line 28: '[' --wait-for-daemon-output '!=' -- ']' wrappercheck-114 line 29: case "$1" in wrappercheck-114 line 39: shift wrappercheck-114 line 40: WAIT_FOR_DAEMON_OUTPUT=syncevo-http:.listening.on.port.9901 wrappercheck-114 line 53: shift wrappercheck-114 line 28: '[' 9 -gt 1 ']' wrappercheck-114 line 28: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-114 line 29: case "$1" in wrappercheck-114 line 50: break wrappercheck-114 line 56: '[' 9 -gt 1 ']' wrappercheck-114 line 56: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-114 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-114 line 58: shift wrappercheck-114 line 56: '[' 8 -gt 1 ']' wrappercheck-114 line 56: '[' --debug '!=' -- ']' wrappercheck-114 line 57: BACKGROUND[${#BACKGROUND[*]}]=--debug wrappercheck-114 line 58: shift wrappercheck-114 line 56: '[' 7 -gt 1 ']' wrappercheck-114 line 56: '[' http://127.0.0.1:9901/syncevolution '!=' -- ']' wrappercheck-114 line 57: BACKGROUND[${#BACKGROUND[*]}]=http://127.0.0.1:9901/syncevolution wrappercheck-114 line 58: shift wrappercheck-114 line 56: '[' 6 -gt 1 ']' wrappercheck-114 line 56: '[' -- '!=' -- ']' wrappercheck-114 line 60: shift wrappercheck-114 line 62: '[' syncevohttp.log ']' wrappercheck-114 line 62: '[' syncevo-http:.listening.on.port.9901 ']' wwrappercheck-114 line 63: grep -e syncevo-http:.listening.on.port.9901 syncevohttp.log wwrappercheck-114 line 63: wc -l grep: syncevohttp.log: No such file or directory wrappercheck-114 line 63: daemonmatches=0 wrappercheck-114 line 66: set +x *** starting /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server as background daemon, output to syncevohttp.log wrappercheck-114 line 72: BACKGROUND_PID=125 wrappercheck-114 line 73: PIDS+=125 wrappercheck-114 line 75: '[' syncevohttp.log ']' wrappercheck-114 line 75: '[' syncevo-http:.listening.on.port.9901 ']' wrappercheck-114 line 70: set -x wrappercheck-114 line 70: exec wrappercheck-114 line 76: set +x *** waiting for daemon to write 'syncevo-http:.listening.on.port.9901' into syncevohttp.log wrappercheck-114 line 84: '[' '' ']' wrappercheck-114 line 93: kill -0 125 wrappercheck-114 line 94: set +e wrappercheck-114 line 95: '[' '' ']' wrappercheck-114 line 99: set -x wrappercheck-114 line 99: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact *** 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 --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp --gen-suppressions=all --log-file=/data/runtests/work/testing-amd64/tests/edseds/valgrind.p148.c%p.out ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact Client::Sync::eds_event::testDeleteAllRefresh okay Client::Sync::eds_event::testTwoWaySync okay Client::Sync::eds_event::testSlowSync okay Client::Sync::eds_event::testRefreshFromServerSync okay Client::Sync::eds_event::testRefreshFromClientSync okay Client::Sync::eds_event::testRefreshFromRemoteSync okay Client::Sync::eds_event::testRefreshFromLocalSync okay Client::Sync::eds_event::testTimeout okay Client::Sync::eds_event::testConversion okay Client::Sync::eds_event::testRefreshFromServerSemantic okay Client::Sync::eds_event::testRefreshFromClientSemantic okay Client::Sync::eds_event::testRefreshStatus okay Client::Sync::eds_event::testTwoWayRestart okay Client::Sync::eds_event::testSlowRestart okay Client::Sync::eds_event::testRefreshFromLocalRestart okay Client::Sync::eds_event::testOneWayFromLocalRestart okay Client::Sync::eds_event::testRefreshFromRemoteRestart okay Client::Sync::eds_event::testOneWayFromRemoteRestart okay Client::Sync::eds_event::testManyRestarts okay Client::Sync::eds_event::testCopy okay Client::Sync::eds_event::testDelete okay Client::Sync::eds_event::testAddUpdate okay Client::Sync::eds_event::testManyItems okay Client::Sync::eds_event::testManyDeletes okay Client::Sync::eds_event::testSlowSyncSemanticcouldn't lock 16384 bytes of memory (libgcrypt): Cannot allocate memory ** Message: couldn't allocate secure memory to keep passwords and or keys from being written to the disk okay Client::Sync::eds_event::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event::testDeleteBothSides okay Client::Sync::eds_event::testAddBothSides okay Client::Sync::eds_event::testAddBothSidesRefresh okay Client::Sync::eds_event::testLinkedItemsParentChild okay Client::Sync::eds_event::testLinkedItemsChild okay Client::Sync::eds_event::testLinkedItemsChildParent okay Client::Sync::eds_event::testUpdate okay Client::Sync::eds_event::testMerge okay Client::Sync::eds_event::testTwinning okay Client::Sync::eds_event::testItems okay Client::Sync::eds_event::testItemsXML okay Client::Sync::eds_event::testMaxMsg okay Client::Sync::eds_event::testLargeObject okay Client::Sync::eds_event::testOneWayFromServer okay Client::Sync::eds_event::testOneWayFromClient okay Client::Sync::eds_event::testOneWayFromRemote okay Client::Sync::eds_event::testOneWayFromLocal okay Client::Sync::eds_contact::testDeleteAllRefresh okay Client::Sync::eds_contact::testTwoWaySync okay Client::Sync::eds_contact::testSlowSync okay Client::Sync::eds_contact::testRefreshFromServerSync okay Client::Sync::eds_contact::testRefreshFromClientSync okay Client::Sync::eds_contact::testRefreshFromRemoteSync okay Client::Sync::eds_contact::testRefreshFromLocalSync okay Client::Sync::eds_contact::testConversion okay Client::Sync::eds_contact::testRefreshFromServerSemantic okay Client::Sync::eds_contact::testRefreshFromClientSemantic okay Client::Sync::eds_contact::testRefreshStatus okay Client::Sync::eds_contact::testTwoWayRestart okay Client::Sync::eds_contact::testSlowRestart okay Client::Sync::eds_contact::testRefreshFromLocalRestart okay Client::Sync::eds_contact::testOneWayFromLocalRestart okay Client::Sync::eds_contact::testRefreshFromRemoteRestart okay Client::Sync::eds_contact::testOneWayFromRemoteRestart okay Client::Sync::eds_contact::testManyRestarts okay Client::Sync::eds_contact::testCopy okay Client::Sync::eds_contact::testDelete okay Client::Sync::eds_contact::testAddUpdate okay Client::Sync::eds_contact::testManyItems okay Client::Sync::eds_contact::testManyDeletes okay Client::Sync::eds_contact::testSlowSyncSemantic okay Client::Sync::eds_contact::testComplexRefreshFromServerSemantic okay Client::Sync::eds_contact::testDeleteBothSides okay Client::Sync::eds_contact::testUpdate okay Client::Sync::eds_contact::testComplexUpdate okay Client::Sync::eds_contact::testMerge okay Client::Sync::eds_contact::testTwinning okay Client::Sync::eds_contact::testItems okay Client::Sync::eds_contact::testItemsXML okay Client::Sync::eds_contact::testExtensions okay Client::Sync::eds_contact::testMaxMsg okay Client::Sync::eds_contact::testLargeObject okay Client::Sync::eds_contact::testOneWayFromServer okay Client::Sync::eds_contact::testOneWayFromClient okay Client::Sync::eds_contact::testOneWayFromRemote okay Client::Sync::eds_contact::testOneWayFromLocal okay Client::Sync::eds_event_eds_contact::testDeleteAllRefresh okay Client::Sync::eds_event_eds_contact::testTwoWaySync okay Client::Sync::eds_event_eds_contact::testSlowSync okay Client::Sync::eds_event_eds_contact::testRefreshFromServerSync okay Client::Sync::eds_event_eds_contact::testRefreshFromClientSync okay Client::Sync::eds_event_eds_contact::testRefreshFromRemoteSync okay Client::Sync::eds_event_eds_contact::testRefreshFromLocalSync okay Client::Sync::eds_event_eds_contact::testConversion okay Client::Sync::eds_event_eds_contact::testRefreshFromServerSemantic okay Client::Sync::eds_event_eds_contact::testRefreshFromClientSemantic okay Client::Sync::eds_event_eds_contact::testRefreshStatus okay Client::Sync::eds_event_eds_contact::testTwoWayRestart okay Client::Sync::eds_event_eds_contact::testSlowRestart okay Client::Sync::eds_event_eds_contact::testRefreshFromLocalRestart okay Client::Sync::eds_event_eds_contact::testOneWayFromLocalRestart okay Client::Sync::eds_event_eds_contact::testRefreshFromRemoteRestart okay Client::Sync::eds_event_eds_contact::testOneWayFromRemoteRestart okay Client::Sync::eds_event_eds_contact::testManyRestarts okay Client::Sync::eds_event_eds_contact::testCopy okay Client::Sync::eds_event_eds_contact::testDelete okay Client::Sync::eds_event_eds_contact::testAddUpdate okay Client::Sync::eds_event_eds_contact::testManyItems okay Client::Sync::eds_event_eds_contact::testManyDeletes okay Client::Sync::eds_event_eds_contact::testSlowSyncSemantic okay Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event_eds_contact::testDeleteBothSides okay Client::Sync::eds_event_eds_contact::testUpdate okay Client::Sync::eds_event_eds_contact::testMerge okay Client::Sync::eds_event_eds_contact::testTwinning okay Client::Sync::eds_event_eds_contact::testItems okay Client::Sync::eds_event_eds_contact::testItemsXML okay Client::Sync::eds_event_eds_contact::testMaxMsg okay Client::Sync::eds_event_eds_contact::testLargeObject okay Client::Sync::eds_event_eds_contact::testOneWayFromServer okay Client::Sync::eds_event_eds_contact::testOneWayFromClient okay Client::Sync::eds_event_eds_contact::testOneWayFromRemote okay Client::Sync::eds_event_eds_contact::testOneWayFromLocal okay OKvalgrindcheck (148): './client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact' (152): returned 0 ==10004== Memcheck, a memory error detector ==10004== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10004== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10004== Command: ./client-test Client::Sync::eds_contact::testTwinning ==10004== Parent PID: 9941 ==10004== ==10093== Memcheck, a memory error detector ==10093== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10093== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10093== Command: ./client-test Client::Sync::eds_contact::testTwinning ==10093== Parent PID: 9941 ==10093== ==10097== Memcheck, a memory error detector ==10097== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10097== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10097== Command: ./client-test Client::Sync::eds_contact::testItems ==10097== Parent PID: 152 ==10097== ==10097== ==10097== HEAP SUMMARY: ==10097== in use at exit: 7,052,872 bytes in 58,138 blocks ==10097== total heap usage: 1,778,495 allocs, 1,720,304 frees, 240,889,209 bytes allocated ==10097== ==10097== LEAK SUMMARY: ==10097== definitely lost: 0 bytes in 0 blocks ==10097== indirectly lost: 0 bytes in 0 blocks ==10097== possibly lost: 960 bytes in 3 blocks ==10097== still reachable: 6,304,441 bytes in 48,004 blocks ==10097== of which reachable via heuristic: ==10097== length64 : 6,000 bytes in 99 blocks ==10097== newarray : 6,392 bytes in 54 blocks ==10097== suppressed: 639,615 bytes in 9,335 blocks ==10097== Reachable blocks (those to which a pointer was found) are not shown. ==10097== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10097== ==10097== For counts of detected and suppressed errors, rerun with: -v ==10097== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10160== Memcheck, a memory error detector ==10160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10160== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10160== Command: ./client-test Client::Sync::eds_contact::testItems ==10160== Parent PID: 10097 ==10160== ==10217== Memcheck, a memory error detector ==10217== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10217== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10217== Command: ./client-test Client::Sync::eds_contact::testItems ==10217== Parent PID: 10097 ==10217== ==10222== Memcheck, a memory error detector ==10222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10222== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==10222== Parent PID: 152 ==10222== ==10222== ==10222== HEAP SUMMARY: ==10222== in use at exit: 7,052,864 bytes in 58,138 blocks ==10222== total heap usage: 1,794,560 allocs, 1,736,369 frees, 240,317,156 bytes allocated ==10222== ==10222== LEAK SUMMARY: ==10222== definitely lost: 0 bytes in 0 blocks ==10222== indirectly lost: 0 bytes in 0 blocks ==10222== possibly lost: 960 bytes in 3 blocks ==10222== still reachable: 6,304,197 bytes in 47,998 blocks ==10222== of which reachable via heuristic: ==10222== length64 : 6,000 bytes in 99 blocks ==10222== newarray : 6,392 bytes in 54 blocks ==10222== suppressed: 639,851 bytes in 9,341 blocks ==10222== Reachable blocks (those to which a pointer was found) are not shown. ==10222== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10222== ==10222== For counts of detected and suppressed errors, rerun with: -v ==10222== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10285== Memcheck, a memory error detector ==10285== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10285== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10285== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==10285== Parent PID: 10222 ==10285== ==10341== Memcheck, a memory error detector ==10341== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10341== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10341== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==10341== Parent PID: 10222 ==10341== ==10345== Memcheck, a memory error detector ==10345== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10345== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10345== Command: ./client-test Client::Sync::eds_contact::testExtensions ==10345== Parent PID: 152 ==10345== ==10345== ==10345== HEAP SUMMARY: ==10345== in use at exit: 7,055,942 bytes in 58,194 blocks ==10345== total heap usage: 2,763,429 allocs, 2,705,180 frees, 376,067,792 bytes allocated ==10345== ==10345== LEAK SUMMARY: ==10345== definitely lost: 0 bytes in 0 blocks ==10345== indirectly lost: 0 bytes in 0 blocks ==10345== possibly lost: 960 bytes in 3 blocks ==10345== still reachable: 6,305,982 bytes in 48,026 blocks ==10345== of which reachable via heuristic: ==10345== length64 : 6,000 bytes in 99 blocks ==10345== newarray : 6,392 bytes in 54 blocks ==10345== suppressed: 641,144 bytes in 9,369 blocks ==10345== Reachable blocks (those to which a pointer was found) are not shown. ==10345== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10345== ==10345== For counts of detected and suppressed errors, rerun with: -v ==10345== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10408== Memcheck, a memory error detector ==10408== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10408== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10408== Command: ./client-test Client::Sync::eds_contact::testExtensions ==10408== Parent PID: 10345 ==10408== ==10501== Memcheck, a memory error detector ==10501== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10501== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10501== Command: ./client-test Client::Sync::eds_contact::testExtensions ==10501== Parent PID: 10345 ==10501== ==10507== Memcheck, a memory error detector ==10507== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10507== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10507== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==10507== Parent PID: 152 ==10507== ==10507== ==10507== HEAP SUMMARY: ==10507== in use at exit: 7,049,299 bytes in 58,072 blocks ==10507== total heap usage: 1,866,585 allocs, 1,808,460 frees, 274,267,377 bytes allocated ==10507== ==10507== LEAK SUMMARY: ==10507== definitely lost: 0 bytes in 0 blocks ==10507== indirectly lost: 0 bytes in 0 blocks ==10507== possibly lost: 960 bytes in 3 blocks ==10507== still reachable: 6,303,038 bytes in 47,987 blocks ==10507== of which reachable via heuristic: ==10507== length64 : 6,000 bytes in 99 blocks ==10507== newarray : 6,392 bytes in 54 blocks ==10507== suppressed: 637,445 bytes in 9,286 blocks ==10507== Reachable blocks (those to which a pointer was found) are not shown. ==10507== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10507== ==10507== For counts of detected and suppressed errors, rerun with: -v ==10507== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10604== Memcheck, a memory error detector ==10604== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10604== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10604== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==10604== Parent PID: 10507 ==10604== ==10609== Memcheck, a memory error detector ==10609== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10609== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10609== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==10609== Parent PID: 152 ==10609== ==10609== ==10609== HEAP SUMMARY: ==10609== in use at exit: 7,055,683 bytes in 58,182 blocks ==10609== total heap usage: 1,902,333 allocs, 1,844,098 frees, 255,674,783 bytes allocated ==10609== ==10609== LEAK SUMMARY: ==10609== definitely lost: 0 bytes in 0 blocks ==10609== indirectly lost: 0 bytes in 0 blocks ==10609== possibly lost: 960 bytes in 3 blocks ==10609== still reachable: 6,305,779 bytes in 48,016 blocks ==10609== of which reachable via heuristic: ==10609== length64 : 6,000 bytes in 99 blocks ==10609== newarray : 6,392 bytes in 54 blocks ==10609== suppressed: 641,088 bytes in 9,367 blocks ==10609== Reachable blocks (those to which a pointer was found) are not shown. ==10609== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10609== ==10609== For counts of detected and suppressed errors, rerun with: -v ==10609== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10706== Memcheck, a memory error detector ==10706== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10706== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10706== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==10706== Parent PID: 10609 ==10706== ==10711== Memcheck, a memory error detector ==10711== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10711== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10711== Command: ./client-test Client::Sync::eds_contact::testOneWayFromServer ==10711== Parent PID: 152 ==10711== ==10711== ==10711== HEAP SUMMARY: ==10711== in use at exit: 7,056,586 bytes in 58,226 blocks ==10711== total heap usage: 2,910,723 allocs, 2,852,440 frees, 423,887,991 bytes allocated ==10711== ==10711== LEAK SUMMARY: ==10711== definitely lost: 0 bytes in 0 blocks ==10711== indirectly lost: 0 bytes in 0 blocks ==10711== possibly lost: 960 bytes in 3 blocks ==10711== still reachable: 6,304,554 bytes in 47,996 blocks ==10711== of which reachable via heuristic: ==10711== length64 : 6,000 bytes in 99 blocks ==10711== newarray : 6,392 bytes in 54 blocks ==10711== suppressed: 643,216 bytes in 9,431 blocks ==10711== Reachable blocks (those to which a pointer was found) are not shown. ==10711== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10711== ==10711== For counts of detected and suppressed errors, rerun with: -v ==10711== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10914== Memcheck, a memory error detector ==10914== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10914== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10914== Command: ./client-test Client::Sync::eds_contact::testOneWayFromClient ==10914== Parent PID: 152 ==10914== ==10914== ==10914== HEAP SUMMARY: ==10914== in use at exit: 7,050,788 bytes in 58,102 blocks ==10914== total heap usage: 2,893,944 allocs, 2,835,785 frees, 422,378,010 bytes allocated ==10914== ==10914== LEAK SUMMARY: ==10914== definitely lost: 0 bytes in 0 blocks ==10914== indirectly lost: 0 bytes in 0 blocks ==10914== possibly lost: 960 bytes in 3 blocks ==10914== still reachable: 6,303,206 bytes in 47,991 blocks ==10914== of which reachable via heuristic: ==10914== length64 : 6,000 bytes in 99 blocks ==10914== newarray : 6,392 bytes in 54 blocks ==10914== suppressed: 638,766 bytes in 9,312 blocks ==10914== Reachable blocks (those to which a pointer was found) are not shown. ==10914== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10914== ==10914== For counts of detected and suppressed errors, rerun with: -v ==10914== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11129== Memcheck, a memory error detector ==11129== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11129== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11129== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemote ==11129== Parent PID: 152 ==11129== ==11129== ==11129== HEAP SUMMARY: ==11129== in use at exit: 7,057,181 bytes in 58,212 blocks ==11129== total heap usage: 2,848,525 allocs, 2,790,256 frees, 419,271,807 bytes allocated ==11129== ==11129== LEAK SUMMARY: ==11129== definitely lost: 0 bytes in 0 blocks ==11129== indirectly lost: 0 bytes in 0 blocks ==11129== possibly lost: 960 bytes in 3 blocks ==11129== still reachable: 6,306,701 bytes in 48,038 blocks ==11129== of which reachable via heuristic: ==11129== length64 : 6,000 bytes in 99 blocks ==11129== newarray : 6,392 bytes in 54 blocks ==11129== suppressed: 641,664 bytes in 9,375 blocks ==11129== Reachable blocks (those to which a pointer was found) are not shown. ==11129== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11129== ==11129== For counts of detected and suppressed errors, rerun with: -v ==11129== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1119== Memcheck, a memory error detector ==1119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1119== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalRestart ==1119== Parent PID: 152 ==1119== ==1119== ==1119== HEAP SUMMARY: ==1119== in use at exit: 6,997,890 bytes in 57,846 blocks ==1119== total heap usage: 1,876,109 allocs, 1,818,209 frees, 272,723,998 bytes allocated ==1119== ==1119== LEAK SUMMARY: ==1119== definitely lost: 0 bytes in 0 blocks ==1119== indirectly lost: 0 bytes in 0 blocks ==1119== possibly lost: 960 bytes in 3 blocks ==1119== still reachable: 6,230,104 bytes in 47,986 blocks ==1119== of which reachable via heuristic: ==1119== length64 : 6,024 bytes in 99 blocks ==1119== newarray : 6,408 bytes in 55 blocks ==1119== suppressed: 678,818 bytes in 9,186 blocks ==1119== Reachable blocks (those to which a pointer was found) are not shown. ==1119== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1119== ==1119== For counts of detected and suppressed errors, rerun with: -v ==1119== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11331== Memcheck, a memory error detector ==11331== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11331== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11331== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocal ==11331== Parent PID: 152 ==11331== ==11331== ==11331== HEAP SUMMARY: ==11331== in use at exit: 7,054,617 bytes in 58,196 blocks ==11331== total heap usage: 2,894,453 allocs, 2,836,200 frees, 422,395,953 bytes allocated ==11331== ==11331== LEAK SUMMARY: ==11331== definitely lost: 0 bytes in 0 blocks ==11331== indirectly lost: 0 bytes in 0 blocks ==11331== possibly lost: 960 bytes in 3 blocks ==11331== still reachable: 6,303,522 bytes in 47,993 blocks ==11331== of which reachable via heuristic: ==11331== length64 : 6,000 bytes in 99 blocks ==11331== newarray : 6,392 bytes in 54 blocks ==11331== suppressed: 642,279 bytes in 9,404 blocks ==11331== Reachable blocks (those to which a pointer was found) are not shown. ==11331== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11331== ==11331== For counts of detected and suppressed errors, rerun with: -v ==11331== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11545== Memcheck, a memory error detector ==11545== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11545== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11545== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteAllRefresh ==11545== Parent PID: 152 ==11545== ==11545== ==11545== HEAP SUMMARY: ==11545== in use at exit: 7,086,512 bytes in 58,636 blocks ==11545== total heap usage: 1,720,528 allocs, 1,661,839 frees, 225,448,740 bytes allocated ==11545== ==11545== LEAK SUMMARY: ==11545== definitely lost: 0 bytes in 0 blocks ==11545== indirectly lost: 0 bytes in 0 blocks ==11545== possibly lost: 1,392 bytes in 4 blocks ==11545== still reachable: 6,231,242 bytes in 48,004 blocks ==11545== of which reachable via heuristic: ==11545== length64 : 6,728 bytes in 107 blocks ==11545== newarray : 6,456 bytes in 58 blocks ==11545== suppressed: 739,758 bytes in 9,770 blocks ==11545== Reachable blocks (those to which a pointer was found) are not shown. ==11545== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11545== ==11545== For counts of detected and suppressed errors, rerun with: -v ==11545== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11728== Memcheck, a memory error detector ==11728== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11728== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11728== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWaySync ==11728== Parent PID: 152 ==11728== ==11728== ==11728== HEAP SUMMARY: ==11728== in use at exit: 7,031,615 bytes in 58,297 blocks ==11728== total heap usage: 680,590 allocs, 622,242 frees, 97,824,127 bytes allocated ==11728== ==11728== LEAK SUMMARY: ==11728== definitely lost: 0 bytes in 0 blocks ==11728== indirectly lost: 0 bytes in 0 blocks ==11728== possibly lost: 1,392 bytes in 4 blocks ==11728== still reachable: 6,237,508 bytes in 48,117 blocks ==11728== of which reachable via heuristic: ==11728== length64 : 6,688 bytes in 106 blocks ==11728== newarray : 6,456 bytes in 58 blocks ==11728== suppressed: 699,459 bytes in 9,455 blocks ==11728== Reachable blocks (those to which a pointer was found) are not shown. ==11728== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11728== ==11728== For counts of detected and suppressed errors, rerun with: -v ==11728== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11789== Memcheck, a memory error detector ==11789== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11789== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11789== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSync ==11789== Parent PID: 152 ==11789== ==11789== ==11789== HEAP SUMMARY: ==11789== in use at exit: 7,025,226 bytes in 58,185 blocks ==11789== total heap usage: 681,107 allocs, 622,871 frees, 97,911,658 bytes allocated ==11789== ==11789== LEAK SUMMARY: ==11789== definitely lost: 0 bytes in 0 blocks ==11789== indirectly lost: 0 bytes in 0 blocks ==11789== possibly lost: 1,392 bytes in 4 blocks ==11789== still reachable: 6,230,382 bytes in 47,996 blocks ==11789== of which reachable via heuristic: ==11789== length64 : 6,688 bytes in 106 blocks ==11789== newarray : 6,456 bytes in 58 blocks ==11789== suppressed: 700,196 bytes in 9,464 blocks ==11789== Reachable blocks (those to which a pointer was found) are not shown. ==11789== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11789== ==11789== For counts of detected and suppressed errors, rerun with: -v ==11789== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11851== Memcheck, a memory error detector ==11851== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11851== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11851== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSync ==11851== Parent PID: 152 ==11851== ==11851== ==11851== HEAP SUMMARY: ==11851== in use at exit: 7,033,324 bytes in 58,325 blocks ==11851== total heap usage: 680,518 allocs, 622,142 frees, 97,902,336 bytes allocated ==11851== ==11851== LEAK SUMMARY: ==11851== definitely lost: 0 bytes in 0 blocks ==11851== indirectly lost: 0 bytes in 0 blocks ==11851== possibly lost: 1,392 bytes in 4 blocks ==11851== still reachable: 6,238,961 bytes in 48,141 blocks ==11851== of which reachable via heuristic: ==11851== length64 : 6,688 bytes in 106 blocks ==11851== newarray : 6,456 bytes in 58 blocks ==11851== suppressed: 699,715 bytes in 9,459 blocks ==11851== Reachable blocks (those to which a pointer was found) are not shown. ==11851== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11851== ==11851== For counts of detected and suppressed errors, rerun with: -v ==11851== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11913== Memcheck, a memory error detector ==11913== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11913== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11913== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSync ==11913== Parent PID: 152 ==11913== ==11913== ==11913== HEAP SUMMARY: ==11913== in use at exit: 7,026,903 bytes in 58,218 blocks ==11913== total heap usage: 681,753 allocs, 623,484 frees, 97,937,094 bytes allocated ==11913== ==11913== LEAK SUMMARY: ==11913== definitely lost: 0 bytes in 0 blocks ==11913== indirectly lost: 0 bytes in 0 blocks ==11913== possibly lost: 1,392 bytes in 4 blocks ==11913== still reachable: 6,230,922 bytes in 48,001 blocks ==11913== of which reachable via heuristic: ==11913== length64 : 6,688 bytes in 106 blocks ==11913== newarray : 6,456 bytes in 58 blocks ==11913== suppressed: 701,165 bytes in 9,490 blocks ==11913== Reachable blocks (those to which a pointer was found) are not shown. ==11913== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11913== ==11913== For counts of detected and suppressed errors, rerun with: -v ==11913== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11977== Memcheck, a memory error detector ==11977== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11977== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11977== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteSync ==11977== Parent PID: 152 ==11977== ==11977== ==11977== HEAP SUMMARY: ==11977== in use at exit: 7,026,943 bytes in 58,213 blocks ==11977== total heap usage: 681,074 allocs, 622,810 frees, 97,921,060 bytes allocated ==11977== ==11977== LEAK SUMMARY: ==11977== definitely lost: 0 bytes in 0 blocks ==11977== indirectly lost: 0 bytes in 0 blocks ==11977== possibly lost: 1,392 bytes in 4 blocks ==11977== still reachable: 6,231,819 bytes in 48,019 blocks ==11977== of which reachable via heuristic: ==11977== length64 : 6,688 bytes in 106 blocks ==11977== newarray : 6,456 bytes in 58 blocks ==11977== suppressed: 700,476 bytes in 9,469 blocks ==11977== Reachable blocks (those to which a pointer was found) are not shown. ==11977== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11977== ==11977== For counts of detected and suppressed errors, rerun with: -v ==11977== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12038== Memcheck, a memory error detector ==12038== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12038== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12038== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalSync ==12038== Parent PID: 152 ==12038== ==12038== ==12038== HEAP SUMMARY: ==12038== in use at exit: 7,031,709 bytes in 58,297 blocks ==12038== total heap usage: 680,758 allocs, 622,410 frees, 97,904,724 bytes allocated ==12038== ==12038== LEAK SUMMARY: ==12038== definitely lost: 0 bytes in 0 blocks ==12038== indirectly lost: 0 bytes in 0 blocks ==12038== possibly lost: 1,392 bytes in 4 blocks ==12038== still reachable: 6,235,785 bytes in 48,089 blocks ==12038== of which reachable via heuristic: ==12038== length64 : 6,688 bytes in 106 blocks ==12038== newarray : 6,456 bytes in 58 blocks ==12038== suppressed: 701,276 bytes in 9,483 blocks ==12038== Reachable blocks (those to which a pointer was found) are not shown. ==12038== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12038== ==12038== For counts of detected and suppressed errors, rerun with: -v ==12038== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12098== Memcheck, a memory error detector ==12098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12098== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12098== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==12098== Parent PID: 152 ==12098== ==12098== ==12098== HEAP SUMMARY: ==12098== in use at exit: 2,916,182 bytes in 30,309 blocks ==12098== total heap usage: 403,459 allocs, 373,099 frees, 55,150,075 bytes allocated ==12098== ==12098== LEAK SUMMARY: ==12098== definitely lost: 0 bytes in 0 blocks ==12098== indirectly lost: 0 bytes in 0 blocks ==12098== possibly lost: 1,392 bytes in 4 blocks ==12098== still reachable: 2,220,285 bytes in 21,429 blocks ==12098== of which reachable via heuristic: ==12098== length64 : 5,560 bytes in 88 blocks ==12098== newarray : 6,360 bytes in 52 blocks ==12098== suppressed: 618,513 bytes in 8,300 blocks ==12098== Reachable blocks (those to which a pointer was found) are not shown. ==12098== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12098== ==12098== For counts of detected and suppressed errors, rerun with: -v ==12098== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12131== Memcheck, a memory error detector ==12131== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12131== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12131== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==12131== Parent PID: 12098 ==12131== ==12135== Memcheck, a memory error detector ==12135== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12135== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12135== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==12135== Parent PID: 12098 ==12135== ==12140== Memcheck, a memory error detector ==12140== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12140== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12140== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSemantic ==12140== Parent PID: 152 ==12140== ==12140== ==12140== HEAP SUMMARY: ==12140== in use at exit: 7,095,220 bytes in 58,774 blocks ==12140== total heap usage: 1,574,985 allocs, 1,516,158 frees, 215,392,907 bytes allocated ==12140== ==12140== LEAK SUMMARY: ==12140== definitely lost: 0 bytes in 0 blocks ==12140== indirectly lost: 0 bytes in 0 blocks ==12140== possibly lost: 1,392 bytes in 4 blocks ==12140== still reachable: 6,237,412 bytes in 48,116 blocks ==12140== of which reachable via heuristic: ==12140== length64 : 6,728 bytes in 107 blocks ==12140== newarray : 6,456 bytes in 58 blocks ==12140== suppressed: 742,464 bytes in 9,798 blocks ==12140== Reachable blocks (those to which a pointer was found) are not shown. ==12140== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12140== ==12140== For counts of detected and suppressed errors, rerun with: -v ==12140== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12298== Memcheck, a memory error detector ==12298== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12298== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12298== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSemantic ==12298== Parent PID: 152 ==12298== ==12298== ==12298== HEAP SUMMARY: ==12298== in use at exit: 7,089,745 bytes in 58,702 blocks ==12298== total heap usage: 1,966,069 allocs, 1,907,313 frees, 270,618,005 bytes allocated ==12298== ==12298== LEAK SUMMARY: ==12298== definitely lost: 0 bytes in 0 blocks ==12298== indirectly lost: 0 bytes in 0 blocks ==12298== possibly lost: 1,392 bytes in 4 blocks ==12298== still reachable: 6,231,202 bytes in 48,004 blocks ==12298== of which reachable via heuristic: ==12298== length64 : 6,728 bytes in 107 blocks ==12298== newarray : 6,456 bytes in 58 blocks ==12298== suppressed: 743,199 bytes in 9,838 blocks ==12298== Reachable blocks (those to which a pointer was found) are not shown. ==12298== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12298== ==12298== For counts of detected and suppressed errors, rerun with: -v ==12298== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12493== Memcheck, a memory error detector ==12493== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12493== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12493== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshStatus ==12493== Parent PID: 152 ==12493== ==12493== ==12493== HEAP SUMMARY: ==12493== in use at exit: 7,082,445 bytes in 58,574 blocks ==12493== total heap usage: 1,282,184 allocs, 1,223,558 frees, 166,799,135 bytes allocated ==12493== ==12493== LEAK SUMMARY: ==12493== definitely lost: 0 bytes in 0 blocks ==12493== indirectly lost: 0 bytes in 0 blocks ==12493== possibly lost: 1,392 bytes in 4 blocks ==12493== still reachable: 6,229,450 bytes in 47,992 blocks ==12493== of which reachable via heuristic: ==12493== length64 : 6,728 bytes in 107 blocks ==12493== newarray : 6,456 bytes in 58 blocks ==12493== suppressed: 737,651 bytes in 9,722 blocks ==12493== Reachable blocks (those to which a pointer was found) are not shown. ==12493== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12493== ==12493== For counts of detected and suppressed errors, rerun with: -v ==12493== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12631== Memcheck, a memory error detector ==12631== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12631== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12631== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWayRestart ==12631== Parent PID: 152 ==12631== ==12631== ==12631== HEAP SUMMARY: ==12631== in use at exit: 7,095,220 bytes in 58,774 blocks ==12631== total heap usage: 2,224,764 allocs, 2,165,936 frees, 295,412,313 bytes allocated ==12631== ==12631== LEAK SUMMARY: ==12631== definitely lost: 0 bytes in 0 blocks ==12631== indirectly lost: 0 bytes in 0 blocks ==12631== possibly lost: 1,392 bytes in 4 blocks ==12631== still reachable: 6,237,412 bytes in 48,116 blocks ==12631== of which reachable via heuristic: ==12631== length64 : 6,728 bytes in 107 blocks ==12631== newarray : 6,456 bytes in 58 blocks ==12631== suppressed: 742,464 bytes in 9,798 blocks ==12631== Reachable blocks (those to which a pointer was found) are not shown. ==12631== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12631== ==12631== For counts of detected and suppressed errors, rerun with: -v ==12631== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1271== Memcheck, a memory error detector ==1271== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1271== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1271== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocalRestart ==1271== Parent PID: 152 ==1271== ==1271== ==1271== HEAP SUMMARY: ==1271== in use at exit: 6,999,062 bytes in 57,847 blocks ==1271== total heap usage: 1,868,221 allocs, 1,810,320 frees, 271,956,693 bytes allocated ==1271== ==1271== LEAK SUMMARY: ==1271== definitely lost: 0 bytes in 0 blocks ==1271== indirectly lost: 0 bytes in 0 blocks ==1271== possibly lost: 960 bytes in 3 blocks ==1271== still reachable: 6,232,851 bytes in 48,034 blocks ==1271== of which reachable via heuristic: ==1271== length64 : 6,024 bytes in 99 blocks ==1271== newarray : 6,408 bytes in 55 blocks ==1271== suppressed: 677,243 bytes in 9,139 blocks ==1271== Reachable blocks (those to which a pointer was found) are not shown. ==1271== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1271== ==1271== For counts of detected and suppressed errors, rerun with: -v ==1271== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12911== Memcheck, a memory error detector ==12911== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12911== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12911== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowRestart ==12911== Parent PID: 152 ==12911== ==12911== ==12911== HEAP SUMMARY: ==12911== in use at exit: 7,099,842 bytes in 58,852 blocks ==12911== total heap usage: 2,237,160 allocs, 2,178,254 frees, 296,968,775 bytes allocated ==12911== ==12911== LEAK SUMMARY: ==12911== definitely lost: 0 bytes in 0 blocks ==12911== indirectly lost: 0 bytes in 0 blocks ==12911== possibly lost: 1,392 bytes in 4 blocks ==12911== still reachable: 6,241,298 bytes in 48,183 blocks ==12911== of which reachable via heuristic: ==12911== length64 : 6,728 bytes in 107 blocks ==12911== newarray : 6,456 bytes in 58 blocks ==12911== suppressed: 743,200 bytes in 9,809 blocks ==12911== Reachable blocks (those to which a pointer was found) are not shown. ==12911== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12911== ==12911== For counts of detected and suppressed errors, rerun with: -v ==12911== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13191== Memcheck, a memory error detector ==13191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13191== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalRestart ==13191== Parent PID: 152 ==13191== ==13191== ==13191== HEAP SUMMARY: ==13191== in use at exit: 7,095,676 bytes in 58,799 blocks ==13191== total heap usage: 2,238,054 allocs, 2,179,201 frees, 296,998,757 bytes allocated ==13191== ==13191== LEAK SUMMARY: ==13191== definitely lost: 0 bytes in 0 blocks ==13191== indirectly lost: 0 bytes in 0 blocks ==13191== possibly lost: 1,392 bytes in 4 blocks ==13191== still reachable: 6,236,313 bytes in 48,096 blocks ==13191== of which reachable via heuristic: ==13191== length64 : 6,728 bytes in 107 blocks ==13191== newarray : 6,456 bytes in 58 blocks ==13191== suppressed: 744,019 bytes in 9,843 blocks ==13191== Reachable blocks (those to which a pointer was found) are not shown. ==13191== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13191== ==13191== For counts of detected and suppressed errors, rerun with: -v ==13191== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13473== Memcheck, a memory error detector ==13473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13473== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13473== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocalRestart ==13473== Parent PID: 152 ==13473== ==13473== ==13473== HEAP SUMMARY: ==13473== in use at exit: 7,093,385 bytes in 58,742 blocks ==13473== total heap usage: 2,223,345 allocs, 2,164,549 frees, 295,498,912 bytes allocated ==13473== ==13473== LEAK SUMMARY: ==13473== definitely lost: 0 bytes in 0 blocks ==13473== indirectly lost: 0 bytes in 0 blocks ==13473== possibly lost: 1,392 bytes in 4 blocks ==13473== still reachable: 6,235,929 bytes in 48,091 blocks ==13473== of which reachable via heuristic: ==13473== length64 : 6,728 bytes in 107 blocks ==13473== newarray : 6,456 bytes in 58 blocks ==13473== suppressed: 742,112 bytes in 9,791 blocks ==13473== Reachable blocks (those to which a pointer was found) are not shown. ==13473== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13473== ==13473== For counts of detected and suppressed errors, rerun with: -v ==13473== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13752== Memcheck, a memory error detector ==13752== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13752== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13752== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteRestart ==13752== Parent PID: 152 ==13752== ==13752== ==13752== HEAP SUMMARY: ==13752== in use at exit: 7,093,401 bytes in 58,742 blocks ==13752== total heap usage: 1,244,571 allocs, 1,185,777 frees, 166,858,357 bytes allocated ==13752== ==13752== LEAK SUMMARY: ==13752== definitely lost: 0 bytes in 0 blocks ==13752== indirectly lost: 0 bytes in 0 blocks ==13752== possibly lost: 1,392 bytes in 4 blocks ==13752== still reachable: 6,235,929 bytes in 48,091 blocks ==13752== of which reachable via heuristic: ==13752== length64 : 6,728 bytes in 107 blocks ==13752== newarray : 6,456 bytes in 58 blocks ==13752== suppressed: 742,128 bytes in 9,791 blocks ==13752== Reachable blocks (those to which a pointer was found) are not shown. ==13752== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13752== ==13752== For counts of detected and suppressed errors, rerun with: -v ==13752== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13898== Memcheck, a memory error detector ==13898== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13898== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13898== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemoteRestart ==13898== Parent PID: 152 ==13898== ==13898== ==13898== HEAP SUMMARY: ==13898== in use at exit: 7,093,425 bytes in 58,744 blocks ==13898== total heap usage: 2,209,287 allocs, 2,150,489 frees, 294,084,473 bytes allocated ==13898== ==13898== LEAK SUMMARY: ==13898== definitely lost: 0 bytes in 0 blocks ==13898== indirectly lost: 0 bytes in 0 blocks ==13898== possibly lost: 1,392 bytes in 4 blocks ==13898== still reachable: 6,235,769 bytes in 48,088 blocks ==13898== of which reachable via heuristic: ==13898== length64 : 6,728 bytes in 107 blocks ==13898== newarray : 6,456 bytes in 58 blocks ==13898== suppressed: 742,312 bytes in 9,796 blocks ==13898== Reachable blocks (those to which a pointer was found) are not shown. ==13898== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13898== ==13898== For counts of detected and suppressed errors, rerun with: -v ==13898== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14180== Memcheck, a memory error detector ==14180== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14180== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14180== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyRestarts ==14180== Parent PID: 152 ==14180== ==14180== ==14180== HEAP SUMMARY: ==14180== in use at exit: 7,095,024 bytes in 58,772 blocks ==14180== total heap usage: 2,268,925 allocs, 2,210,101 frees, 272,908,676 bytes allocated ==14180== ==14180== LEAK SUMMARY: ==14180== definitely lost: 0 bytes in 0 blocks ==14180== indirectly lost: 0 bytes in 0 blocks ==14180== possibly lost: 1,392 bytes in 4 blocks ==14180== still reachable: 6,238,937 bytes in 48,140 blocks ==14180== of which reachable via heuristic: ==14180== length64 : 6,728 bytes in 107 blocks ==14180== newarray : 6,456 bytes in 58 blocks ==14180== suppressed: 740,743 bytes in 9,772 blocks ==14180== Reachable blocks (those to which a pointer was found) are not shown. ==14180== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14180== ==14180== For counts of detected and suppressed errors, rerun with: -v ==14180== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1423== Memcheck, a memory error detector ==1423== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1423== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1423== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteRestart ==1423== Parent PID: 152 ==1423== ==1423== ==1423== HEAP SUMMARY: ==1423== in use at exit: 6,995,007 bytes in 57,799 blocks ==1423== total heap usage: 1,075,325 allocs, 1,017,474 frees, 155,743,425 bytes allocated ==1423== ==1423== LEAK SUMMARY: ==1423== definitely lost: 0 bytes in 0 blocks ==1423== indirectly lost: 0 bytes in 0 blocks ==1423== possibly lost: 960 bytes in 3 blocks ==1423== still reachable: 6,229,936 bytes in 47,985 blocks ==1423== of which reachable via heuristic: ==1423== length64 : 6,024 bytes in 99 blocks ==1423== newarray : 6,408 bytes in 55 blocks ==1423== suppressed: 676,103 bytes in 9,140 blocks ==1423== Reachable blocks (those to which a pointer was found) are not shown. ==1423== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1423== ==1423== For counts of detected and suppressed errors, rerun with: -v ==1423== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14575== Memcheck, a memory error detector ==14575== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14575== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14575== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==14575== Parent PID: 152 ==14575== ==14575== ==14575== HEAP SUMMARY: ==14575== in use at exit: 7,091,462 bytes in 58,745 blocks ==14575== total heap usage: 2,185,921 allocs, 2,127,122 frees, 284,685,329 bytes allocated ==14575== ==14575== LEAK SUMMARY: ==14575== definitely lost: 0 bytes in 0 blocks ==14575== indirectly lost: 0 bytes in 0 blocks ==14575== possibly lost: 1,392 bytes in 4 blocks ==14575== still reachable: 6,231,322 bytes in 48,010 blocks ==14575== of which reachable via heuristic: ==14575== length64 : 6,728 bytes in 107 blocks ==14575== newarray : 6,456 bytes in 58 blocks ==14575== suppressed: 744,628 bytes in 9,873 blocks ==14575== Reachable blocks (those to which a pointer was found) are not shown. ==14575== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14575== ==14575== For counts of detected and suppressed errors, rerun with: -v ==14575== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14783== Memcheck, a memory error detector ==14783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14783== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14783== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==14783== Parent PID: 14575 ==14783== ==14801== Memcheck, a memory error detector ==14801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14801== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==14801== Parent PID: 14575 ==14801== ==14817== Memcheck, a memory error detector ==14817== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14817== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14817== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==14817== Parent PID: 14575 ==14817== ==14835== Memcheck, a memory error detector ==14835== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14835== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14835== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==14835== Parent PID: 14575 ==14835== ==14841== Memcheck, a memory error detector ==14841== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14841== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14841== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==14841== Parent PID: 152 ==14841== ==14841== ==14841== HEAP SUMMARY: ==14841== in use at exit: 7,097,021 bytes in 58,885 blocks ==14841== total heap usage: 2,906,804 allocs, 2,847,863 frees, 391,106,228 bytes allocated ==14841== ==14841== LEAK SUMMARY: ==14841== definitely lost: 0 bytes in 0 blocks ==14841== indirectly lost: 0 bytes in 0 blocks ==14841== possibly lost: 1,392 bytes in 4 blocks ==14841== still reachable: 6,232,338 bytes in 48,024 blocks ==14841== of which reachable via heuristic: ==14841== length64 : 6,728 bytes in 107 blocks ==14841== newarray : 6,456 bytes in 58 blocks ==14841== suppressed: 749,171 bytes in 9,999 blocks ==14841== Reachable blocks (those to which a pointer was found) are not shown. ==14841== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14841== ==14841== For counts of detected and suppressed errors, rerun with: -v ==14841== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==15047== Memcheck, a memory error detector ==15047== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15047== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15047== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==15047== Parent PID: 14841 ==15047== ==1505== Memcheck, a memory error detector ==1505== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1505== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1505== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemoteRestart ==1505== Parent PID: 152 ==1505== ==1505== ==1505== HEAP SUMMARY: ==1505== in use at exit: 6,994,286 bytes in 57,763 blocks ==1505== total heap usage: 1,861,759 allocs, 1,803,942 frees, 271,278,818 bytes allocated ==1505== ==1505== LEAK SUMMARY: ==1505== definitely lost: 0 bytes in 0 blocks ==1505== indirectly lost: 0 bytes in 0 blocks ==1505== possibly lost: 960 bytes in 3 blocks ==1505== still reachable: 6,229,404 bytes in 47,980 blocks ==1505== of which reachable via heuristic: ==1505== length64 : 6,024 bytes in 99 blocks ==1505== newarray : 6,408 bytes in 55 blocks ==1505== suppressed: 675,914 bytes in 9,109 blocks ==1505== Reachable blocks (those to which a pointer was found) are not shown. ==1505== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1505== ==1505== For counts of detected and suppressed errors, rerun with: -v ==1505== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15065== Memcheck, a memory error detector ==15065== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15065== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15065== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==15065== Parent PID: 14841 ==15065== ==15152== Memcheck, a memory error detector ==15152== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15152== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15152== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==15152== Parent PID: 152 ==15152== ==15152== ==15152== HEAP SUMMARY: ==15152== in use at exit: 7,095,148 bytes in 58,772 blocks ==15152== total heap usage: 2,439,498 allocs, 2,380,671 frees, 331,475,556 bytes allocated ==15152== ==15152== LEAK SUMMARY: ==15152== definitely lost: 0 bytes in 0 blocks ==15152== indirectly lost: 0 bytes in 0 blocks ==15152== possibly lost: 1,392 bytes in 4 blocks ==15152== still reachable: 6,237,388 bytes in 48,115 blocks ==15152== of which reachable via heuristic: ==15152== length64 : 6,728 bytes in 107 blocks ==15152== newarray : 6,456 bytes in 58 blocks ==15152== suppressed: 742,416 bytes in 9,797 blocks ==15152== Reachable blocks (those to which a pointer was found) are not shown. ==15152== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15152== ==15152== For counts of detected and suppressed errors, rerun with: -v ==15152== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==152== Memcheck, a memory error detector ==152== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==152== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==152== Command: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact ==152== Parent PID: 148 ==152== ==152== ==152== HEAP SUMMARY: ==152== in use at exit: 261,620 bytes in 3,725 blocks ==152== total heap usage: 74,922 allocs, 71,197 frees, 13,911,863 bytes allocated ==152== ==152== LEAK SUMMARY: ==152== definitely lost: 0 bytes in 0 blocks ==152== indirectly lost: 0 bytes in 0 blocks ==152== possibly lost: 96 bytes in 1 blocks ==152== still reachable: 44,695 bytes in 277 blocks ==152== of which reachable via heuristic: ==152== newarray : 5,800 bytes in 17 blocks ==152== suppressed: 216,829 bytes in 3,447 blocks ==152== Reachable blocks (those to which a pointer was found) are not shown. ==152== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==152== ==152== For counts of detected and suppressed errors, rerun with: -v ==152== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==15385== Memcheck, a memory error detector ==15385== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15385== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15385== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==15385== Parent PID: 15152 ==15385== ==15403== Memcheck, a memory error detector ==15403== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15403== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15403== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==15403== Parent PID: 15152 ==15403== ==15411== Memcheck, a memory error detector ==15411== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15411== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15411== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==15411== Parent PID: 152 ==15411== ==15411== ==15411== HEAP SUMMARY: ==15411== in use at exit: 7,142,057 bytes in 58,717 blocks ==15411== total heap usage: 8,208,379 allocs, 8,149,607 frees, 1,008,202,033 bytes allocated ==15411== ==15411== LEAK SUMMARY: ==15411== definitely lost: 0 bytes in 0 blocks ==15411== indirectly lost: 0 bytes in 0 blocks ==15411== possibly lost: 1,392 bytes in 4 blocks ==15411== still reachable: 6,285,767 bytes in 48,055 blocks ==15411== of which reachable via heuristic: ==15411== length64 : 6,728 bytes in 107 blocks ==15411== newarray : 6,456 bytes in 58 blocks ==15411== suppressed: 740,946 bytes in 9,802 blocks ==15411== Reachable blocks (those to which a pointer was found) are not shown. ==15411== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15411== ==15411== For counts of detected and suppressed errors, rerun with: -v ==15411== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==155== Memcheck, a memory error detector ==155== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==155== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==155== Command: ./client-test Client::Sync::eds_event::testDeleteAllRefresh ==155== Parent PID: 152 ==155== ==155== ==155== HEAP SUMMARY: ==155== in use at exit: 6,996,431 bytes in 57,831 blocks ==155== total heap usage: 1,454,386 allocs, 1,396,502 frees, 207,369,635 bytes allocated ==155== ==155== LEAK SUMMARY: ==155== definitely lost: 0 bytes in 0 blocks ==155== indirectly lost: 0 bytes in 0 blocks ==155== possibly lost: 960 bytes in 3 blocks ==155== still reachable: 6,229,326 bytes in 47,983 blocks ==155== of which reachable via heuristic: ==155== length64 : 6,024 bytes in 99 blocks ==155== newarray : 6,408 bytes in 55 blocks ==155== suppressed: 678,137 bytes in 9,174 blocks ==155== Reachable blocks (those to which a pointer was found) are not shown. ==155== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==155== ==155== For counts of detected and suppressed errors, rerun with: -v ==155== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==155== could not unlink /tmp/vgdb-pipe-from-vgdb-to-155-by-nightly-on-syncev ==155== could not unlink /tmp/vgdb-pipe-to-vgdb-from-155-by-nightly-on-syncev ==155== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-155-by-nightly-on-syncev ==15644== Memcheck, a memory error detector ==15644== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15644== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15644== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==15644== Parent PID: 15411 ==15644== ==15662== Memcheck, a memory error detector ==15662== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15662== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15662== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==15662== Parent PID: 15411 ==15662== ==15667== Memcheck, a memory error detector ==15667== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15667== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15667== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==15667== Parent PID: 152 ==15667== ==15667== ==15667== HEAP SUMMARY: ==15667== in use at exit: 7,088,597 bytes in 58,547 blocks ==15667== total heap usage: 9,945,602 allocs, 9,886,998 frees, 1,072,509,544 bytes allocated ==15667== ==15667== LEAK SUMMARY: ==15667== definitely lost: 0 bytes in 0 blocks ==15667== indirectly lost: 0 bytes in 0 blocks ==15667== possibly lost: 1,392 bytes in 4 blocks ==15667== still reachable: 6,236,220 bytes in 47,994 blocks ==15667== of which reachable via heuristic: ==15667== length64 : 6,728 bytes in 107 blocks ==15667== newarray : 6,456 bytes in 58 blocks ==15667== suppressed: 737,033 bytes in 9,693 blocks ==15667== Reachable blocks (those to which a pointer was found) are not shown. ==15667== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15667== ==15667== For counts of detected and suppressed errors, rerun with: -v ==15667== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==15896== Memcheck, a memory error detector ==15896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15896== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15896== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==15896== Parent PID: 15667 ==15896== ==15914== Memcheck, a memory error detector ==15914== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15914== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15914== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==15914== Parent PID: 15667 ==15914== ==15995== Memcheck, a memory error detector ==15995== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15995== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15995== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==15995== Parent PID: 152 ==15995== ==15995== ==15995== HEAP SUMMARY: ==15995== in use at exit: 7,082,235 bytes in 58,548 blocks ==15995== total heap usage: 3,914,461 allocs, 3,855,854 frees, 545,686,223 bytes allocated ==15995== ==15995== LEAK SUMMARY: ==15995== definitely lost: 0 bytes in 0 blocks ==15995== indirectly lost: 0 bytes in 0 blocks ==15995== possibly lost: 1,392 bytes in 4 blocks ==15995== still reachable: 6,229,238 bytes in 47,993 blocks ==15995== of which reachable via heuristic: ==15995== length64 : 6,728 bytes in 107 blocks ==15995== newarray : 6,456 bytes in 58 blocks ==15995== suppressed: 737,653 bytes in 9,695 blocks ==15995== Reachable blocks (those to which a pointer was found) are not shown. ==15995== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15995== ==15995== For counts of detected and suppressed errors, rerun with: -v ==15995== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16202== Memcheck, a memory error detector ==16202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16202== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==16202== Parent PID: 15995 ==16202== ==16220== Memcheck, a memory error detector ==16220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16220== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==16220== Parent PID: 15995 ==16220== ==16383== Memcheck, a memory error detector ==16383== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16383== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16383== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==16383== Parent PID: 152 ==16383== ==16383== ==16383== HEAP SUMMARY: ==16383== in use at exit: 7,096,823 bytes in 58,800 blocks ==16383== total heap usage: 3,325,610 allocs, 3,266,753 frees, 448,259,275 bytes allocated ==16383== ==16383== LEAK SUMMARY: ==16383== definitely lost: 0 bytes in 0 blocks ==16383== indirectly lost: 0 bytes in 0 blocks ==16383== possibly lost: 1,392 bytes in 4 blocks ==16383== still reachable: 6,240,456 bytes in 48,164 blocks ==16383== of which reachable via heuristic: ==16383== length64 : 6,728 bytes in 107 blocks ==16383== newarray : 6,456 bytes in 58 blocks ==16383== suppressed: 741,023 bytes in 9,776 blocks ==16383== Reachable blocks (those to which a pointer was found) are not shown. ==16383== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16383== ==16383== For counts of detected and suppressed errors, rerun with: -v ==16383== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1658== Memcheck, a memory error detector ==1658== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1658== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1658== Command: ./client-test Client::Sync::eds_event::testManyRestarts ==1658== Parent PID: 152 ==1658== ==1658== ==1658== HEAP SUMMARY: ==1658== in use at exit: 7,002,154 bytes in 57,902 blocks ==1658== total heap usage: 1,631,721 allocs, 1,573,767 frees, 224,788,884 bytes allocated ==1658== ==1658== LEAK SUMMARY: ==1658== definitely lost: 0 bytes in 0 blocks ==1658== indirectly lost: 0 bytes in 0 blocks ==1658== possibly lost: 960 bytes in 3 blocks ==1658== still reachable: 6,235,519 bytes in 48,075 blocks ==1658== of which reachable via heuristic: ==1658== length64 : 6,024 bytes in 99 blocks ==1658== newarray : 6,408 bytes in 55 blocks ==1658== suppressed: 677,667 bytes in 9,153 blocks ==1658== Reachable blocks (those to which a pointer was found) are not shown. ==1658== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1658== ==1658== For counts of detected and suppressed errors, rerun with: -v ==1658== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16590== Memcheck, a memory error detector ==16590== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16590== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16590== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==16590== Parent PID: 16383 ==16590== ==16608== Memcheck, a memory error detector ==16608== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16608== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16608== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==16608== Parent PID: 16383 ==16608== ==16624== Memcheck, a memory error detector ==16624== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16624== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16624== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==16624== Parent PID: 16383 ==16624== ==16642== Memcheck, a memory error detector ==16642== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16642== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16642== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==16642== Parent PID: 16383 ==16642== ==16748== Memcheck, a memory error detector ==16748== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16748== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16748== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==16748== Parent PID: 152 ==16748== ==16748== ==16748== HEAP SUMMARY: ==16748== in use at exit: 7,092,467 bytes in 58,739 blocks ==16748== total heap usage: 3,120,326 allocs, 3,061,531 frees, 404,650,713 bytes allocated ==16748== ==16748== LEAK SUMMARY: ==16748== definitely lost: 0 bytes in 0 blocks ==16748== indirectly lost: 0 bytes in 0 blocks ==16748== possibly lost: 1,392 bytes in 4 blocks ==16748== still reachable: 6,235,393 bytes in 48,074 blocks ==16748== of which reachable via heuristic: ==16748== length64 : 6,728 bytes in 107 blocks ==16748== newarray : 6,456 bytes in 58 blocks ==16748== suppressed: 741,730 bytes in 9,805 blocks ==16748== Reachable blocks (those to which a pointer was found) are not shown. ==16748== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16748== ==16748== For counts of detected and suppressed errors, rerun with: -v ==16748== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16956== Memcheck, a memory error detector ==16956== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16956== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16956== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==16956== Parent PID: 16748 ==16956== ==16974== Memcheck, a memory error detector ==16974== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16974== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16974== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==16974== Parent PID: 16748 ==16974== ==16990== Memcheck, a memory error detector ==16990== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16990== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16990== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==16990== Parent PID: 16748 ==16990== ==17008== Memcheck, a memory error detector ==17008== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17008== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17008== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==17008== Parent PID: 16748 ==17008== ==17120== Memcheck, a memory error detector ==17120== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17120== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17120== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==17120== Parent PID: 152 ==17120== ==17120== ==17120== HEAP SUMMARY: ==17120== in use at exit: 7,088,707 bytes in 58,662 blocks ==17120== total heap usage: 2,988,463 allocs, 2,929,745 frees, 397,118,018 bytes allocated ==17120== ==17120== LEAK SUMMARY: ==17120== definitely lost: 0 bytes in 0 blocks ==17120== indirectly lost: 0 bytes in 0 blocks ==17120== possibly lost: 1,392 bytes in 4 blocks ==17120== still reachable: 6,231,979 bytes in 48,022 blocks ==17120== of which reachable via heuristic: ==17120== length64 : 6,728 bytes in 107 blocks ==17120== newarray : 6,456 bytes in 58 blocks ==17120== suppressed: 741,384 bytes in 9,780 blocks ==17120== Reachable blocks (those to which a pointer was found) are not shown. ==17120== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17120== ==17120== For counts of detected and suppressed errors, rerun with: -v ==17120== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==17327== Memcheck, a memory error detector ==17327== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17327== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17327== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==17327== Parent PID: 17120 ==17327== ==17345== Memcheck, a memory error detector ==17345== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17345== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17345== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==17345== Parent PID: 17120 ==17345== ==17433== Memcheck, a memory error detector ==17433== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17433== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17433== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==17433== Parent PID: 17120 ==17433== ==17451== Memcheck, a memory error detector ==17451== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17451== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17451== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==17451== Parent PID: 17120 ==17451== ==17457== Memcheck, a memory error detector ==17457== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17457== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17457== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17457== Parent PID: 152 ==17457== ==17457== ==17457== HEAP SUMMARY: ==17457== in use at exit: 7,089,030 bytes in 58,703 blocks ==17457== total heap usage: 3,963,885 allocs, 3,905,124 frees, 520,988,569 bytes allocated ==17457== ==17457== LEAK SUMMARY: ==17457== definitely lost: 0 bytes in 0 blocks ==17457== indirectly lost: 0 bytes in 0 blocks ==17457== possibly lost: 1,392 bytes in 4 blocks ==17457== still reachable: 6,231,114 bytes in 48,005 blocks ==17457== of which reachable via heuristic: ==17457== length64 : 6,728 bytes in 107 blocks ==17457== newarray : 6,456 bytes in 58 blocks ==17457== suppressed: 742,572 bytes in 9,838 blocks ==17457== Reachable blocks (those to which a pointer was found) are not shown. ==17457== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17457== ==17457== For counts of detected and suppressed errors, rerun with: -v ==17457== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==17663== Memcheck, a memory error detector ==17663== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17663== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17663== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17663== Parent PID: 17457 ==17663== ==17681== Memcheck, a memory error detector ==17681== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17681== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17681== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17681== Parent PID: 17457 ==17681== ==17821== Memcheck, a memory error detector ==17821== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17821== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17821== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17821== Parent PID: 17457 ==17821== ==17839== Memcheck, a memory error detector ==17839== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17839== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17839== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17839== Parent PID: 17457 ==17839== ==17883== Memcheck, a memory error detector ==17883== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17883== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17883== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17883== Parent PID: 17457 ==17883== ==17901== Memcheck, a memory error detector ==17901== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17901== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17901== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==17901== Parent PID: 17457 ==17901== ==17909== Memcheck, a memory error detector ==17909== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17909== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17909== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==17909== Parent PID: 152 ==17909== ==17909== ==17909== HEAP SUMMARY: ==17909== in use at exit: 7,092,375 bytes in 58,729 blocks ==17909== total heap usage: 3,527,491 allocs, 3,468,707 frees, 437,645,019 bytes allocated ==17909== ==17909== LEAK SUMMARY: ==17909== definitely lost: 0 bytes in 0 blocks ==17909== indirectly lost: 0 bytes in 0 blocks ==17909== possibly lost: 1,392 bytes in 4 blocks ==17909== still reachable: 6,236,892 bytes in 48,106 blocks ==17909== of which reachable via heuristic: ==17909== length64 : 6,728 bytes in 107 blocks ==17909== newarray : 6,456 bytes in 58 blocks ==17909== suppressed: 740,139 bytes in 9,763 blocks ==17909== Reachable blocks (those to which a pointer was found) are not shown. ==17909== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17909== ==17909== For counts of detected and suppressed errors, rerun with: -v ==17909== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18003== Memcheck, a memory error detector ==18003== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18003== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18003== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==18003== Parent PID: 17909 ==18003== ==18031== Memcheck, a memory error detector ==18031== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18031== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18031== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==18031== Parent PID: 17909 ==18031== ==18170== Memcheck, a memory error detector ==18170== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18170== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18170== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==18170== Parent PID: 17909 ==18170== ==18188== Memcheck, a memory error detector ==18188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18188== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==18188== Parent PID: 17909 ==18188== ==18195== Memcheck, a memory error detector ==18195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18195== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==18195== Parent PID: 152 ==18195== ==18195== ==18195== HEAP SUMMARY: ==18195== in use at exit: 7,097,544 bytes in 58,811 blocks ==18195== total heap usage: 2,435,194 allocs, 2,376,330 frees, 291,658,299 bytes allocated ==18195== ==18195== LEAK SUMMARY: ==18195== definitely lost: 0 bytes in 0 blocks ==18195== indirectly lost: 0 bytes in 0 blocks ==18195== possibly lost: 1,392 bytes in 4 blocks ==18195== still reachable: 6,239,684 bytes in 48,152 blocks ==18195== of which reachable via heuristic: ==18195== length64 : 6,728 bytes in 107 blocks ==18195== newarray : 6,456 bytes in 58 blocks ==18195== suppressed: 742,516 bytes in 9,799 blocks ==18195== Reachable blocks (those to which a pointer was found) are not shown. ==18195== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18195== ==18195== For counts of detected and suppressed errors, rerun with: -v ==18195== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18290== Memcheck, a memory error detector ==18290== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18290== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18290== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==18290== Parent PID: 18195 ==18290== ==18318== Memcheck, a memory error detector ==18318== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18318== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18318== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==18318== Parent PID: 18195 ==18318== ==18398== Memcheck, a memory error detector ==18398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18398== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==18398== Parent PID: 18195 ==18398== ==18416== Memcheck, a memory error detector ==18416== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18416== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18416== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==18416== Parent PID: 18195 ==18416== ==18423== Memcheck, a memory error detector ==18423== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18423== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18423== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==18423== Parent PID: 152 ==18423== ==18423== ==18423== HEAP SUMMARY: ==18423== in use at exit: 7,088,528 bytes in 58,685 blocks ==18423== total heap usage: 2,460,261 allocs, 2,401,523 frees, 291,400,209 bytes allocated ==18423== ==18423== LEAK SUMMARY: ==18423== definitely lost: 0 bytes in 0 blocks ==18423== indirectly lost: 0 bytes in 0 blocks ==18423== possibly lost: 1,392 bytes in 4 blocks ==18423== still reachable: 6,231,077 bytes in 48,013 blocks ==18423== of which reachable via heuristic: ==18423== length64 : 6,728 bytes in 107 blocks ==18423== newarray : 6,456 bytes in 58 blocks ==18423== suppressed: 742,107 bytes in 9,812 blocks ==18423== Reachable blocks (those to which a pointer was found) are not shown. ==18423== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18423== ==18423== For counts of detected and suppressed errors, rerun with: -v ==18423== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18518== Memcheck, a memory error detector ==18518== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18518== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18518== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==18518== Parent PID: 18423 ==18518== ==18546== Memcheck, a memory error detector ==18546== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18546== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18546== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==18546== Parent PID: 18423 ==18546== ==1856== Memcheck, a memory error detector ==1856== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1856== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1856== Command: ./client-test Client::Sync::eds_event::testCopy ==1856== Parent PID: 152 ==1856== ==1856== ==1856== HEAP SUMMARY: ==1856== in use at exit: 6,999,086 bytes in 57,849 blocks ==1856== total heap usage: 1,845,791 allocs, 1,787,888 frees, 262,441,807 bytes allocated ==1856== ==1856== LEAK SUMMARY: ==1856== definitely lost: 0 bytes in 0 blocks ==1856== indirectly lost: 0 bytes in 0 blocks ==1856== possibly lost: 960 bytes in 3 blocks ==1856== still reachable: 6,232,715 bytes in 48,032 blocks ==1856== of which reachable via heuristic: ==1856== length64 : 6,024 bytes in 99 blocks ==1856== newarray : 6,408 bytes in 55 blocks ==1856== suppressed: 677,403 bytes in 9,143 blocks ==1856== Reachable blocks (those to which a pointer was found) are not shown. ==1856== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1856== ==1856== For counts of detected and suppressed errors, rerun with: -v ==1856== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==18627== Memcheck, a memory error detector ==18627== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18627== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18627== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==18627== Parent PID: 18423 ==18627== ==18645== Memcheck, a memory error detector ==18645== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18645== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18645== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==18645== Parent PID: 18423 ==18645== ==18651== Memcheck, a memory error detector ==18651== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18651== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18651== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==18651== Parent PID: 152 ==18651== ==18651== ==18651== HEAP SUMMARY: ==18651== in use at exit: 7,093,973 bytes in 58,747 blocks ==18651== total heap usage: 2,551,246 allocs, 2,492,446 frees, 336,789,953 bytes allocated ==18651== ==18651== LEAK SUMMARY: ==18651== definitely lost: 0 bytes in 0 blocks ==18651== indirectly lost: 0 bytes in 0 blocks ==18651== possibly lost: 1,392 bytes in 4 blocks ==18651== still reachable: 6,236,593 bytes in 48,095 blocks ==18651== of which reachable via heuristic: ==18651== length64 : 6,728 bytes in 107 blocks ==18651== newarray : 6,456 bytes in 58 blocks ==18651== suppressed: 742,036 bytes in 9,792 blocks ==18651== Reachable blocks (those to which a pointer was found) are not shown. ==18651== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18651== ==18651== For counts of detected and suppressed errors, rerun with: -v ==18651== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18809== Memcheck, a memory error detector ==18809== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18809== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18809== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==18809== Parent PID: 18651 ==18809== ==18827== Memcheck, a memory error detector ==18827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18827== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==18827== Parent PID: 18651 ==18827== ==18833== Memcheck, a memory error detector ==18833== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18833== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18833== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==18833== Parent PID: 152 ==18833== ==18833== ==18833== HEAP SUMMARY: ==18833== in use at exit: 7,082,707 bytes in 58,548 blocks ==18833== total heap usage: 2,617,925 allocs, 2,559,324 frees, 322,538,466 bytes allocated ==18833== ==18833== LEAK SUMMARY: ==18833== definitely lost: 0 bytes in 0 blocks ==18833== indirectly lost: 0 bytes in 0 blocks ==18833== possibly lost: 1,392 bytes in 4 blocks ==18833== still reachable: 6,229,718 bytes in 47,993 blocks ==18833== of which reachable via heuristic: ==18833== length64 : 6,728 bytes in 107 blocks ==18833== newarray : 6,456 bytes in 58 blocks ==18833== suppressed: 737,645 bytes in 9,695 blocks ==18833== Reachable blocks (those to which a pointer was found) are not shown. ==18833== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18833== ==18833== For counts of detected and suppressed errors, rerun with: -v ==18833== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18994== Memcheck, a memory error detector ==18994== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18994== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18994== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==18994== Parent PID: 18833 ==18994== ==19012== Memcheck, a memory error detector ==19012== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19012== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19012== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==19012== Parent PID: 18833 ==19012== ==19017== Memcheck, a memory error detector ==19017== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19017== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19017== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromServer ==19017== Parent PID: 152 ==19017== ==19017== ==19017== HEAP SUMMARY: ==19017== in use at exit: 7,093,449 bytes in 58,744 blocks ==19017== total heap usage: 3,541,750 allocs, 3,482,949 frees, 464,301,665 bytes allocated ==19017== ==19017== LEAK SUMMARY: ==19017== definitely lost: 0 bytes in 0 blocks ==19017== indirectly lost: 0 bytes in 0 blocks ==19017== possibly lost: 1,392 bytes in 4 blocks ==19017== still reachable: 6,235,793 bytes in 48,089 blocks ==19017== of which reachable via heuristic: ==19017== length64 : 6,728 bytes in 107 blocks ==19017== newarray : 6,456 bytes in 58 blocks ==19017== suppressed: 742,312 bytes in 9,795 blocks ==19017== Reachable blocks (those to which a pointer was found) are not shown. ==19017== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==19017== ==19017== For counts of detected and suppressed errors, rerun with: -v ==19017== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==19374== Memcheck, a memory error detector ==19374== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19374== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19374== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromClient ==19374== Parent PID: 152 ==19374== ==19374== ==19374== HEAP SUMMARY: ==19374== in use at exit: 7,093,449 bytes in 58,744 blocks ==19374== total heap usage: 3,494,974 allocs, 3,436,173 frees, 459,512,781 bytes allocated ==19374== ==19374== LEAK SUMMARY: ==19374== definitely lost: 0 bytes in 0 blocks ==19374== indirectly lost: 0 bytes in 0 blocks ==19374== possibly lost: 1,392 bytes in 4 blocks ==19374== still reachable: 6,235,929 bytes in 48,091 blocks ==19374== of which reachable via heuristic: ==19374== length64 : 6,728 bytes in 107 blocks ==19374== newarray : 6,456 bytes in 58 blocks ==19374== suppressed: 742,176 bytes in 9,793 blocks ==19374== Reachable blocks (those to which a pointer was found) are not shown. ==19374== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==19374== ==19374== For counts of detected and suppressed errors, rerun with: -v ==19374== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==19746== Memcheck, a memory error detector ==19746== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19746== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19746== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemote ==19746== Parent PID: 152 ==19746== ==19746== ==19746== HEAP SUMMARY: ==19746== in use at exit: 7,091,977 bytes in 58,717 blocks ==19746== total heap usage: 3,399,334 allocs, 3,340,560 frees, 453,171,374 bytes allocated ==19746== ==19746== LEAK SUMMARY: ==19746== definitely lost: 0 bytes in 0 blocks ==19746== indirectly lost: 0 bytes in 0 blocks ==19746== possibly lost: 1,392 bytes in 4 blocks ==19746== still reachable: 6,234,801 bytes in 48,067 blocks ==19746== of which reachable via heuristic: ==19746== length64 : 6,728 bytes in 107 blocks ==19746== newarray : 6,456 bytes in 58 blocks ==19746== suppressed: 741,832 bytes in 9,790 blocks ==19746== Reachable blocks (those to which a pointer was found) are not shown. ==19746== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==19746== ==19746== For counts of detected and suppressed errors, rerun with: -v ==19746== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1984== Memcheck, a memory error detector ==1984== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1984== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1984== Command: ./client-test Client::Sync::eds_event::testCopy ==1984== Parent PID: 1856 ==1984== ==2000== Memcheck, a memory error detector ==2000== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2000== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2000== Command: ./client-test Client::Sync::eds_event::testCopy ==2000== Parent PID: 1856 ==2000== ==2006== Memcheck, a memory error detector ==2006== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2006== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2006== Command: ./client-test Client::Sync::eds_event::testDelete ==2006== Parent PID: 152 ==2006== ==2006== ==2006== HEAP SUMMARY: ==2006== in use at exit: 6,997,324 bytes in 57,825 blocks ==2006== total heap usage: 2,504,421 allocs, 2,446,540 frees, 364,542,995 bytes allocated ==2006== ==2006== LEAK SUMMARY: ==2006== definitely lost: 0 bytes in 0 blocks ==2006== indirectly lost: 0 bytes in 0 blocks ==2006== possibly lost: 960 bytes in 3 blocks ==2006== still reachable: 6,230,288 bytes in 47,989 blocks ==2006== of which reachable via heuristic: ==2006== length64 : 6,024 bytes in 99 blocks ==2006== newarray : 6,408 bytes in 55 blocks ==2006== suppressed: 677,900 bytes in 9,160 blocks ==2006== Reachable blocks (those to which a pointer was found) are not shown. ==2006== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2006== ==2006== For counts of detected and suppressed errors, rerun with: -v ==2006== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==20098== Memcheck, a memory error detector ==20098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20098== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20098== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocal ==20098== Parent PID: 152 ==20098== ==20098== ==20098== HEAP SUMMARY: ==20098== in use at exit: 7,086,998 bytes in 58,634 blocks ==20098== total heap usage: 3,495,702 allocs, 3,437,011 frees, 459,529,821 bytes allocated ==20098== ==20098== LEAK SUMMARY: ==20098== definitely lost: 0 bytes in 0 blocks ==20098== indirectly lost: 0 bytes in 0 blocks ==20098== possibly lost: 1,392 bytes in 4 blocks ==20098== still reachable: 6,230,458 bytes in 47,996 blocks ==20098== of which reachable via heuristic: ==20098== length64 : 6,728 bytes in 107 blocks ==20098== newarray : 6,456 bytes in 58 blocks ==20098== suppressed: 741,196 bytes in 9,778 blocks ==20098== Reachable blocks (those to which a pointer was found) are not shown. ==20098== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==20098== ==20098== For counts of detected and suppressed errors, rerun with: -v ==20098== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2134== Memcheck, a memory error detector ==2134== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2134== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2134== Command: ./client-test Client::Sync::eds_event::testDelete ==2134== Parent PID: 2006 ==2134== ==2188== Memcheck, a memory error detector ==2188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2188== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==2188== Parent PID: 152 ==2188== ==2188== ==2188== HEAP SUMMARY: ==2188== in use at exit: 7,000,352 bytes in 57,932 blocks ==2188== total heap usage: 2,114,280 allocs, 2,056,293 frees, 309,915,633 bytes allocated ==2188== ==2188== LEAK SUMMARY: ==2188== definitely lost: 0 bytes in 0 blocks ==2188== indirectly lost: 0 bytes in 0 blocks ==2188== possibly lost: 960 bytes in 3 blocks ==2188== still reachable: 6,231,144 bytes in 48,002 blocks ==2188== of which reachable via heuristic: ==2188== length64 : 6,024 bytes in 99 blocks ==2188== newarray : 6,408 bytes in 55 blocks ==2188== suppressed: 680,072 bytes in 9,254 blocks ==2188== Reachable blocks (those to which a pointer was found) are not shown. ==2188== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2188== ==2188== For counts of detected and suppressed errors, rerun with: -v ==2188== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2332== Memcheck, a memory error detector ==2332== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2332== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2332== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==2332== Parent PID: 2188 ==2332== ==2336== Memcheck, a memory error detector ==2336== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2336== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2336== Command: ./client-test Client::Sync::eds_event::testManyItems ==2336== Parent PID: 152 ==2336== ==2336== ==2336== HEAP SUMMARY: ==2336== in use at exit: 7,000,328 bytes in 57,765 blocks ==2336== total heap usage: 4,818,786 allocs, 4,760,966 frees, 633,779,593 bytes allocated ==2336== ==2336== LEAK SUMMARY: ==2336== definitely lost: 0 bytes in 0 blocks ==2336== indirectly lost: 0 bytes in 0 blocks ==2336== possibly lost: 960 bytes in 3 blocks ==2336== still reachable: 6,235,894 bytes in 47,981 blocks ==2336== of which reachable via heuristic: ==2336== length64 : 6,024 bytes in 99 blocks ==2336== newarray : 6,408 bytes in 55 blocks ==2336== suppressed: 675,466 bytes in 9,110 blocks ==2336== Reachable blocks (those to which a pointer was found) are not shown. ==2336== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2336== ==2336== For counts of detected and suppressed errors, rerun with: -v ==2336== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2476== Memcheck, a memory error detector ==2476== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2476== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2476== Command: ./client-test Client::Sync::eds_event::testManyItems ==2476== Parent PID: 2336 ==2476== ==2481== Memcheck, a memory error detector ==2481== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2481== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2481== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==2481== Parent PID: 152 ==2481== ==2481== ==2481== HEAP SUMMARY: ==2481== in use at exit: 6,999,816 bytes in 57,765 blocks ==2481== total heap usage: 6,059,579 allocs, 6,001,757 frees, 707,564,240 bytes allocated ==2481== ==2481== LEAK SUMMARY: ==2481== definitely lost: 0 bytes in 0 blocks ==2481== indirectly lost: 0 bytes in 0 blocks ==2481== possibly lost: 960 bytes in 3 blocks ==2481== still reachable: 6,236,094 bytes in 47,981 blocks ==2481== of which reachable via heuristic: ==2481== length64 : 6,024 bytes in 99 blocks ==2481== newarray : 6,408 bytes in 55 blocks ==2481== suppressed: 674,754 bytes in 9,110 blocks ==2481== Reachable blocks (those to which a pointer was found) are not shown. ==2481== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2481== ==2481== For counts of detected and suppressed errors, rerun with: -v ==2481== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2622== Memcheck, a memory error detector ==2622== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2622== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2622== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==2622== Parent PID: 2481 ==2622== ==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::testTwoWaySync ==266== Parent PID: 152 ==266== ==266== ==266== HEAP SUMMARY: ==266== in use at exit: 6,992,630 bytes in 57,743 blocks ==266== total heap usage: 639,255 allocs, 581,461 frees, 95,319,287 bytes allocated ==266== ==266== LEAK SUMMARY: ==266== definitely lost: 0 bytes in 0 blocks ==266== indirectly lost: 0 bytes in 0 blocks ==266== possibly lost: 960 bytes in 3 blocks ==266== still reachable: 6,229,719 bytes in 47,984 blocks ==266== of which reachable via heuristic: ==266== length64 : 5,984 bytes in 98 blocks ==266== newarray : 6,408 bytes in 55 blocks ==266== suppressed: 673,775 bytes in 9,083 blocks ==266== Reachable blocks (those to which a pointer was found) are not shown. ==266== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==266== ==266== For counts of detected and suppressed errors, rerun with: -v ==266== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2670== Memcheck, a memory error detector ==2670== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2670== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2670== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==2670== Parent PID: 152 ==2670== ==2670== ==2670== HEAP SUMMARY: ==2670== in use at exit: 6,994,414 bytes in 57,779 blocks ==2670== total heap usage: 3,448,510 allocs, 3,390,672 frees, 515,130,963 bytes allocated ==2670== ==2670== LEAK SUMMARY: ==2670== definitely lost: 0 bytes in 0 blocks ==2670== indirectly lost: 0 bytes in 0 blocks ==2670== possibly lost: 960 bytes in 3 blocks ==2670== still reachable: 6,230,240 bytes in 47,987 blocks ==2670== of which reachable via heuristic: ==2670== length64 : 6,024 bytes in 99 blocks ==2670== newarray : 6,408 bytes in 55 blocks ==2670== suppressed: 675,206 bytes in 9,118 blocks ==2670== Reachable blocks (those to which a pointer was found) are not shown. ==2670== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2670== ==2670== For counts of detected and suppressed errors, rerun with: -v ==2670== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2800== Memcheck, a memory error detector ==2800== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2800== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2800== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==2800== Parent PID: 2670 ==2800== ==2903== Memcheck, a memory error detector ==2903== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2903== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2903== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==2903== Parent PID: 152 ==2903== ==2903== ==2903== HEAP SUMMARY: ==2903== in use at exit: 6,987,688 bytes in 57,663 blocks ==2903== total heap usage: 2,856,480 allocs, 2,798,760 frees, 417,268,837 bytes allocated ==2903== ==2903== LEAK SUMMARY: ==2903== definitely lost: 0 bytes in 0 blocks ==2903== indirectly lost: 0 bytes in 0 blocks ==2903== possibly lost: 960 bytes in 3 blocks ==2903== still reachable: 6,227,625 bytes in 47,977 blocks ==2903== of which reachable via heuristic: ==2903== length64 : 6,024 bytes in 99 blocks ==2903== newarray : 6,408 bytes in 55 blocks ==2903== suppressed: 670,927 bytes in 9,010 blocks ==2903== Reachable blocks (those to which a pointer was found) are not shown. ==2903== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2903== ==2903== For counts of detected and suppressed errors, rerun with: -v ==2903== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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: ./client-test Client::Sync::eds_event::testSlowSync ==302== Parent PID: 152 ==302== ==302== ==302== HEAP SUMMARY: ==302== in use at exit: 6,997,424 bytes in 57,838 blocks ==302== total heap usage: 638,796 allocs, 580,907 frees, 95,198,949 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: 960 bytes in 3 blocks ==302== still reachable: 6,229,927 bytes in 47,983 blocks ==302== of which reachable via heuristic: ==302== length64 : 5,984 bytes in 98 blocks ==302== newarray : 6,408 bytes in 55 blocks ==302== suppressed: 678,529 bytes in 9,181 blocks ==302== Reachable blocks (those to which a pointer was found) are not shown. ==302== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==302== ==302== For counts of detected and suppressed errors, rerun with: -v ==302== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3031== Memcheck, a memory error detector ==3031== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3031== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3031== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==3031== Parent PID: 2903 ==3031== ==3047== Memcheck, a memory error detector ==3047== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3047== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3047== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==3047== Parent PID: 2903 ==3047== ==3111== Memcheck, a memory error detector ==3111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3111== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==3111== Parent PID: 152 ==3111== ==3111== ==3111== HEAP SUMMARY: ==3111== in use at exit: 6,994,247 bytes in 57,761 blocks ==3111== total heap usage: 2,615,952 allocs, 2,558,135 frees, 371,497,376 bytes allocated ==3111== ==3111== LEAK SUMMARY: ==3111== definitely lost: 0 bytes in 0 blocks ==3111== indirectly lost: 0 bytes in 0 blocks ==3111== possibly lost: 960 bytes in 3 blocks ==3111== still reachable: 6,229,581 bytes in 47,983 blocks ==3111== of which reachable via heuristic: ==3111== length64 : 6,024 bytes in 99 blocks ==3111== newarray : 6,408 bytes in 55 blocks ==3111== suppressed: 675,698 bytes in 9,104 blocks ==3111== Reachable blocks (those to which a pointer was found) are not shown. ==3111== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3111== ==3111== For counts of detected and suppressed errors, rerun with: -v ==3111== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3239== Memcheck, a memory error detector ==3239== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3239== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3239== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==3239== Parent PID: 3111 ==3239== ==3255== Memcheck, a memory error detector ==3255== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3255== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3255== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==3255== Parent PID: 3111 ==3255== ==3320== Memcheck, a memory error detector ==3320== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3320== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3320== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==3320== Parent PID: 152 ==3320== ==3320== ==3320== HEAP SUMMARY: ==3320== in use at exit: 6,997,307 bytes in 57,817 blocks ==3320== total heap usage: 2,460,606 allocs, 2,402,733 frees, 362,006,756 bytes allocated ==3320== ==3320== LEAK SUMMARY: ==3320== definitely lost: 0 bytes in 0 blocks ==3320== indirectly lost: 0 bytes in 0 blocks ==3320== possibly lost: 960 bytes in 3 blocks ==3320== still reachable: 6,231,120 bytes in 48,005 blocks ==3320== of which reachable via heuristic: ==3320== length64 : 6,024 bytes in 99 blocks ==3320== newarray : 6,408 bytes in 55 blocks ==3320== suppressed: 677,219 bytes in 9,138 blocks ==3320== Reachable blocks (those to which a pointer was found) are not shown. ==3320== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3320== ==3320== For counts of detected and suppressed errors, rerun with: -v ==3320== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==339== Memcheck, a memory error detector ==339== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==339== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==339== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSync ==339== Parent PID: 152 ==339== ==339== ==339== HEAP SUMMARY: ==339== in use at exit: 6,994,608 bytes in 57,788 blocks ==339== total heap usage: 639,561 allocs, 581,722 frees, 95,228,903 bytes allocated ==339== ==339== LEAK SUMMARY: ==339== definitely lost: 0 bytes in 0 blocks ==339== indirectly lost: 0 bytes in 0 blocks ==339== possibly lost: 960 bytes in 3 blocks ==339== still reachable: 6,230,368 bytes in 47,990 blocks ==339== of which reachable via heuristic: ==339== length64 : 5,984 bytes in 98 blocks ==339== newarray : 6,408 bytes in 55 blocks ==339== suppressed: 675,104 bytes in 9,122 blocks ==339== Reachable blocks (those to which a pointer was found) are not shown. ==339== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==339== ==339== For counts of detected and suppressed errors, rerun with: -v ==339== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3486== Memcheck, a memory error detector ==3486== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3486== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3486== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==3486== Parent PID: 3320 ==3486== ==3495== Memcheck, a memory error detector ==3495== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3495== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3495== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==3495== Parent PID: 152 ==3495== ==3495== ==3495== HEAP SUMMARY: ==3495== in use at exit: 6,994,247 bytes in 57,761 blocks ==3495== total heap usage: 2,463,213 allocs, 2,405,396 frees, 362,178,343 bytes allocated ==3495== ==3495== LEAK SUMMARY: ==3495== definitely lost: 0 bytes in 0 blocks ==3495== indirectly lost: 0 bytes in 0 blocks ==3495== possibly lost: 960 bytes in 3 blocks ==3495== still reachable: 6,229,421 bytes in 47,980 blocks ==3495== of which reachable via heuristic: ==3495== length64 : 6,024 bytes in 99 blocks ==3495== newarray : 6,408 bytes in 55 blocks ==3495== suppressed: 675,858 bytes in 9,107 blocks ==3495== Reachable blocks (those to which a pointer was found) are not shown. ==3495== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3495== ==3495== For counts of detected and suppressed errors, rerun with: -v ==3495== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3661== Memcheck, a memory error detector ==3661== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3661== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3661== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==3661== Parent PID: 3495 ==3661== ==3670== Memcheck, a memory error detector ==3670== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3670== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3670== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==3670== Parent PID: 152 ==3670== ==3670== ==3670== HEAP SUMMARY: ==3670== in use at exit: 6,998,600 bytes in 57,888 blocks ==3670== total heap usage: 2,516,253 allocs, 2,458,309 frees, 366,564,236 bytes allocated ==3670== ==3670== LEAK SUMMARY: ==3670== definitely lost: 0 bytes in 0 blocks ==3670== indirectly lost: 0 bytes in 0 blocks ==3670== possibly lost: 960 bytes in 3 blocks ==3670== still reachable: 6,230,497 bytes in 47,996 blocks ==3670== of which reachable via heuristic: ==3670== length64 : 6,024 bytes in 99 blocks ==3670== newarray : 6,408 bytes in 55 blocks ==3670== suppressed: 678,967 bytes in 9,216 blocks ==3670== Reachable blocks (those to which a pointer was found) are not shown. ==3670== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3670== ==3670== For counts of detected and suppressed errors, rerun with: -v ==3670== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==377== Memcheck, a memory error detector ==377== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==377== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==377== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSync ==377== Parent PID: 152 ==377== ==377== ==377== HEAP SUMMARY: ==377== in use at exit: 6,996,233 bytes in 57,824 blocks ==377== total heap usage: 639,737 allocs, 581,862 frees, 95,231,584 bytes allocated ==377== ==377== LEAK SUMMARY: ==377== definitely lost: 0 bytes in 0 blocks ==377== indirectly lost: 0 bytes in 0 blocks ==377== possibly lost: 960 bytes in 3 blocks ==377== still reachable: 6,229,360 bytes in 47,983 blocks ==377== of which reachable via heuristic: ==377== length64 : 5,984 bytes in 98 blocks ==377== newarray : 6,408 bytes in 55 blocks ==377== suppressed: 677,905 bytes in 9,167 blocks ==377== Reachable blocks (those to which a pointer was found) are not shown. ==377== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==377== ==377== For counts of detected and suppressed errors, rerun with: -v ==377== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3840== Memcheck, a memory error detector ==3840== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3840== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3840== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==3840== Parent PID: 3670 ==3840== ==3845== Memcheck, a memory error detector ==3845== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3845== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3845== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==3845== Parent PID: 152 ==3845== ==3845== ==3845== HEAP SUMMARY: ==3845== in use at exit: 6,994,466 bytes in 57,779 blocks ==3845== total heap usage: 1,761,393 allocs, 1,703,560 frees, 257,373,108 bytes allocated ==3845== ==3845== LEAK SUMMARY: ==3845== definitely lost: 0 bytes in 0 blocks ==3845== indirectly lost: 0 bytes in 0 blocks ==3845== possibly lost: 960 bytes in 3 blocks ==3845== still reachable: 6,229,841 bytes in 47,983 blocks ==3845== of which reachable via heuristic: ==3845== length64 : 6,024 bytes in 99 blocks ==3845== newarray : 6,408 bytes in 55 blocks ==3845== suppressed: 675,489 bytes in 9,120 blocks ==3845== Reachable blocks (those to which a pointer was found) are not shown. ==3845== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3845== ==3845== For counts of detected and suppressed errors, rerun with: -v ==3845== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3963== Memcheck, a memory error detector ==3963== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3963== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3963== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==3963== Parent PID: 3845 ==3963== ==3968== Memcheck, a memory error detector ==3968== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3968== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3968== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==3968== Parent PID: 152 ==3968== ==3968== ==3968== HEAP SUMMARY: ==3968== in use at exit: 6,999,020 bytes in 57,847 blocks ==3968== total heap usage: 2,451,763 allocs, 2,393,860 frees, 362,621,749 bytes allocated ==3968== ==3968== LEAK SUMMARY: ==3968== definitely lost: 0 bytes in 0 blocks ==3968== indirectly lost: 0 bytes in 0 blocks ==3968== possibly lost: 960 bytes in 3 blocks ==3968== still reachable: 6,234,186 bytes in 48,054 blocks ==3968== of which reachable via heuristic: ==3968== length64 : 6,024 bytes in 99 blocks ==3968== newarray : 6,408 bytes in 55 blocks ==3968== suppressed: 675,866 bytes in 9,119 blocks ==3968== Reachable blocks (those to which a pointer was found) are not shown. ==3968== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3968== ==3968== For counts of detected and suppressed errors, rerun with: -v ==3968== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==413== Memcheck, a memory error detector ==413== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==413== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==413== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteSync ==413== Parent PID: 152 ==413== ==413== ==413== HEAP SUMMARY: ==413== in use at exit: 6,995,335 bytes in 57,786 blocks ==413== total heap usage: 638,963 allocs, 581,126 frees, 95,208,086 bytes allocated ==413== ==413== LEAK SUMMARY: ==413== definitely lost: 0 bytes in 0 blocks ==413== indirectly lost: 0 bytes in 0 blocks ==413== possibly lost: 960 bytes in 3 blocks ==413== still reachable: 6,230,878 bytes in 48,003 blocks ==413== of which reachable via heuristic: ==413== length64 : 5,984 bytes in 98 blocks ==413== newarray : 6,408 bytes in 55 blocks ==413== suppressed: 675,489 bytes in 9,109 blocks ==413== Reachable blocks (those to which a pointer was found) are not shown. ==413== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==413== ==413== For counts of detected and suppressed errors, rerun with: -v ==413== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4137== Memcheck, a memory error detector ==4137== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4137== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4137== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==4137== Parent PID: 3968 ==4137== ==4142== Memcheck, a memory error detector ==4142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4142== Command: ./client-test Client::Sync::eds_event::testUpdate ==4142== Parent PID: 152 ==4142== ==4142== ==4142== HEAP SUMMARY: ==4142== in use at exit: 6,999,012 bytes in 57,847 blocks ==4142== total heap usage: 2,548,393 allocs, 2,490,490 frees, 367,718,126 bytes allocated ==4142== ==4142== LEAK SUMMARY: ==4142== definitely lost: 0 bytes in 0 blocks ==4142== indirectly lost: 0 bytes in 0 blocks ==4142== possibly lost: 960 bytes in 3 blocks ==4142== still reachable: 6,234,346 bytes in 48,057 blocks ==4142== of which reachable via heuristic: ==4142== length64 : 6,024 bytes in 99 blocks ==4142== newarray : 6,408 bytes in 55 blocks ==4142== suppressed: 675,698 bytes in 9,116 blocks ==4142== Reachable blocks (those to which a pointer was found) are not shown. ==4142== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4142== ==4142== For counts of detected and suppressed errors, rerun with: -v ==4142== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4271== Memcheck, a memory error detector ==4271== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4271== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4271== Command: ./client-test Client::Sync::eds_event::testUpdate ==4271== Parent PID: 4142 ==4271== ==4331== Memcheck, a memory error detector ==4331== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4331== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4331== Command: ./client-test Client::Sync::eds_event::testUpdate ==4331== Parent PID: 4142 ==4331== ==4336== Memcheck, a memory error detector ==4336== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4336== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4336== Command: ./client-test Client::Sync::eds_event::testMerge ==4336== Parent PID: 152 ==4336== ==4336== ==4336== HEAP SUMMARY: ==4336== in use at exit: 6,996,614 bytes in 57,833 blocks ==4336== total heap usage: 3,323,653 allocs, 3,265,762 frees, 477,848,444 bytes allocated ==4336== ==4336== LEAK SUMMARY: ==4336== definitely lost: 0 bytes in 0 blocks ==4336== indirectly lost: 0 bytes in 0 blocks ==4336== possibly lost: 960 bytes in 3 blocks ==4336== still reachable: 6,230,601 bytes in 47,991 blocks ==4336== of which reachable via heuristic: ==4336== length64 : 6,024 bytes in 99 blocks ==4336== newarray : 6,408 bytes in 55 blocks ==4336== suppressed: 677,045 bytes in 9,168 blocks ==4336== Reachable blocks (those to which a pointer was found) are not shown. ==4336== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4336== ==4336== For counts of detected and suppressed errors, rerun with: -v ==4336== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4464== Memcheck, a memory error detector ==4464== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4464== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4464== Command: ./client-test Client::Sync::eds_event::testMerge ==4464== Parent PID: 4336 ==4464== ==450== Memcheck, a memory error detector ==450== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==450== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==450== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalSync ==450== Parent PID: 152 ==450== ==450== ==450== HEAP SUMMARY: ==450== in use at exit: 6,997,009 bytes in 57,814 blocks ==450== total heap usage: 638,817 allocs, 580,952 frees, 95,200,187 bytes allocated ==450== ==450== LEAK SUMMARY: ==450== definitely lost: 0 bytes in 0 blocks ==450== indirectly lost: 0 bytes in 0 blocks ==450== possibly lost: 960 bytes in 3 blocks ==450== still reachable: 6,232,624 bytes in 48,029 blocks ==450== of which reachable via heuristic: ==450== length64 : 5,984 bytes in 98 blocks ==450== newarray : 6,408 bytes in 55 blocks ==450== suppressed: 675,417 bytes in 9,111 blocks ==450== Reachable blocks (those to which a pointer was found) are not shown. ==450== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==450== ==450== For counts of detected and suppressed errors, rerun with: -v ==450== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4553== Memcheck, a memory error detector ==4553== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4553== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4553== Command: ./client-test Client::Sync::eds_event::testMerge ==4553== Parent PID: 4336 ==4553== ==4586== Memcheck, a memory error detector ==4586== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4586== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4586== Command: ./client-test Client::Sync::eds_event::testMerge ==4586== Parent PID: 4336 ==4586== ==4591== Memcheck, a memory error detector ==4591== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4591== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4591== Command: ./client-test Client::Sync::eds_event::testTwinning ==4591== Parent PID: 152 ==4591== ==4591== ==4591== HEAP SUMMARY: ==4591== in use at exit: 6,997,353 bytes in 57,825 blocks ==4591== total heap usage: 2,664,776 allocs, 2,606,896 frees, 361,187,854 bytes allocated ==4591== ==4591== LEAK SUMMARY: ==4591== definitely lost: 0 bytes in 0 blocks ==4591== indirectly lost: 0 bytes in 0 blocks ==4591== possibly lost: 960 bytes in 3 blocks ==4591== still reachable: 6,230,225 bytes in 47,987 blocks ==4591== of which reachable via heuristic: ==4591== length64 : 6,024 bytes in 99 blocks ==4591== newarray : 6,408 bytes in 55 blocks ==4591== suppressed: 677,992 bytes in 9,162 blocks ==4591== Reachable blocks (those to which a pointer was found) are not shown. ==4591== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4591== ==4591== For counts of detected and suppressed errors, rerun with: -v ==4591== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4653== Memcheck, a memory error detector ==4653== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4653== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4653== Command: ./client-test Client::Sync::eds_event::testTwinning ==4653== Parent PID: 4591 ==4653== ==4744== Memcheck, a memory error detector ==4744== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4744== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4744== Command: ./client-test Client::Sync::eds_event::testTwinning ==4744== Parent PID: 4591 ==4744== ==4750== Memcheck, a memory error detector ==4750== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4750== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4750== Command: ./client-test Client::Sync::eds_event::testItems ==4750== Parent PID: 152 ==4750== ==4750== ==4750== HEAP SUMMARY: ==4750== in use at exit: 6,997,311 bytes in 57,818 blocks ==4750== total heap usage: 1,834,051 allocs, 1,776,180 frees, 241,042,467 bytes allocated ==4750== ==4750== LEAK SUMMARY: ==4750== definitely lost: 0 bytes in 0 blocks ==4750== indirectly lost: 0 bytes in 0 blocks ==4750== possibly lost: 960 bytes in 3 blocks ==4750== still reachable: 6,231,120 bytes in 48,005 blocks ==4750== of which reachable via heuristic: ==4750== length64 : 6,024 bytes in 99 blocks ==4750== newarray : 6,408 bytes in 55 blocks ==4750== suppressed: 677,223 bytes in 9,139 blocks ==4750== Reachable blocks (those to which a pointer was found) are not shown. ==4750== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4750== ==4750== For counts of detected and suppressed errors, rerun with: -v ==4750== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4812== Memcheck, a memory error detector ==4812== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4812== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4812== Command: ./client-test Client::Sync::eds_event::testItems ==4812== Parent PID: 4750 ==4812== ==4868== Memcheck, a memory error detector ==4868== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4868== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4868== Command: ./client-test Client::Sync::eds_event::testItems ==4868== Parent PID: 4750 ==4868== ==487== Memcheck, a memory error detector ==487== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==487== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==487== Command: ./client-test Client::Sync::eds_event::testTimeout ==487== Parent PID: 152 ==487== ==487== ==487== HEAP SUMMARY: ==487== in use at exit: 6,969,617 bytes in 57,390 blocks ==487== total heap usage: 621,135 allocs, 563,745 frees, 91,641,210 bytes allocated ==487== ==487== LEAK SUMMARY: ==487== definitely lost: 0 bytes in 0 blocks ==487== indirectly lost: 0 bytes in 0 blocks ==487== possibly lost: 528 bytes in 2 blocks ==487== still reachable: 6,220,959 bytes in 47,887 blocks ==487== of which reachable via heuristic: ==487== length64 : 5,416 bytes in 91 blocks ==487== newarray : 6,376 bytes in 53 blocks ==487== suppressed: 662,498 bytes in 8,851 blocks ==487== Reachable blocks (those to which a pointer was found) are not shown. ==487== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==487== ==487== For counts of detected and suppressed errors, rerun with: -v ==487== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==4872== Memcheck, a memory error detector ==4872== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4872== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4872== Command: ./client-test Client::Sync::eds_event::testItemsXML ==4872== Parent PID: 152 ==4872== ==4872== ==4872== HEAP SUMMARY: ==4872== in use at exit: 6,994,635 bytes in 57,782 blocks ==4872== total heap usage: 1,847,592 allocs, 1,789,757 frees, 240,386,827 bytes allocated ==4872== ==4872== LEAK SUMMARY: ==4872== definitely lost: 0 bytes in 0 blocks ==4872== indirectly lost: 0 bytes in 0 blocks ==4872== possibly lost: 960 bytes in 3 blocks ==4872== still reachable: 6,230,241 bytes in 47,984 blocks ==4872== of which reachable via heuristic: ==4872== length64 : 6,024 bytes in 99 blocks ==4872== newarray : 6,408 bytes in 55 blocks ==4872== suppressed: 675,426 bytes in 9,124 blocks ==4872== Reachable blocks (those to which a pointer was found) are not shown. ==4872== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4872== ==4872== For counts of detected and suppressed errors, rerun with: -v ==4872== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4935== Memcheck, a memory error detector ==4935== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4935== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4935== Command: ./client-test Client::Sync::eds_event::testItemsXML ==4935== Parent PID: 4872 ==4935== ==4991== Memcheck, a memory error detector ==4991== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4991== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4991== Command: ./client-test Client::Sync::eds_event::testItemsXML ==4991== Parent PID: 4872 ==4991== ==4996== Memcheck, a memory error detector ==4996== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4996== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4996== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==4996== Parent PID: 152 ==4996== ==4996== ==4996== HEAP SUMMARY: ==4996== in use at exit: 6,997,018 bytes in 57,819 blocks ==4996== total heap usage: 1,860,533 allocs, 1,802,661 frees, 271,379,317 bytes allocated ==4996== ==4996== LEAK SUMMARY: ==4996== definitely lost: 0 bytes in 0 blocks ==4996== indirectly lost: 0 bytes in 0 blocks ==4996== possibly lost: 960 bytes in 3 blocks ==4996== still reachable: 6,232,188 bytes in 48,021 blocks ==4996== of which reachable via heuristic: ==4996== length64 : 6,024 bytes in 99 blocks ==4996== newarray : 6,408 bytes in 55 blocks ==4996== suppressed: 675,862 bytes in 9,124 blocks ==4996== Reachable blocks (those to which a pointer was found) are not shown. ==4996== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4996== ==4996== For counts of detected and suppressed errors, rerun with: -v ==4996== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==508== Memcheck, a memory error detector ==508== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==508== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==508== Command: ./client-test Client::Sync::eds_event::testConversion ==508== Parent PID: 152 ==508== ==508== ==508== HEAP SUMMARY: ==508== in use at exit: 2,897,854 bytes in 30,053 blocks ==508== total heap usage: 321,677 allocs, 291,573 frees, 46,579,640 bytes allocated ==508== ==508== LEAK SUMMARY: ==508== definitely lost: 0 bytes in 0 blocks ==508== indirectly lost: 0 bytes in 0 blocks ==508== possibly lost: 960 bytes in 3 blocks ==508== still reachable: 2,216,583 bytes in 21,381 blocks ==508== of which reachable via heuristic: ==508== length64 : 5,096 bytes in 83 blocks ==508== newarray : 6,328 bytes in 50 blocks ==508== suppressed: 607,823 bytes in 8,124 blocks ==508== Reachable blocks (those to which a pointer was found) are not shown. ==508== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==508== ==508== For counts of detected and suppressed errors, rerun with: -v ==508== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5092== Memcheck, a memory error detector ==5092== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5092== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5092== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==5092== Parent PID: 4996 ==5092== ==5099== Memcheck, a memory error detector ==5099== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5099== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5099== Command: ./client-test Client::Sync::eds_event::testLargeObject ==5099== Parent PID: 152 ==5099== ==5099== ==5099== HEAP SUMMARY: ==5099== in use at exit: 6,993,799 bytes in 57,763 blocks ==5099== total heap usage: 1,891,076 allocs, 1,833,260 frees, 253,874,833 bytes allocated ==5099== ==5099== LEAK SUMMARY: ==5099== definitely lost: 0 bytes in 0 blocks ==5099== indirectly lost: 0 bytes in 0 blocks ==5099== possibly lost: 960 bytes in 3 blocks ==5099== still reachable: 6,229,781 bytes in 47,983 blocks ==5099== of which reachable via heuristic: ==5099== length64 : 6,024 bytes in 99 blocks ==5099== newarray : 6,408 bytes in 55 blocks ==5099== suppressed: 675,050 bytes in 9,106 blocks ==5099== Reachable blocks (those to which a pointer was found) are not shown. ==5099== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5099== ==5099== For counts of detected and suppressed errors, rerun with: -v ==5099== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5195== Memcheck, a memory error detector ==5195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5195== Command: ./client-test Client::Sync::eds_event::testLargeObject ==5195== Parent PID: 5099 ==5195== ==5201== Memcheck, a memory error detector ==5201== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5201== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5201== Command: ./client-test Client::Sync::eds_event::testOneWayFromServer ==5201== Parent PID: 152 ==5201== ==5201== ==5201== HEAP SUMMARY: ==5201== in use at exit: 6,985,485 bytes in 57,618 blocks ==5201== total heap usage: 2,982,592 allocs, 2,924,917 frees, 426,866,150 bytes allocated ==5201== ==5201== LEAK SUMMARY: ==5201== definitely lost: 0 bytes in 0 blocks ==5201== indirectly lost: 0 bytes in 0 blocks ==5201== possibly lost: 960 bytes in 3 blocks ==5201== still reachable: 6,226,993 bytes in 47,964 blocks ==5201== of which reachable via heuristic: ==5201== length64 : 6,024 bytes in 99 blocks ==5201== newarray : 6,408 bytes in 55 blocks ==5201== suppressed: 669,524 bytes in 8,980 blocks ==5201== Reachable blocks (those to which a pointer was found) are not shown. ==5201== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5201== ==5201== For counts of detected and suppressed errors, rerun with: -v ==5201== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==528== Memcheck, a memory error detector ==528== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==528== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==528== Command: ./client-test Client::Sync::eds_event::testConversion ==528== Parent PID: 508 ==528== ==533== Memcheck, a memory error detector ==533== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==533== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==533== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSemantic ==533== Parent PID: 152 ==533== ==533== ==533== HEAP SUMMARY: ==533== in use at exit: 6,994,984 bytes in 57,793 blocks ==533== total heap usage: 1,384,596 allocs, 1,326,750 frees, 203,002,630 bytes allocated ==533== ==533== LEAK SUMMARY: ==533== definitely lost: 0 bytes in 0 blocks ==533== indirectly lost: 0 bytes in 0 blocks ==533== possibly lost: 960 bytes in 3 blocks ==533== still reachable: 6,230,368 bytes in 47,990 blocks ==533== of which reachable via heuristic: ==533== length64 : 6,024 bytes in 99 blocks ==533== newarray : 6,408 bytes in 55 blocks ==533== suppressed: 675,480 bytes in 9,127 blocks ==533== Reachable blocks (those to which a pointer was found) are not shown. ==533== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==533== ==533== For counts of detected and suppressed errors, rerun with: -v ==533== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5406== Memcheck, a memory error detector ==5406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5406== Command: ./client-test Client::Sync::eds_event::testOneWayFromClient ==5406== Parent PID: 152 ==5406== ==5406== ==5406== HEAP SUMMARY: ==5406== in use at exit: 6,997,014 bytes in 57,818 blocks ==5406== total heap usage: 2,952,149 allocs, 2,894,274 frees, 423,520,766 bytes allocated ==5406== ==5406== LEAK SUMMARY: ==5406== definitely lost: 0 bytes in 0 blocks ==5406== indirectly lost: 0 bytes in 0 blocks ==5406== possibly lost: 960 bytes in 3 blocks ==5406== still reachable: 6,232,668 bytes in 48,030 blocks ==5406== of which reachable via heuristic: ==5406== length64 : 6,024 bytes in 99 blocks ==5406== newarray : 6,408 bytes in 55 blocks ==5406== suppressed: 675,378 bytes in 9,114 blocks ==5406== Reachable blocks (those to which a pointer was found) are not shown. ==5406== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5406== ==5406== For counts of detected and suppressed errors, rerun with: -v ==5406== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5620== Memcheck, a memory error detector ==5620== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5620== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5620== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemote ==5620== Parent PID: 152 ==5620== ==5620== ==5620== HEAP SUMMARY: ==5620== in use at exit: 6,999,998 bytes in 57,920 blocks ==5620== total heap usage: 2,900,381 allocs, 2,842,404 frees, 420,201,615 bytes allocated ==5620== ==5620== LEAK SUMMARY: ==5620== definitely lost: 0 bytes in 0 blocks ==5620== indirectly lost: 0 bytes in 0 blocks ==5620== possibly lost: 960 bytes in 3 blocks ==5620== still reachable: 6,230,841 bytes in 47,996 blocks ==5620== of which reachable via heuristic: ==5620== length64 : 6,024 bytes in 99 blocks ==5620== newarray : 6,408 bytes in 55 blocks ==5620== suppressed: 680,189 bytes in 9,250 blocks ==5620== Reachable blocks (those to which a pointer was found) are not shown. ==5620== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5620== ==5620== For counts of detected and suppressed errors, rerun with: -v ==5620== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5826== Memcheck, a memory error detector ==5826== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5826== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5826== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocal ==5826== Parent PID: 152 ==5826== ==5826== ==5826== HEAP SUMMARY: ==5826== in use at exit: 6,995,608 bytes in 57,789 blocks ==5826== total heap usage: 2,952,476 allocs, 2,894,630 frees, 423,531,550 bytes allocated ==5826== ==5826== LEAK SUMMARY: ==5826== definitely lost: 0 bytes in 0 blocks ==5826== indirectly lost: 0 bytes in 0 blocks ==5826== possibly lost: 960 bytes in 3 blocks ==5826== still reachable: 6,229,685 bytes in 47,982 blocks ==5826== of which reachable via heuristic: ==5826== length64 : 6,024 bytes in 99 blocks ==5826== newarray : 6,408 bytes in 55 blocks ==5826== suppressed: 676,955 bytes in 9,133 blocks ==5826== Reachable blocks (those to which a pointer was found) are not shown. ==5826== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5826== ==5826== For counts of detected and suppressed errors, rerun with: -v ==5826== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6041== Memcheck, a memory error detector ==6041== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6041== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6041== Command: ./client-test Client::Sync::eds_contact::testDeleteAllRefresh ==6041== Parent PID: 152 ==6041== ==6041== ==6041== HEAP SUMMARY: ==6041== in use at exit: 7,043,137 bytes in 57,982 blocks ==6041== total heap usage: 1,426,659 allocs, 1,368,624 frees, 206,819,431 bytes allocated ==6041== ==6041== LEAK SUMMARY: ==6041== definitely lost: 0 bytes in 0 blocks ==6041== indirectly lost: 0 bytes in 0 blocks ==6041== possibly lost: 960 bytes in 3 blocks ==6041== still reachable: 6,301,553 bytes in 47,983 blocks ==6041== of which reachable via heuristic: ==6041== length64 : 6,000 bytes in 99 blocks ==6041== newarray : 6,392 bytes in 54 blocks ==6041== suppressed: 632,600 bytes in 9,198 blocks ==6041== Reachable blocks (those to which a pointer was found) are not shown. ==6041== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6041== ==6041== For counts of detected and suppressed errors, rerun with: -v ==6041== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6146== Memcheck, a memory error detector ==6146== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6146== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6146== Command: ./client-test Client::Sync::eds_contact::testTwoWaySync ==6146== Parent PID: 152 ==6146== ==6146== ==6146== HEAP SUMMARY: ==6146== in use at exit: 6,997,348 bytes in 57,817 blocks ==6146== total heap usage: 634,326 allocs, 576,458 frees, 95,165,801 bytes allocated ==6146== ==6146== LEAK SUMMARY: ==6146== definitely lost: 0 bytes in 0 blocks ==6146== indirectly lost: 0 bytes in 0 blocks ==6146== possibly lost: 960 bytes in 3 blocks ==6146== still reachable: 6,310,457 bytes in 48,107 blocks ==6146== of which reachable via heuristic: ==6146== length64 : 5,960 bytes in 98 blocks ==6146== newarray : 6,392 bytes in 54 blocks ==6146== suppressed: 598,603 bytes in 9,044 blocks ==6146== Reachable blocks (those to which a pointer was found) are not shown. ==6146== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6146== ==6146== For counts of detected and suppressed errors, rerun with: -v ==6146== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6182== Memcheck, a memory error detector ==6182== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6182== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6182== Command: ./client-test Client::Sync::eds_contact::testSlowSync ==6182== Parent PID: 152 ==6182== ==6182== ==6182== HEAP SUMMARY: ==6182== in use at exit: 6,991,202 bytes in 57,715 blocks ==6182== total heap usage: 634,428 allocs, 576,662 frees, 95,214,159 bytes allocated ==6182== ==6182== LEAK SUMMARY: ==6182== definitely lost: 0 bytes in 0 blocks ==6182== indirectly lost: 0 bytes in 0 blocks ==6182== possibly lost: 960 bytes in 3 blocks ==6182== still reachable: 6,304,673 bytes in 48,000 blocks ==6182== of which reachable via heuristic: ==6182== length64 : 5,960 bytes in 98 blocks ==6182== newarray : 6,392 bytes in 54 blocks ==6182== suppressed: 598,241 bytes in 9,049 blocks ==6182== Reachable blocks (those to which a pointer was found) are not shown. ==6182== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6182== ==6182== For counts of detected and suppressed errors, rerun with: -v ==6182== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6218== Memcheck, a memory error detector ==6218== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6218== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6218== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSync ==6218== Parent PID: 152 ==6218== ==6218== ==6218== HEAP SUMMARY: ==6218== in use at exit: 6,998,061 bytes in 57,821 blocks ==6218== total heap usage: 634,704 allocs, 576,832 frees, 95,223,299 bytes allocated ==6218== ==6218== LEAK SUMMARY: ==6218== definitely lost: 0 bytes in 0 blocks ==6218== indirectly lost: 0 bytes in 0 blocks ==6218== possibly lost: 960 bytes in 3 blocks ==6218== still reachable: 6,309,194 bytes in 48,084 blocks ==6218== of which reachable via heuristic: ==6218== length64 : 5,960 bytes in 98 blocks ==6218== newarray : 6,392 bytes in 54 blocks ==6218== suppressed: 600,747 bytes in 9,073 blocks ==6218== Reachable blocks (those to which a pointer was found) are not shown. ==6218== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6218== ==6218== For counts of detected and suppressed errors, rerun with: -v ==6218== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==623== Memcheck, a memory error detector ==623== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==623== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==623== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSemantic ==623== Parent PID: 152 ==623== ==623== ==623== HEAP SUMMARY: ==623== in use at exit: 7,002,310 bytes in 57,917 blocks ==623== total heap usage: 1,727,257 allocs, 1,669,286 frees, 255,070,341 bytes allocated ==623== ==623== LEAK SUMMARY: ==623== definitely lost: 0 bytes in 0 blocks ==623== indirectly lost: 0 bytes in 0 blocks ==623== possibly lost: 960 bytes in 3 blocks ==623== still reachable: 6,236,777 bytes in 48,102 blocks ==623== of which reachable via heuristic: ==623== length64 : 6,024 bytes in 99 blocks ==623== newarray : 6,408 bytes in 55 blocks ==623== suppressed: 676,397 bytes in 9,139 blocks ==623== Reachable blocks (those to which a pointer was found) are not shown. ==623== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==623== ==623== For counts of detected and suppressed errors, rerun with: -v ==623== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6255== Memcheck, a memory error detector ==6255== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6255== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6255== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSync ==6255== Parent PID: 152 ==6255== ==6255== ==6255== HEAP SUMMARY: ==6255== in use at exit: 6,992,169 bytes in 57,726 blocks ==6255== total heap usage: 634,614 allocs, 576,837 frees, 95,215,120 bytes allocated ==6255== ==6255== LEAK SUMMARY: ==6255== definitely lost: 0 bytes in 0 blocks ==6255== indirectly lost: 0 bytes in 0 blocks ==6255== possibly lost: 960 bytes in 3 blocks ==6255== still reachable: 6,304,106 bytes in 47,993 blocks ==6255== of which reachable via heuristic: ==6255== length64 : 5,960 bytes in 98 blocks ==6255== newarray : 6,392 bytes in 54 blocks ==6255== suppressed: 599,943 bytes in 9,069 blocks ==6255== Reachable blocks (those to which a pointer was found) are not shown. ==6255== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6255== ==6255== For counts of detected and suppressed errors, rerun with: -v ==6255== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6292== Memcheck, a memory error detector ==6292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6292== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteSync ==6292== Parent PID: 152 ==6292== ==6292== ==6292== HEAP SUMMARY: ==6292== in use at exit: 6,988,770 bytes in 57,666 blocks ==6292== total heap usage: 635,338 allocs, 577,621 frees, 95,250,492 bytes allocated ==6292== ==6292== LEAK SUMMARY: ==6292== definitely lost: 0 bytes in 0 blocks ==6292== indirectly lost: 0 bytes in 0 blocks ==6292== possibly lost: 960 bytes in 3 blocks ==6292== still reachable: 6,303,866 bytes in 47,994 blocks ==6292== of which reachable via heuristic: ==6292== length64 : 5,960 bytes in 98 blocks ==6292== newarray : 6,392 bytes in 54 blocks ==6292== suppressed: 596,616 bytes in 9,006 blocks ==6292== Reachable blocks (those to which a pointer was found) are not shown. ==6292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6292== ==6292== For counts of detected and suppressed errors, rerun with: -v ==6292== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6329== Memcheck, a memory error detector ==6329== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6329== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6329== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalSync ==6329== Parent PID: 152 ==6329== ==6329== ==6329== HEAP SUMMARY: ==6329== in use at exit: 6,985,323 bytes in 57,633 blocks ==6329== total heap usage: 635,305 allocs, 577,621 frees, 95,243,348 bytes allocated ==6329== ==6329== LEAK SUMMARY: ==6329== definitely lost: 0 bytes in 0 blocks ==6329== indirectly lost: 0 bytes in 0 blocks ==6329== possibly lost: 960 bytes in 3 blocks ==6329== still reachable: 6,301,746 bytes in 47,983 blocks ==6329== of which reachable via heuristic: ==6329== length64 : 5,960 bytes in 98 blocks ==6329== newarray : 6,392 bytes in 54 blocks ==6329== suppressed: 595,457 bytes in 8,986 blocks ==6329== Reachable blocks (those to which a pointer was found) are not shown. ==6329== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6329== ==6329== For counts of detected and suppressed errors, rerun with: -v ==6329== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6366== Memcheck, a memory error detector ==6366== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6366== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6366== Command: ./client-test Client::Sync::eds_contact::testConversion ==6366== Parent PID: 152 ==6366== ==6366== ==6366== HEAP SUMMARY: ==6366== in use at exit: 2,893,834 bytes in 29,968 blocks ==6366== total heap usage: 321,749 allocs, 291,730 frees, 47,814,974 bytes allocated ==6366== ==6366== LEAK SUMMARY: ==6366== definitely lost: 0 bytes in 0 blocks ==6366== indirectly lost: 0 bytes in 0 blocks ==6366== possibly lost: 960 bytes in 3 blocks ==6366== still reachable: 2,290,559 bytes in 21,379 blocks ==6366== of which reachable via heuristic: ==6366== length64 : 5,072 bytes in 83 blocks ==6366== newarray : 6,312 bytes in 49 blocks ==6366== suppressed: 530,803 bytes in 8,052 blocks ==6366== Reachable blocks (those to which a pointer was found) are not shown. ==6366== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6366== ==6366== For counts of detected and suppressed errors, rerun with: -v ==6366== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6385== Memcheck, a memory error detector ==6385== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6385== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6385== Command: ./client-test Client::Sync::eds_contact::testConversion ==6385== Parent PID: 6366 ==6385== ==6389== Memcheck, a memory error detector ==6389== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6389== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6389== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSemantic ==6389== Parent PID: 152 ==6389== ==6389== ==6389== HEAP SUMMARY: ==6389== in use at exit: 7,053,055 bytes in 58,144 blocks ==6389== total heap usage: 1,366,968 allocs, 1,308,771 frees, 202,789,706 bytes allocated ==6389== ==6389== LEAK SUMMARY: ==6389== definitely lost: 0 bytes in 0 blocks ==6389== indirectly lost: 0 bytes in 0 blocks ==6389== possibly lost: 960 bytes in 3 blocks ==6389== still reachable: 6,303,770 bytes in 47,993 blocks ==6389== of which reachable via heuristic: ==6389== length64 : 6,000 bytes in 99 blocks ==6389== newarray : 6,392 bytes in 54 blocks ==6389== suppressed: 640,301 bytes in 9,350 blocks ==6389== Reachable blocks (those to which a pointer was found) are not shown. ==6389== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6389== ==6389== For counts of detected and suppressed errors, rerun with: -v ==6389== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6480== Memcheck, a memory error detector ==6480== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6480== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6480== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSemantic ==6480== Parent PID: 152 ==6480== ==6480== ==6480== HEAP SUMMARY: ==6480== in use at exit: 7,043,487 bytes in 57,986 blocks ==6480== total heap usage: 1,706,384 allocs, 1,648,344 frees, 254,833,439 bytes allocated ==6480== ==6480== LEAK SUMMARY: ==6480== definitely lost: 0 bytes in 0 blocks ==6480== indirectly lost: 0 bytes in 0 blocks ==6480== possibly lost: 960 bytes in 3 blocks ==6480== still reachable: 6,301,386 bytes in 47,979 blocks ==6480== of which reachable via heuristic: ==6480== length64 : 6,000 bytes in 99 blocks ==6480== newarray : 6,392 bytes in 54 blocks ==6480== suppressed: 633,285 bytes in 9,208 blocks ==6480== Reachable blocks (those to which a pointer was found) are not shown. ==6480== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6480== ==6480== For counts of detected and suppressed errors, rerun with: -v ==6480== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6594== Memcheck, a memory error detector ==6594== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6594== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6594== Command: ./client-test Client::Sync::eds_contact::testRefreshStatus ==6594== Parent PID: 152 ==6594== ==6594== ==6594== HEAP SUMMARY: ==6594== in use at exit: 7,053,693 bytes in 58,154 blocks ==6594== total heap usage: 1,073,164 allocs, 1,014,958 frees, 153,896,572 bytes allocated ==6594== ==6594== LEAK SUMMARY: ==6594== definitely lost: 0 bytes in 0 blocks ==6594== indirectly lost: 0 bytes in 0 blocks ==6594== possibly lost: 960 bytes in 3 blocks ==6594== still reachable: 6,303,814 bytes in 47,992 blocks ==6594== of which reachable via heuristic: ==6594== length64 : 6,000 bytes in 99 blocks ==6594== newarray : 6,392 bytes in 54 blocks ==6594== suppressed: 641,063 bytes in 9,363 blocks ==6594== Reachable blocks (those to which a pointer was found) are not shown. ==6594== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6594== ==6594== For counts of detected and suppressed errors, rerun with: -v ==6594== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6674== Memcheck, a memory error detector ==6674== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6674== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6674== Command: ./client-test Client::Sync::eds_contact::testTwoWayRestart ==6674== Parent PID: 152 ==6674== ==6674== ==6674== HEAP SUMMARY: ==6674== in use at exit: 7,053,805 bytes in 58,158 blocks ==6674== total heap usage: 1,838,223 allocs, 1,780,011 frees, 271,366,962 bytes allocated ==6674== ==6674== LEAK SUMMARY: ==6674== definitely lost: 0 bytes in 0 blocks ==6674== indirectly lost: 0 bytes in 0 blocks ==6674== possibly lost: 960 bytes in 3 blocks ==6674== still reachable: 6,303,814 bytes in 47,992 blocks ==6674== of which reachable via heuristic: ==6674== length64 : 6,000 bytes in 99 blocks ==6674== newarray : 6,392 bytes in 54 blocks ==6674== suppressed: 641,175 bytes in 9,367 blocks ==6674== Reachable blocks (those to which a pointer was found) are not shown. ==6674== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6674== ==6674== For counts of detected and suppressed errors, rerun with: -v ==6674== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6833== Memcheck, a memory error detector ==6833== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6833== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6833== Command: ./client-test Client::Sync::eds_contact::testSlowRestart ==6833== Parent PID: 152 ==6833== ==6833== ==6833== HEAP SUMMARY: ==6833== in use at exit: 7,043,234 bytes in 57,984 blocks ==6833== total heap usage: 1,845,519 allocs, 1,787,481 frees, 272,194,254 bytes allocated ==6833== ==6833== LEAK SUMMARY: ==6833== definitely lost: 0 bytes in 0 blocks ==6833== indirectly lost: 0 bytes in 0 blocks ==6833== possibly lost: 960 bytes in 3 blocks ==6833== still reachable: 6,301,586 bytes in 47,983 blocks ==6833== of which reachable via heuristic: ==6833== length64 : 6,000 bytes in 99 blocks ==6833== newarray : 6,392 bytes in 54 blocks ==6833== suppressed: 632,664 bytes in 9,200 blocks ==6833== Reachable blocks (those to which a pointer was found) are not shown. ==6833== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6833== ==6833== For counts of detected and suppressed errors, rerun with: -v ==6833== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6991== Memcheck, a memory error detector ==6991== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6991== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6991== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalRestart ==6991== Parent PID: 152 ==6991== ==6991== ==6991== HEAP SUMMARY: ==6991== in use at exit: 7,057,981 bytes in 58,264 blocks ==6991== total heap usage: 1,845,737 allocs, 1,787,419 frees, 272,205,558 bytes allocated ==6991== ==6991== LEAK SUMMARY: ==6991== definitely lost: 0 bytes in 0 blocks ==6991== indirectly lost: 0 bytes in 0 blocks ==6991== possibly lost: 960 bytes in 3 blocks ==6991== still reachable: 6,304,594 bytes in 48,003 blocks ==6991== of which reachable via heuristic: ==6991== length64 : 6,000 bytes in 99 blocks ==6991== newarray : 6,392 bytes in 54 blocks ==6991== suppressed: 644,403 bytes in 9,460 blocks ==6991== Reachable blocks (those to which a pointer was found) are not shown. ==6991== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6991== ==6991== For counts of detected and suppressed errors, rerun with: -v ==6991== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7148== Memcheck, a memory error detector ==7148== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7148== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7148== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocalRestart ==7148== Parent PID: 152 ==7148== ==7148== ==7148== HEAP SUMMARY: ==7148== in use at exit: 7,059,030 bytes in 58,242 blocks ==7148== total heap usage: 1,837,478 allocs, 1,779,182 frees, 271,412,761 bytes allocated ==7148== ==7148== LEAK SUMMARY: ==7148== definitely lost: 0 bytes in 0 blocks ==7148== indirectly lost: 0 bytes in 0 blocks ==7148== possibly lost: 960 bytes in 3 blocks ==7148== still reachable: 6,308,231 bytes in 48,063 blocks ==7148== of which reachable via heuristic: ==7148== length64 : 6,000 bytes in 99 blocks ==7148== newarray : 6,392 bytes in 54 blocks ==7148== suppressed: 641,983 bytes in 9,380 blocks ==7148== Reachable blocks (those to which a pointer was found) are not shown. ==7148== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7148== ==7148== For counts of detected and suppressed errors, rerun with: -v ==7148== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7306== Memcheck, a memory error detector ==7306== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7306== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7306== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteRestart ==7306== Parent PID: 152 ==7306== ==7306== ==7306== HEAP SUMMARY: ==7306== in use at exit: 7,056,538 bytes in 58,228 blocks ==7306== total heap usage: 1,059,371 allocs, 1,001,091 frees, 155,476,234 bytes allocated ==7306== ==7306== LEAK SUMMARY: ==7306== definitely lost: 0 bytes in 0 blocks ==7306== indirectly lost: 0 bytes in 0 blocks ==7306== possibly lost: 960 bytes in 3 blocks ==7306== still reachable: 6,304,474 bytes in 47,997 blocks ==7306== of which reachable via heuristic: ==7306== length64 : 6,000 bytes in 99 blocks ==7306== newarray : 6,392 bytes in 54 blocks ==7306== suppressed: 643,248 bytes in 9,432 blocks ==7306== Reachable blocks (those to which a pointer was found) are not shown. ==7306== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7306== ==7306== For counts of detected and suppressed errors, rerun with: -v ==7306== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==735== Memcheck, a memory error detector ==735== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==735== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==735== Command: ./client-test Client::Sync::eds_event::testRefreshStatus ==735== Parent PID: 152 ==735== ==735== ==735== HEAP SUMMARY: ==735== in use at exit: 6,985,628 bytes in 57,631 blocks ==735== total heap usage: 1,092,957 allocs, 1,035,274 frees, 154,362,592 bytes allocated ==735== ==735== LEAK SUMMARY: ==735== definitely lost: 0 bytes in 0 blocks ==735== indirectly lost: 0 bytes in 0 blocks ==735== possibly lost: 960 bytes in 3 blocks ==735== still reachable: 6,227,368 bytes in 47,972 blocks ==735== of which reachable via heuristic: ==735== length64 : 6,024 bytes in 99 blocks ==735== newarray : 6,408 bytes in 55 blocks ==735== suppressed: 669,124 bytes in 8,983 blocks ==735== Reachable blocks (those to which a pointer was found) are not shown. ==735== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==735== ==735== For counts of detected and suppressed errors, rerun with: -v ==735== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7388== Memcheck, a memory error detector ==7388== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7388== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7388== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemoteRestart ==7388== Parent PID: 152 ==7388== ==7388== ==7388== HEAP SUMMARY: ==7388== in use at exit: 7,043,778 bytes in 57,996 blocks ==7388== total heap usage: 1,831,227 allocs, 1,773,177 frees, 270,725,439 bytes allocated ==7388== ==7388== LEAK SUMMARY: ==7388== definitely lost: 0 bytes in 0 blocks ==7388== indirectly lost: 0 bytes in 0 blocks ==7388== possibly lost: 960 bytes in 3 blocks ==7388== still reachable: 6,301,690 bytes in 47,985 blocks ==7388== of which reachable via heuristic: ==7388== length64 : 6,000 bytes in 99 blocks ==7388== newarray : 6,392 bytes in 54 blocks ==7388== suppressed: 633,104 bytes in 9,210 blocks ==7388== Reachable blocks (those to which a pointer was found) are not shown. ==7388== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7388== ==7388== For counts of detected and suppressed errors, rerun with: -v ==7388== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7545== Memcheck, a memory error detector ==7545== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7545== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7545== Command: ./client-test Client::Sync::eds_contact::testManyRestarts ==7545== Parent PID: 152 ==7545== ==7545== ==7545== HEAP SUMMARY: ==7545== in use at exit: 7,057,420 bytes in 58,253 blocks ==7545== total heap usage: 1,581,606 allocs, 1,523,301 frees, 223,206,543 bytes allocated ==7545== ==7545== LEAK SUMMARY: ==7545== definitely lost: 0 bytes in 0 blocks ==7545== indirectly lost: 0 bytes in 0 blocks ==7545== possibly lost: 960 bytes in 3 blocks ==7545== still reachable: 6,304,218 bytes in 47,996 blocks ==7545== of which reachable via heuristic: ==7545== length64 : 6,000 bytes in 99 blocks ==7545== newarray : 6,392 bytes in 54 blocks ==7545== suppressed: 644,386 bytes in 9,458 blocks ==7545== Reachable blocks (those to which a pointer was found) are not shown. ==7545== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7545== ==7545== For counts of detected and suppressed errors, rerun with: -v ==7545== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7755== Memcheck, a memory error detector ==7755== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7755== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7755== Command: ./client-test Client::Sync::eds_contact::testCopy ==7755== Parent PID: 152 ==7755== ==7755== ==7755== HEAP SUMMARY: ==7755== in use at exit: 7,058,990 bytes in 58,242 blocks ==7755== total heap usage: 1,821,130 allocs, 1,762,834 frees, 262,233,084 bytes allocated ==7755== ==7755== LEAK SUMMARY: ==7755== definitely lost: 0 bytes in 0 blocks ==7755== indirectly lost: 0 bytes in 0 blocks ==7755== possibly lost: 960 bytes in 3 blocks ==7755== still reachable: 6,308,231 bytes in 48,063 blocks ==7755== of which reachable via heuristic: ==7755== length64 : 6,000 bytes in 99 blocks ==7755== newarray : 6,392 bytes in 54 blocks ==7755== suppressed: 641,943 bytes in 9,380 blocks ==7755== Reachable blocks (those to which a pointer was found) are not shown. ==7755== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7755== ==7755== For counts of detected and suppressed errors, rerun with: -v ==7755== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7889== Memcheck, a memory error detector ==7889== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7889== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7889== Command: ./client-test Client::Sync::eds_contact::testCopy ==7889== Parent PID: 7755 ==7889== ==7907== Memcheck, a memory error detector ==7907== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7907== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7907== Command: ./client-test Client::Sync::eds_contact::testCopy ==7907== Parent PID: 7755 ==7907== ==7912== Memcheck, a memory error detector ==7912== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7912== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7912== Command: ./client-test Client::Sync::eds_contact::testDelete ==7912== Parent PID: 152 ==7912== ==7912== ==7912== HEAP SUMMARY: ==7912== in use at exit: 7,052,220 bytes in 58,127 blocks ==7912== total heap usage: 2,472,669 allocs, 2,414,486 frees, 364,362,056 bytes allocated ==7912== ==7912== LEAK SUMMARY: ==7912== definitely lost: 0 bytes in 0 blocks ==7912== indirectly lost: 0 bytes in 0 blocks ==7912== possibly lost: 960 bytes in 3 blocks ==7912== still reachable: 6,303,566 bytes in 47,990 blocks ==7912== of which reachable via heuristic: ==7912== length64 : 6,000 bytes in 99 blocks ==7912== newarray : 6,392 bytes in 54 blocks ==7912== suppressed: 639,838 bytes in 9,338 blocks ==7912== Reachable blocks (those to which a pointer was found) are not shown. ==7912== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7912== ==7912== For counts of detected and suppressed errors, rerun with: -v ==7912== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8046== Memcheck, a memory error detector ==8046== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8046== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8046== Command: ./client-test Client::Sync::eds_contact::testDelete ==8046== Parent PID: 7912 ==8046== ==8102== Memcheck, a memory error detector ==8102== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8102== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8102== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==8102== Parent PID: 152 ==8102== ==8102== ==8102== HEAP SUMMARY: ==8102== in use at exit: 7,050,379 bytes in 58,099 blocks ==8102== total heap usage: 2,091,478 allocs, 2,033,324 frees, 309,934,159 bytes allocated ==8102== ==8102== LEAK SUMMARY: ==8102== definitely lost: 0 bytes in 0 blocks ==8102== indirectly lost: 0 bytes in 0 blocks ==8102== possibly lost: 960 bytes in 3 blocks ==8102== still reachable: 6,303,662 bytes in 47,991 blocks ==8102== of which reachable via heuristic: ==8102== length64 : 6,000 bytes in 99 blocks ==8102== newarray : 6,392 bytes in 54 blocks ==8102== suppressed: 637,901 bytes in 9,309 blocks ==8102== Reachable blocks (those to which a pointer was found) are not shown. ==8102== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8102== ==8102== For counts of detected and suppressed errors, rerun with: -v ==8102== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==813== Memcheck, a memory error detector ==813== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==813== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==813== Command: ./client-test Client::Sync::eds_event::testTwoWayRestart ==813== Parent PID: 152 ==813== ==813== ==813== HEAP SUMMARY: ==813== in use at exit: 6,997,204 bytes in 57,819 blocks ==813== total heap usage: 1,868,438 allocs, 1,810,565 frees, 271,879,311 bytes allocated ==813== ==813== LEAK SUMMARY: ==813== definitely lost: 0 bytes in 0 blocks ==813== indirectly lost: 0 bytes in 0 blocks ==813== possibly lost: 960 bytes in 3 blocks ==813== still reachable: 6,232,634 bytes in 48,030 blocks ==813== of which reachable via heuristic: ==813== length64 : 6,024 bytes in 99 blocks ==813== newarray : 6,408 bytes in 55 blocks ==813== suppressed: 675,602 bytes in 9,115 blocks ==813== Reachable blocks (those to which a pointer was found) are not shown. ==813== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==813== ==813== For counts of detected and suppressed errors, rerun with: -v ==813== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8250== Memcheck, a memory error detector ==8250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8250== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==8250== Parent PID: 8102 ==8250== ==8256== Memcheck, a memory error detector ==8256== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8256== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8256== Command: ./client-test Client::Sync::eds_contact::testManyItems ==8256== Parent PID: 152 ==8256== ==8256== ==8256== HEAP SUMMARY: ==8256== in use at exit: 7,110,368 bytes in 58,238 blocks ==8256== total heap usage: 5,140,439 allocs, 5,082,146 frees, 659,730,272 bytes allocated ==8256== ==8256== LEAK SUMMARY: ==8256== definitely lost: 0 bytes in 0 blocks ==8256== indirectly lost: 0 bytes in 0 blocks ==8256== possibly lost: 960 bytes in 3 blocks ==8256== still reachable: 6,358,049 bytes in 48,065 blocks ==8256== of which reachable via heuristic: ==8256== length64 : 6,000 bytes in 99 blocks ==8256== newarray : 6,392 bytes in 54 blocks ==8256== suppressed: 643,503 bytes in 9,374 blocks ==8256== Reachable blocks (those to which a pointer was found) are not shown. ==8256== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8256== ==8256== For counts of detected and suppressed errors, rerun with: -v ==8256== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8394== Memcheck, a memory error detector ==8394== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8394== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8394== Command: ./client-test Client::Sync::eds_contact::testManyItems ==8394== Parent PID: 8256 ==8394== ==8398== Memcheck, a memory error detector ==8398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8398== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==8398== Parent PID: 152 ==8398== ==8398== ==8398== HEAP SUMMARY: ==8398== in use at exit: 7,055,152 bytes in 58,155 blocks ==8398== total heap usage: 6,223,464 allocs, 6,165,252 frees, 739,744,712 bytes allocated ==8398== ==8398== LEAK SUMMARY: ==8398== definitely lost: 0 bytes in 0 blocks ==8398== indirectly lost: 0 bytes in 0 blocks ==8398== possibly lost: 960 bytes in 3 blocks ==8398== still reachable: 6,307,218 bytes in 48,004 blocks ==8398== of which reachable via heuristic: ==8398== length64 : 6,000 bytes in 99 blocks ==8398== newarray : 6,392 bytes in 54 blocks ==8398== suppressed: 638,950 bytes in 9,350 blocks ==8398== Reachable blocks (those to which a pointer was found) are not shown. ==8398== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8398== ==8398== For counts of detected and suppressed errors, rerun with: -v ==8398== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8539== Memcheck, a memory error detector ==8539== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8539== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8539== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==8539== Parent PID: 8398 ==8539== ==8588== Memcheck, a memory error detector ==8588== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8588== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8588== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==8588== Parent PID: 152 ==8588== ==8588== ==8588== HEAP SUMMARY: ==8588== in use at exit: 7,054,160 bytes in 58,183 blocks ==8588== total heap usage: 3,418,039 allocs, 3,359,797 frees, 515,390,781 bytes allocated ==8588== ==8588== LEAK SUMMARY: ==8588== definitely lost: 0 bytes in 0 blocks ==8588== indirectly lost: 0 bytes in 0 blocks ==8588== possibly lost: 960 bytes in 3 blocks ==8588== still reachable: 6,304,286 bytes in 47,997 blocks ==8588== of which reachable via heuristic: ==8588== length64 : 6,000 bytes in 99 blocks ==8588== newarray : 6,392 bytes in 54 blocks ==8588== suppressed: 641,058 bytes in 9,387 blocks ==8588== Reachable blocks (those to which a pointer was found) are not shown. ==8588== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8588== ==8588== For counts of detected and suppressed errors, rerun with: -v ==8588== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8721== Memcheck, a memory error detector ==8721== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8721== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8721== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==8721== Parent PID: 8588 ==8721== ==8829== Memcheck, a memory error detector ==8829== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8829== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8829== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==8829== Parent PID: 152 ==8829== ==8829== ==8829== HEAP SUMMARY: ==8829== in use at exit: 7,051,997 bytes in 58,130 blocks ==8829== total heap usage: 2,825,514 allocs, 2,767,327 frees, 417,430,161 bytes allocated ==8829== ==8829== LEAK SUMMARY: ==8829== definitely lost: 0 bytes in 0 blocks ==8829== indirectly lost: 0 bytes in 0 blocks ==8829== possibly lost: 960 bytes in 3 blocks ==8829== still reachable: 6,303,842 bytes in 47,990 blocks ==8829== of which reachable via heuristic: ==8829== length64 : 6,000 bytes in 99 blocks ==8829== newarray : 6,392 bytes in 54 blocks ==8829== suppressed: 639,339 bytes in 9,341 blocks ==8829== Reachable blocks (those to which a pointer was found) are not shown. ==8829== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8829== ==8829== For counts of detected and suppressed errors, rerun with: -v ==8829== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8963== Memcheck, a memory error detector ==8963== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8963== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8963== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==8963== Parent PID: 8829 ==8963== ==8981== Memcheck, a memory error detector ==8981== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8981== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8981== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==8981== Parent PID: 8829 ==8981== ==9045== Memcheck, a memory error detector ==9045== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9045== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9045== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==9045== Parent PID: 152 ==9045== ==9045== ==9045== HEAP SUMMARY: ==9045== in use at exit: 7,063,754 bytes in 58,324 blocks ==9045== total heap usage: 2,574,093 allocs, 2,515,713 frees, 370,893,860 bytes allocated ==9045== ==9045== LEAK SUMMARY: ==9045== definitely lost: 0 bytes in 0 blocks ==9045== indirectly lost: 0 bytes in 0 blocks ==9045== possibly lost: 960 bytes in 3 blocks ==9045== still reachable: 6,312,218 bytes in 48,133 blocks ==9045== of which reachable via heuristic: ==9045== length64 : 6,000 bytes in 99 blocks ==9045== newarray : 6,392 bytes in 54 blocks ==9045== suppressed: 642,720 bytes in 9,392 blocks ==9045== Reachable blocks (those to which a pointer was found) are not shown. ==9045== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9045== ==9045== For counts of detected and suppressed errors, rerun with: -v ==9045== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9179== Memcheck, a memory error detector ==9179== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9179== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9179== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==9179== Parent PID: 9045 ==9179== ==9197== Memcheck, a memory error detector ==9197== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9197== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9197== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==9197== Parent PID: 9045 ==9197== ==9265== Memcheck, a memory error detector ==9265== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9265== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9265== Command: ./client-test Client::Sync::eds_contact::testUpdate ==9265== Parent PID: 152 ==9265== ==9265== ==9265== HEAP SUMMARY: ==9265== in use at exit: 7,057,268 bytes in 58,214 blocks ==9265== total heap usage: 2,516,566 allocs, 2,458,296 frees, 367,620,011 bytes allocated ==9265== ==9265== LEAK SUMMARY: ==9265== definitely lost: 0 bytes in 0 blocks ==9265== indirectly lost: 0 bytes in 0 blocks ==9265== possibly lost: 960 bytes in 3 blocks ==9265== still reachable: 6,306,724 bytes in 48,039 blocks ==9265== of which reachable via heuristic: ==9265== length64 : 6,000 bytes in 99 blocks ==9265== newarray : 6,392 bytes in 54 blocks ==9265== suppressed: 641,728 bytes in 9,376 blocks ==9265== Reachable blocks (those to which a pointer was found) are not shown. ==9265== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9265== ==9265== For counts of detected and suppressed errors, rerun with: -v ==9265== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9399== Memcheck, a memory error detector ==9399== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9399== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9399== Command: ./client-test Client::Sync::eds_contact::testUpdate ==9399== Parent PID: 9265 ==9399== ==9464== Memcheck, a memory error detector ==9464== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9464== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9464== Command: ./client-test Client::Sync::eds_contact::testUpdate ==9464== Parent PID: 9265 ==9464== ==9469== Memcheck, a memory error detector ==9469== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9469== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9469== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==9469== Parent PID: 152 ==9469== ==9469== ==9469== HEAP SUMMARY: ==9469== in use at exit: 7,045,277 bytes in 58,015 blocks ==9469== total heap usage: 2,520,705 allocs, 2,462,634 frees, 367,943,798 bytes allocated ==9469== ==9469== LEAK SUMMARY: ==9469== definitely lost: 0 bytes in 0 blocks ==9469== indirectly lost: 0 bytes in 0 blocks ==9469== possibly lost: 960 bytes in 3 blocks ==9469== still reachable: 6,302,018 bytes in 47,982 blocks ==9469== of which reachable via heuristic: ==9469== length64 : 6,000 bytes in 99 blocks ==9469== newarray : 6,392 bytes in 54 blocks ==9469== suppressed: 634,443 bytes in 9,234 blocks ==9469== Reachable blocks (those to which a pointer was found) are not shown. ==9469== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9469== ==9469== For counts of detected and suppressed errors, rerun with: -v ==9469== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9603== Memcheck, a memory error detector ==9603== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9603== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9603== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==9603== Parent PID: 9469 ==9603== ==966== Memcheck, a memory error detector ==966== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==966== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==966== Command: ./client-test Client::Sync::eds_event::testSlowRestart ==966== Parent PID: 152 ==966== ==966== ==966== HEAP SUMMARY: ==966== in use at exit: 6,999,037 bytes in 57,847 blocks ==966== total heap usage: 1,874,941 allocs, 1,817,040 frees, 272,679,096 bytes allocated ==966== ==966== LEAK SUMMARY: ==966== definitely lost: 0 bytes in 0 blocks ==966== indirectly lost: 0 bytes in 0 blocks ==966== possibly lost: 960 bytes in 3 blocks ==966== still reachable: 6,232,706 bytes in 48,032 blocks ==966== of which reachable via heuristic: ==966== length64 : 6,024 bytes in 99 blocks ==966== newarray : 6,408 bytes in 55 blocks ==966== suppressed: 677,363 bytes in 9,141 blocks ==966== Reachable blocks (those to which a pointer was found) are not shown. ==966== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==966== ==966== For counts of detected and suppressed errors, rerun with: -v ==966== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9667== Memcheck, a memory error detector ==9667== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9667== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9667== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==9667== Parent PID: 9469 ==9667== ==9672== Memcheck, a memory error detector ==9672== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9672== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9672== Command: ./client-test Client::Sync::eds_contact::testMerge ==9672== Parent PID: 152 ==9672== ==9672== ==9672== HEAP SUMMARY: ==9672== in use at exit: 7,055,961 bytes in 58,209 blocks ==9672== total heap usage: 3,294,586 allocs, 3,236,319 frees, 478,816,137 bytes allocated ==9672== ==9672== LEAK SUMMARY: ==9672== definitely lost: 0 bytes in 0 blocks ==9672== indirectly lost: 0 bytes in 0 blocks ==9672== possibly lost: 960 bytes in 3 blocks ==9672== still reachable: 6,304,106 bytes in 47,993 blocks ==9672== of which reachable via heuristic: ==9672== length64 : 6,000 bytes in 99 blocks ==9672== newarray : 6,392 bytes in 54 blocks ==9672== suppressed: 643,039 bytes in 9,417 blocks ==9672== Reachable blocks (those to which a pointer was found) are not shown. ==9672== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9672== ==9672== For counts of detected and suppressed errors, rerun with: -v ==9672== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9806== Memcheck, a memory error detector ==9806== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9806== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9806== Command: ./client-test Client::Sync::eds_contact::testMerge ==9806== Parent PID: 9672 ==9806== ==9901== Memcheck, a memory error detector ==9901== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9901== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9901== Command: ./client-test Client::Sync::eds_contact::testMerge ==9901== Parent PID: 9672 ==9901== ==9935== Memcheck, a memory error detector ==9935== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9935== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9935== Command: ./client-test Client::Sync::eds_contact::testMerge ==9935== Parent PID: 9672 ==9935== ==9941== Memcheck, a memory error detector ==9941== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9941== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9941== Command: ./client-test Client::Sync::eds_contact::testTwinning ==9941== Parent PID: 152 ==9941== ==9941== ==9941== HEAP SUMMARY: ==9941== in use at exit: 7,052,896 bytes in 58,138 blocks ==9941== total heap usage: 2,622,649 allocs, 2,564,456 frees, 364,416,282 bytes allocated ==9941== ==9941== LEAK SUMMARY: ==9941== definitely lost: 0 bytes in 0 blocks ==9941== indirectly lost: 0 bytes in 0 blocks ==9941== possibly lost: 960 bytes in 3 blocks ==9941== still reachable: 6,303,685 bytes in 47,997 blocks ==9941== of which reachable via heuristic: ==9941== length64 : 6,000 bytes in 99 blocks ==9941== newarray : 6,392 bytes in 54 blocks ==9941== suppressed: 640,395 bytes in 9,342 blocks ==9941== Reachable blocks (those to which a pointer was found) are not shown. ==9941== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9941== ==9941== For counts of detected and suppressed errors, rerun with: -v ==9941== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) valgrindcheck: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact: final result 0 wrappercheck-114 line 100: RET=0 wrappercheck-114 line 101: set -e wrappercheck-114 line 107: set +x *** killing and waiting for /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-114 line 108: kill -INT -125 wrappercheck-114 line 108: kill -TERM -125 wrappercheck-114 line 108: kill -TERM 125 wrappercheck-114 line 110: KILL_PID=23455 wrappercheck-114 line 115: set +e wrappercheck-114 line 116: wait 125 wrappercheck-114 line 117: SUBRET=143 wrappercheck-114 line 118: case $SUBRET in wrappercheck-114 line 118: SUBRET=0 wrappercheck-114 line 120: SUBRET=0 wrappercheck-114 line 121: '[' 23455 ']' wrappercheck-114 line 109: perl -e 'sleep(60); kill(9, -125);' wwrappercheck-114 line 122: LC_ALL=C wwrappercheck-114 line 122: kill -KILL 23455 wrappercheck-114 line 122: msg= wrappercheck-114 line 123: echo '' wrappercheck-114 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23455 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-114 line 127: echo '' wrappercheck-114 line 129: wait 23455 wrappercheck-114 line 131: set -e wrappercheck-114 line 132: '[' 0 = 0 ']' wrappercheck-114 line 133: RET=0 wrappercheck-114 line 136: exit 0 wrappercheck-107 line 100: RET=0 wrappercheck-107 line 101: set -e wrappercheck-107 line 107: set +x *** killing and waiting for /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-107 line 108: kill -INT -111 wrappercheck-107 line 108: kill -TERM -111 wrappercheck-107 line 108: kill -TERM 111 wrappercheck-107 line 110: KILL_PID=23461 wrappercheck-107 line 115: set +e wrappercheck-107 line 116: wait 111 wrappercheck-107 line 109: perl -e 'sleep(60); kill(9, -111);' wrappercheck-107 line 117: SUBRET=143 wrappercheck-107 line 118: case $SUBRET in wrappercheck-107 line 118: SUBRET=0 wrappercheck-107 line 120: SUBRET=0 wrappercheck-107 line 121: '[' 23461 ']' wwrappercheck-107 line 122: LC_ALL=C wwrappercheck-107 line 122: kill -KILL 23461 wrappercheck-107 line 122: msg= wrappercheck-107 line 123: echo '' wrappercheck-107 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23461 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-107 line 127: echo '' wrappercheck-107 line 129: wait 23461 wrappercheck-107 line 131: set -e wrappercheck-107 line 132: '[' 0 = 0 ']' wrappercheck-107 line 133: RET=0 wrappercheck-107 line 136: exit 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=23466 wrappercheck-102 line 115: set +e wrappercheck-102 line 116: wait 104 wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 23466 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 23466 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: echo '' wrappercheck-102 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23466 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 23466 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=23471 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 23471 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 23471 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: echo '' wrappercheck-82 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23471 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 23471 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=23476 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: '[' 23476 ']' wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 23476 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: grep -q 'No such process' wrappercheck-25 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23476 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 23476 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=23481 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: '[' 23481 ']' wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 23481 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: grep -q 'No such process' wrappercheck-19 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 23481 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 23481 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.TofT15fXHX Fri Jan 5 21:03:34 2018 UTC (+ 15676.0s / 16656.7s) === cleaning up ===