runtests.py-17084 Fri Jan 5 15:56:19 2018 UTC (+ 1.1s / 1633.0s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/edsdav/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17084 Fri Jan 5 15:56:20 2018 UTC (+ 0.5s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/.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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/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/edsdav/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsdav/data runtests.py-17084 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) === starting edsdav === runtests.py-17084 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/27-edsdav, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/27-edsdav runtests.py-17084 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/edsdav (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edsdav) runtests.py-17084 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/edsdav; 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/edsdav' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edsdav/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edsdav/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edsdav/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsdav -- env CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_NUM_ITEMS=10 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/edsdav -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 edsdav ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsdav'] === Fri Jan 5 16:36:29 2018 UTC (+ 2408.6s / 2408.6s) property changed: status = acquired Fri Jan 5 16:36:29 2018 UTC (+ 0.0s / 2408.6s) using jobserver Fri Jan 5 16:36:29 2018 UTC (+ 0.0s / 2408.6s) === allocating 1 job slot(s) === Fri Jan 5 17:03:36 2018 UTC (+ 1627.2s / 4035.9s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-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 edsdav ./syncevolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.6sRDL9MRy9/keyring/control: No such file or directory + 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: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=19 wrappercheck-15 line 73: PIDS+=19 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 70: set -x wrappercheck-15 line 70: exec wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 19 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edsdav ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-22 line 16: PIDS= wrappercheck-22 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-22 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-22 line 21: DAEMON_LOG= wrappercheck-22 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-22 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-22 line 25: declare -a BACKGROUND wrappercheck-22 line 26: declare -a ENV wrappercheck-22 line 28: '[' 26 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 31: shift wrappercheck-22 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 24 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 43: shift wrappercheck-22 line 44: DAEMON_SLEEP=5 wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 22 -gt 1 ']' wrappercheck-22 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 35: shift wrappercheck-22 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 20 -gt 1 ']' wrappercheck-22 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 50: break wrappercheck-22 line 56: '[' 20 -gt 1 ']' wrappercheck-22 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-22 line 58: shift wrappercheck-22 line 56: '[' 19 -gt 1 ']' wrappercheck-22 line 56: '[' -- '!=' -- ']' wrappercheck-22 line 60: shift wrappercheck-22 line 62: '[' evolution-source-registry.log ']' wrappercheck-22 line 62: '[' '' ']' wrappercheck-22 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-22 line 72: BACKGROUND_PID=25 wrappercheck-22 line 73: PIDS+=25 wrappercheck-22 line 70: set -x wrappercheck-22 line 75: '[' evolution-source-registry.log ']' wrappercheck-22 line 75: '[' '' ']' wrappercheck-22 line 70: exec wrappercheck-22 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-22 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-22 line 93: kill -0 25 wrappercheck-22 line 94: set +e wrappercheck-22 line 95: '[' 5 ']' wrappercheck-22 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-22 line 97: sleep 5 wrappercheck-22 line 99: set -x wrappercheck-22 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 edsdav ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-80 line 16: PIDS= wrappercheck-80 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-80 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-80 line 21: DAEMON_LOG= wrappercheck-80 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-80 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-80 line 25: declare -a BACKGROUND wrappercheck-80 line 26: declare -a ENV wrappercheck-80 line 28: '[' 17 -gt 1 ']' wrappercheck-80 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 31: shift wrappercheck-80 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 15 -gt 1 ']' wrappercheck-80 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 35: shift wrappercheck-80 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 13 -gt 1 ']' wrappercheck-80 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 50: break wrappercheck-80 line 56: '[' 13 -gt 1 ']' wrappercheck-80 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 12 -gt 1 ']' wrappercheck-80 line 56: '[' --keep-running '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 11 -gt 1 ']' wrappercheck-80 line 56: '[' -- '!=' -- ']' wrappercheck-80 line 60: shift wrappercheck-80 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 62: '[' '' ']' wrappercheck-80 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-80 line 72: BACKGROUND_PID=82 wrappercheck-80 line 73: PIDS+=82 wrappercheck-80 line 70: set -x wrappercheck-80 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 70: exec wrappercheck-80 line 75: '[' '' ']' wrappercheck-80 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-80 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-80 line 93: kill -0 82 wrappercheck-80 line 94: set +e wrappercheck-80 line 95: '[' '' ']' wrappercheck-80 line 99: set -x wrappercheck-80 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edsdav ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-100 line 16: PIDS= wrappercheck-100 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-100 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-100 line 21: DAEMON_LOG= wrappercheck-100 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-100 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-100 line 25: declare -a BACKGROUND wrappercheck-100 line 26: declare -a ENV wrappercheck-100 line 28: '[' 9 -gt 1 ']' wrappercheck-100 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 31: shift wrappercheck-100 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-100 line 53: shift wrappercheck-100 line 28: '[' 7 -gt 1 ']' wrappercheck-100 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 50: break wrappercheck-100 line 56: '[' 7 -gt 1 ']' wrappercheck-100 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 6 -gt 1 ']' wrappercheck-100 line 56: '[' --keep-running '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 5 -gt 1 ']' wrappercheck-100 line 56: '[' -- '!=' -- ']' wrappercheck-100 line 60: shift wrappercheck-100 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 62: '[' '' ']' wrappercheck-100 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-100 line 72: BACKGROUND_PID=102 wrappercheck-100 line 73: PIDS+=102 wrappercheck-100 line 70: set -x wrappercheck-100 line 70: exec wrappercheck-100 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 75: '[' '' ']' wrappercheck-100 line 84: '[' '' ']' wrappercheck-100 line 93: kill -0 102 wrappercheck-100 line 94: set +e wrappercheck-100 line 95: '[' '' ']' wrappercheck-100 line 99: set -x wrappercheck-100 line 99: env /home/nightly/testing/setup-syncevolution.sh edsdav ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/edsdav/.sync4j/evolution/edsdav_[12]' '/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/edsdav_[12]' '/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-[12]/peers/edsdav_[12]' '/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-[12]' + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=edsdav_1@client-test-edsdav-1 ++ credentials edsdav_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsdav_1 --sync-property syncURL=http://127.0.0.1:9904/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsdav --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsdav_1 --sync-property syncURL=http://127.0.0.1:9904/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 edsdav_1@client-test-edsdav-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/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/addressbook /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/calendar /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/todo /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/memo /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-1/peers/edsdav_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 edsdav_1@client-test-edsdav-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 edsdav_1@client-test-edsdav-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 edsdav_1@client-test-edsdav-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 edsdav_1@client-test-edsdav-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for client in 1 2 + grep -q -e '[+ ]1.[0-9]' + ./syncevolution --version + config=edsdav_2@client-test-edsdav-2 ++ credentials edsdav_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsdav_2 --sync-property syncURL=http://127.0.0.1:9904/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsdav --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsdav_2 --sync-property syncURL=http://127.0.0.1:9904/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 edsdav_2@client-test-edsdav-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/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/addressbook /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/calendar /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/todo /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/memo /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-edsdav-2/peers/edsdav_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 edsdav_2@client-test-edsdav-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 edsdav_2@client-test-edsdav-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 edsdav_2@client-test-edsdav-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 edsdav_2@client-test-edsdav-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + context=client-test-davserver + rm -rf /data/runtests/work/testing-amd64/home/edsdav/config/syncevolution/client-test-davserver + ./syncevolution --configure --daemon=no --template SyncEvolution_Client useProxy=0 databaseUser=tester1 databasePassword=testing1 addressbook/backend=CardDAV addressbook/database=http://localhost:9009/davical/caldav.php/tester1/addresses/ calendar/backend=CalDAV calendar/database=http://localhost:9009/davical/caldav.php/tester1/calendar/ todo/backend=CalDAVTodo todo/database=http://localhost:9009/davical/caldav.php/tester1/calendar/ client-edsdav-1@client-test-davserver addressbook calendar todo [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] todo: configuring datastore with sync mode 'two-way' + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client logdir=/data/runtests/work/testing-amd64/tests/edsdav/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsdav_1 client-edsdav-1@client-test-davserver + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client logdir=/data/runtests/work/testing-amd64/tests/edsdav/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsdav_2 client-edsdav-2@client-test-davserver [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] memo: checking usability... [INFO] memo: configuring datastore with sync mode 'two-way' [INFO] todo: configuring datastore with sync mode 'two-way' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/9, but it's already registered ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/10, but it's already registered ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/11, but it's already registered + 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 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ 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 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-100 line 100: RET=0 wrappercheck-100 line 101: set -e wrappercheck-100 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 108: kill -INT -102 wrappercheck-100 line 108: kill -TERM -102 wrappercheck-100 line 108: kill -TERM 102 wrappercheck-100 line 110: KILL_PID=361 wrappercheck-100 line 109: perl -e 'sleep(60); kill(9, -102);' wrappercheck-100 line 115: set +e wrappercheck-100 line 116: wait 102 wrappercheck-100 line 117: SUBRET=143 wrappercheck-100 line 118: case $SUBRET in wrappercheck-100 line 118: SUBRET=0 wrappercheck-100 line 120: SUBRET=0 wrappercheck-100 line 121: '[' 361 ']' wwrappercheck-100 line 122: LC_ALL=C wwrappercheck-100 line 122: kill -KILL 361 wrappercheck-100 line 122: msg= wrappercheck-100 line 123: grep -q 'No such process' wrappercheck-100 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 361 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-100 line 127: echo '' wrappercheck-100 line 129: wait 361 wrappercheck-100 line 131: set -e wrappercheck-100 line 132: '[' 0 = 0 ']' wrappercheck-100 line 133: RET=0 wrappercheck-100 line 136: exit 0 wrappercheck-80 line 100: RET=0 wrappercheck-80 line 101: set -e wrappercheck-80 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 108: kill -INT -82 wrappercheck-80 line 108: kill -TERM -82 wrappercheck-80 line 108: kill -TERM 82 wrappercheck-80 line 110: KILL_PID=366 wrappercheck-80 line 109: perl -e 'sleep(60); kill(9, -82);' wrappercheck-80 line 115: set +e wrappercheck-80 line 116: wait 82 wrappercheck-80 line 117: SUBRET=143 wrappercheck-80 line 118: case $SUBRET in wrappercheck-80 line 118: SUBRET=0 wrappercheck-80 line 120: SUBRET=0 wrappercheck-80 line 121: '[' 366 ']' wwrappercheck-80 line 122: LC_ALL=C wwrappercheck-80 line 122: kill -KILL 366 wrappercheck-80 line 122: msg= wrappercheck-80 line 123: grep -q 'No such process' wrappercheck-80 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 366 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-80 line 127: echo '' wrappercheck-80 line 129: wait 366 wrappercheck-80 line 131: set -e wrappercheck-80 line 132: '[' 0 = 0 ']' wrappercheck-80 line 133: RET=0 wrappercheck-80 line 136: exit 0 wrappercheck-22 line 100: RET=0 wrappercheck-22 line 101: set -e wrappercheck-22 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-22 line 108: kill -INT -25 wrappercheck-22 line 108: kill -TERM -25 wrappercheck-22 line 108: kill -TERM 25 wrappercheck-22 line 110: KILL_PID=371 wrappercheck-22 line 115: set +e wrappercheck-22 line 109: perl -e 'sleep(60); kill(9, -25);' wrappercheck-22 line 116: wait 25 wrappercheck-22 line 117: SUBRET=143 wrappercheck-22 line 118: case $SUBRET in wrappercheck-22 line 118: SUBRET=0 wrappercheck-22 line 120: SUBRET=0 wrappercheck-22 line 121: '[' 371 ']' wwrappercheck-22 line 122: LC_ALL=C wwrappercheck-22 line 122: kill -KILL 371 wrappercheck-22 line 122: msg= wrappercheck-22 line 123: echo '' wrappercheck-22 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 371 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-22 line 127: echo '' wrappercheck-22 line 129: wait 371 wrappercheck-22 line 131: set -e wrappercheck-22 line 132: '[' 0 = 0 ']' wrappercheck-22 line 133: RET=0 wrappercheck-22 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 -19 wrappercheck-15 line 108: kill -TERM -19 wrappercheck-15 line 108: kill -TERM 19 wrappercheck-15 line 110: KILL_PID=376 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -19);' wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 19 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: '[' 376 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 376 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: 376 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 376 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.6sRDL9MRy9 Fri Jan 5 17:03:45 2018 UTC (+ 9.5s / 4045.4s) === cleaning up === runtests.py-17084 Fri Jan 5 17:03:45 2018 UTC (+ 4045.4s / 5678.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edsdav; 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/edsdav' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edsdav/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edsdav/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edsdav/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsdav -- 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=edsdav CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_NUM_ITEMS=10 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/edsdav -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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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 17:03:45 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsdav'] === Fri Jan 5 17:08:10 2018 UTC (+ 265.0s / 265.0s) property changed: status = acquired Fri Jan 5 17:08:10 2018 UTC (+ 0.0s / 265.0s) using jobserver Fri Jan 5 17:08:10 2018 UTC (+ 0.0s / 265.0s) === allocating 1 job slot(s) === Fri Jan 5 17:08:17 2018 UTC (+ 7.1s / 272.1s) === 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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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.ATRtRFf4CJ/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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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-26 line 16: PIDS= wrappercheck-26 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-26 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-26 line 21: DAEMON_LOG= wrappercheck-26 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-26 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-26 line 25: declare -a BACKGROUND wrappercheck-26 line 26: declare -a ENV wrappercheck-26 line 28: '[' 49 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 31: shift wrappercheck-26 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 47 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 43: shift wrappercheck-26 line 44: DAEMON_SLEEP=5 wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 45 -gt 1 ']' wrappercheck-26 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 35: shift wrappercheck-26 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 43 -gt 1 ']' wrappercheck-26 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 50: break wrappercheck-26 line 56: '[' 43 -gt 1 ']' wrappercheck-26 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-26 line 58: shift wrappercheck-26 line 56: '[' 42 -gt 1 ']' wrappercheck-26 line 56: '[' -- '!=' -- ']' wrappercheck-26 line 60: shift wrappercheck-26 line 62: '[' evolution-source-registry.log ']' wrappercheck-26 line 62: '[' '' ']' wrappercheck-26 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-26 line 72: BACKGROUND_PID=30 wrappercheck-26 line 73: PIDS+=30 wrappercheck-26 line 70: set -x wrappercheck-26 line 75: '[' evolution-source-registry.log ']' wrappercheck-26 line 70: exec wrappercheck-26 line 75: '[' '' ']' wrappercheck-26 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-26 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-26 line 93: kill -0 30 wrappercheck-26 line 94: set +e wrappercheck-26 line 95: '[' 5 ']' wrappercheck-26 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-26 line 97: sleep 5 wrappercheck-26 line 99: set -x wrappercheck-26 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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 70: set -x wrappercheck-102 line 75: '[' '' ']' 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 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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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 93: kill -0 111 wrappercheck-107 line 94: set +e wrappercheck-107 line 95: '[' '' ']' wrappercheck-107 line 70: set -x wrappercheck-107 line 99: set -x wrappercheck-107 line 70: exec 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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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-113 line 16: PIDS= wrappercheck-113 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-113 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-113 line 21: DAEMON_LOG= wrappercheck-113 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-113 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-113 line 25: declare -a BACKGROUND wrappercheck-113 line 26: declare -a ENV wrappercheck-113 line 28: '[' 13 -gt 1 ']' wrappercheck-113 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-113 line 29: case "$1" in wrappercheck-113 line 31: shift wrappercheck-113 line 32: DAEMON_LOG=syncevohttp.log wrappercheck-113 line 53: shift wrappercheck-113 line 28: '[' 11 -gt 1 ']' wrappercheck-113 line 28: '[' --wait-for-daemon-output '!=' -- ']' wrappercheck-113 line 29: case "$1" in wrappercheck-113 line 39: shift wrappercheck-113 line 40: WAIT_FOR_DAEMON_OUTPUT=syncevo-http:.listening.on.port.9904 wrappercheck-113 line 53: shift wrappercheck-113 line 28: '[' 9 -gt 1 ']' wrappercheck-113 line 28: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-113 line 29: case "$1" in wrappercheck-113 line 50: break wrappercheck-113 line 56: '[' 9 -gt 1 ']' wrappercheck-113 line 56: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-113 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-113 line 58: shift wrappercheck-113 line 56: '[' 8 -gt 1 ']' wrappercheck-113 line 56: '[' --debug '!=' -- ']' wrappercheck-113 line 57: BACKGROUND[${#BACKGROUND[*]}]=--debug wrappercheck-113 line 58: shift wrappercheck-113 line 56: '[' 7 -gt 1 ']' wrappercheck-113 line 56: '[' http://127.0.0.1:9904/syncevolution '!=' -- ']' wrappercheck-113 line 57: BACKGROUND[${#BACKGROUND[*]}]=http://127.0.0.1:9904/syncevolution wrappercheck-113 line 58: shift wrappercheck-113 line 56: '[' 6 -gt 1 ']' wrappercheck-113 line 56: '[' -- '!=' -- ']' wrappercheck-113 line 60: shift wrappercheck-113 line 62: '[' syncevohttp.log ']' wrappercheck-113 line 62: '[' syncevo-http:.listening.on.port.9904 ']' wwrappercheck-113 line 63: grep -e syncevo-http:.listening.on.port.9904 syncevohttp.log wwrappercheck-113 line 63: wc -l grep: syncevohttp.log: No such file or directory wrappercheck-113 line 63: daemonmatches=0 wrappercheck-113 line 66: set +x *** starting /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server as background daemon, output to syncevohttp.log wrappercheck-113 line 72: BACKGROUND_PID=125 wrappercheck-113 line 73: PIDS+=125 wrappercheck-113 line 70: set -x wrappercheck-113 line 70: exec wrappercheck-113 line 75: '[' syncevohttp.log ']' wrappercheck-113 line 75: '[' syncevo-http:.listening.on.port.9904 ']' wrappercheck-113 line 76: set +x *** waiting for daemon to write 'syncevo-http:.listening.on.port.9904' into syncevohttp.log wrappercheck-113 line 84: '[' '' ']' wrappercheck-113 line 93: kill -0 125 wrappercheck-113 line 94: set +e wrappercheck-113 line 95: '[' '' ']' wrappercheck-113 line 99: set -x wrappercheck-113 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/edsdav/valgrind.p144.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 *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event::testAddUpdate equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3160 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event::testAddUpdate (1677): failed with return code 1Client::Sync::eds_event::testManyItems *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event::testManyItems equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3117 - ClientTest.cpp:4577 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event::testManyItems (1723): failed with return code 1Client::Sync::eds_event::testManyDeletes *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event::testManyDeletes equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3117 - ClientTest.cpp:4620 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event::testManyDeletes (1754): failed with return code 1Client::Sync::eds_event::testSlowSyncSemantic *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event::testSlowSyncSemantic equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3117 - ClientTest.cpp:3132 - ClientTest.cpp:4685 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event::testSlowSyncSemantic (1785): failed with return code 1Client::Sync::eds_event::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event::testDeleteBothSides okay Client::Sync::eds_event::testAddBothSidescouldn'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::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 *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_contact::testOneWayFromRemote equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:4130 - ClientTest.cpp:4156 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_contact::testOneWayFromRemote (8121): failed with return code 1Client::Sync::eds_contact::testOneWayFromLocal *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_contact::testOneWayFromLocal equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3117 - ClientTest.cpp:4170 - ClientTest.cpp:4334 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_contact::testOneWayFromLocal (8264): failed with return code 1Client::Sync::eds_event_eds_contact::testDeleteAllRefresh *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event_eds_contact::testDeleteAllRefresh equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:3176 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event_eds_contact::testDeleteAllRefresh (8292): failed with return code 1Client::Sync::eds_event_eds_contact::testTwoWaySync *** failed *** ClientTest.cpp:8283:Assertion Test name: Client::Sync::eds_event_eds_contact::testTwoWaySync equality assertion failed - Expected: no error (remote, status 0) - Actual : external transport failure (local, status 20043) - ClientTest.cpp:8283 - ClientTest.cpp:6460 - ClientTest.cpp:4314 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event_eds_contact::testTwoWaySync (8361): failed with return code 1Client::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 FAILEDvalgrindcheck (144): './client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact' (148): returned 1 ==1001== Memcheck, a memory error detector ==1001== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1001== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1001== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocalRestart ==1001== Parent PID: 148 ==1001== ==1001== ==1001== HEAP SUMMARY: ==1001== in use at exit: 6,987,927 bytes in 57,667 blocks ==1001== total heap usage: 1,876,202 allocs, 1,818,481 frees, 272,405,260 bytes allocated ==1001== ==1001== LEAK SUMMARY: ==1001== definitely lost: 0 bytes in 0 blocks ==1001== indirectly lost: 0 bytes in 0 blocks ==1001== possibly lost: 960 bytes in 3 blocks ==1001== still reachable: 6,227,592 bytes in 47,977 blocks ==1001== of which reachable via heuristic: ==1001== length64 : 6,024 bytes in 99 blocks ==1001== newarray : 6,408 bytes in 55 blocks ==1001== suppressed: 671,199 bytes in 9,014 blocks ==1001== Reachable blocks (those to which a pointer was found) are not shown. ==1001== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1001== ==1001== For counts of detected and suppressed errors, rerun with: -v ==1001== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10185== Memcheck, a memory error detector ==10185== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10185== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10185== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyRestarts ==10185== Parent PID: 148 ==10185== ==10185== ==10185== HEAP SUMMARY: ==10185== in use at exit: 7,092,057 bytes in 58,714 blocks ==10185== total heap usage: 2,272,632 allocs, 2,213,866 frees, 272,584,853 bytes allocated ==10185== ==10185== LEAK SUMMARY: ==10185== definitely lost: 0 bytes in 0 blocks ==10185== indirectly lost: 0 bytes in 0 blocks ==10185== possibly lost: 1,392 bytes in 4 blocks ==10185== still reachable: 6,234,905 bytes in 48,069 blocks ==10185== of which reachable via heuristic: ==10185== length64 : 6,728 bytes in 107 blocks ==10185== newarray : 6,456 bytes in 58 blocks ==10185== suppressed: 741,808 bytes in 9,785 blocks ==10185== Reachable blocks (those to which a pointer was found) are not shown. ==10185== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10185== ==10185== For counts of detected and suppressed errors, rerun with: -v ==10185== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10453== Memcheck, a memory error detector ==10453== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10453== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10453== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==10453== Parent PID: 148 ==10453== ==10453== ==10453== HEAP SUMMARY: ==10453== in use at exit: 7,090,376 bytes in 58,692 blocks ==10453== total heap usage: 2,203,435 allocs, 2,144,689 frees, 287,075,135 bytes allocated ==10453== ==10453== LEAK SUMMARY: ==10453== definitely lost: 0 bytes in 0 blocks ==10453== indirectly lost: 0 bytes in 0 blocks ==10453== possibly lost: 1,392 bytes in 4 blocks ==10453== still reachable: 6,235,025 bytes in 48,071 blocks ==10453== of which reachable via heuristic: ==10453== length64 : 6,728 bytes in 107 blocks ==10453== newarray : 6,456 bytes in 58 blocks ==10453== suppressed: 740,007 bytes in 9,761 blocks ==10453== Reachable blocks (those to which a pointer was found) are not shown. ==10453== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10453== ==10453== For counts of detected and suppressed errors, rerun with: -v ==10453== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10613== Memcheck, a memory error detector ==10613== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10613== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10613== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==10613== Parent PID: 10453 ==10613== ==10631== Memcheck, a memory error detector ==10631== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10631== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10631== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==10631== Parent PID: 10453 ==10631== ==10647== Memcheck, a memory error detector ==10647== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10647== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10647== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==10647== Parent PID: 10453 ==10647== ==10665== Memcheck, a memory error detector ==10665== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10665== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10665== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==10665== Parent PID: 10453 ==10665== ==10671== Memcheck, a memory error detector ==10671== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10671== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10671== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==10671== Parent PID: 148 ==10671== ==10671== ==10671== HEAP SUMMARY: ==10671== in use at exit: 7,089,517 bytes in 58,713 blocks ==10671== total heap usage: 2,921,079 allocs, 2,862,310 frees, 391,956,576 bytes allocated ==10671== ==10671== LEAK SUMMARY: ==10671== definitely lost: 0 bytes in 0 blocks ==10671== indirectly lost: 0 bytes in 0 blocks ==10671== possibly lost: 1,392 bytes in 4 blocks ==10671== still reachable: 6,231,386 bytes in 48,011 blocks ==10671== of which reachable via heuristic: ==10671== length64 : 6,728 bytes in 107 blocks ==10671== newarray : 6,456 bytes in 58 blocks ==10671== suppressed: 742,619 bytes in 9,840 blocks ==10671== Reachable blocks (those to which a pointer was found) are not shown. ==10671== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10671== ==10671== For counts of detected and suppressed errors, rerun with: -v ==10671== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10827== Memcheck, a memory error detector ==10827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10827== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==10827== Parent PID: 10671 ==10827== ==10845== Memcheck, a memory error detector ==10845== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10845== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10845== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==10845== Parent PID: 10671 ==10845== ==10906== Memcheck, a memory error detector ==10906== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10906== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10906== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==10906== Parent PID: 148 ==10906== ==10906== ==10906== HEAP SUMMARY: ==10906== in use at exit: 7,084,978 bytes in 58,670 blocks ==10906== total heap usage: 2,452,440 allocs, 2,393,715 frees, 332,213,050 bytes allocated ==10906== ==10906== LEAK SUMMARY: ==10906== definitely lost: 0 bytes in 0 blocks ==10906== indirectly lost: 0 bytes in 0 blocks ==10906== possibly lost: 1,392 bytes in 4 blocks ==10906== still reachable: 6,229,322 bytes in 48,007 blocks ==10906== of which reachable via heuristic: ==10906== length64 : 6,728 bytes in 107 blocks ==10906== newarray : 6,456 bytes in 58 blocks ==10906== suppressed: 740,144 bytes in 9,801 blocks ==10906== Reachable blocks (those to which a pointer was found) are not shown. ==10906== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10906== ==10906== For counts of detected and suppressed errors, rerun with: -v ==10906== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11080== Memcheck, a memory error detector ==11080== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11080== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11080== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==11080== Parent PID: 10906 ==11080== ==11098== Memcheck, a memory error detector ==11098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11098== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11098== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==11098== Parent PID: 10906 ==11098== ==11104== Memcheck, a memory error detector ==11104== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11104== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11104== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11104== Parent PID: 148 ==11104== ==11104== ==11104== HEAP SUMMARY: ==11104== in use at exit: 7,084,396 bytes in 58,578 blocks ==11104== total heap usage: 2,877,815 allocs, 2,819,182 frees, 385,915,338 bytes allocated ==11104== ==11104== LEAK SUMMARY: ==11104== definitely lost: 0 bytes in 0 blocks ==11104== indirectly lost: 0 bytes in 0 blocks ==11104== possibly lost: 1,392 bytes in 4 blocks ==11104== still reachable: 6,230,046 bytes in 47,992 blocks ==11104== of which reachable via heuristic: ==11104== length64 : 6,728 bytes in 107 blocks ==11104== newarray : 6,456 bytes in 58 blocks ==11104== suppressed: 739,006 bytes in 9,726 blocks ==11104== Reachable blocks (those to which a pointer was found) are not shown. ==11104== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11104== ==11104== For counts of detected and suppressed errors, rerun with: -v ==11104== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1112== Memcheck, a memory error detector ==1112== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1112== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1112== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteRestart ==1112== Parent PID: 148 ==1112== ==1112== ==1112== HEAP SUMMARY: ==1112== in use at exit: 6,997,268 bytes in 57,823 blocks ==1112== total heap usage: 1,078,829 allocs, 1,020,954 frees, 155,961,037 bytes allocated ==1112== ==1112== LEAK SUMMARY: ==1112== definitely lost: 0 bytes in 0 blocks ==1112== indirectly lost: 0 bytes in 0 blocks ==1112== possibly lost: 960 bytes in 3 blocks ==1112== still reachable: 6,230,096 bytes in 47,986 blocks ==1112== of which reachable via heuristic: ==1112== length64 : 6,024 bytes in 99 blocks ==1112== newarray : 6,408 bytes in 55 blocks ==1112== suppressed: 678,036 bytes in 9,161 blocks ==1112== Reachable blocks (those to which a pointer was found) are not shown. ==1112== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1112== ==1112== For counts of detected and suppressed errors, rerun with: -v ==1112== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11254== Memcheck, a memory error detector ==11254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11254== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11254== Parent PID: 11104 ==11254== ==11272== Memcheck, a memory error detector ==11272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11272== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11272== Parent PID: 11104 ==11272== ==11276== Memcheck, a memory error detector ==11276== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11276== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11276== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==11276== Parent PID: 148 ==11276== ==11276== ==11276== HEAP SUMMARY: ==11276== in use at exit: 7,077,638 bytes in 58,473 blocks ==11276== total heap usage: 3,730,929 allocs, 3,672,399 frees, 479,573,514 bytes allocated ==11276== ==11276== LEAK SUMMARY: ==11276== definitely lost: 0 bytes in 0 blocks ==11276== indirectly lost: 0 bytes in 0 blocks ==11276== possibly lost: 1,392 bytes in 4 blocks ==11276== still reachable: 6,229,082 bytes in 47,996 blocks ==11276== of which reachable via heuristic: ==11276== length64 : 6,728 bytes in 107 blocks ==11276== newarray : 6,456 bytes in 58 blocks ==11276== suppressed: 733,044 bytes in 9,615 blocks ==11276== Reachable blocks (those to which a pointer was found) are not shown. ==11276== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11276== ==11276== For counts of detected and suppressed errors, rerun with: -v ==11276== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11428== Memcheck, a memory error detector ==11428== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11428== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11428== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==11428== Parent PID: 11276 ==11428== ==11446== Memcheck, a memory error detector ==11446== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11446== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11446== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==11446== Parent PID: 11276 ==11446== ==11500== Memcheck, a memory error detector ==11500== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11500== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11500== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==11500== Parent PID: 148 ==11500== ==11500== ==11500== HEAP SUMMARY: ==11500== in use at exit: 7,096,793 bytes in 58,798 blocks ==11500== total heap usage: 3,932,730 allocs, 3,873,873 frees, 546,737,353 bytes allocated ==11500== ==11500== LEAK SUMMARY: ==11500== definitely lost: 0 bytes in 0 blocks ==11500== indirectly lost: 0 bytes in 0 blocks ==11500== possibly lost: 1,392 bytes in 4 blocks ==11500== still reachable: 6,238,809 bytes in 48,139 blocks ==11500== of which reachable via heuristic: ==11500== length64 : 6,728 bytes in 107 blocks ==11500== newarray : 6,456 bytes in 58 blocks ==11500== suppressed: 742,640 bytes in 9,799 blocks ==11500== Reachable blocks (those to which a pointer was found) are not shown. ==11500== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11500== ==11500== For counts of detected and suppressed errors, rerun with: -v ==11500== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11657== Memcheck, a memory error detector ==11657== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11657== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11657== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==11657== Parent PID: 11500 ==11657== ==11675== Memcheck, a memory error detector ==11675== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11675== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11675== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==11675== Parent PID: 11500 ==11675== ==1174== Memcheck, a memory error detector ==1174== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1174== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1174== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemoteRestart ==1174== Parent PID: 148 ==1174== ==1174== ==1174== HEAP SUMMARY: ==1174== in use at exit: 6,995,441 bytes in 57,789 blocks ==1174== total heap usage: 1,869,255 allocs, 1,811,412 frees, 271,719,729 bytes allocated ==1174== ==1174== LEAK SUMMARY: ==1174== definitely lost: 0 bytes in 0 blocks ==1174== indirectly lost: 0 bytes in 0 blocks ==1174== possibly lost: 960 bytes in 3 blocks ==1174== still reachable: 6,231,343 bytes in 48,009 blocks ==1174== of which reachable via heuristic: ==1174== length64 : 6,024 bytes in 99 blocks ==1174== newarray : 6,408 bytes in 55 blocks ==1174== suppressed: 675,130 bytes in 9,106 blocks ==1174== Reachable blocks (those to which a pointer was found) are not shown. ==1174== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1174== ==1174== For counts of detected and suppressed errors, rerun with: -v ==1174== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11775== Memcheck, a memory error detector ==11775== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11775== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11775== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==11775== Parent PID: 148 ==11775== ==11775== ==11775== HEAP SUMMARY: ==11775== in use at exit: 7,080,494 bytes in 58,522 blocks ==11775== total heap usage: 3,344,569 allocs, 3,285,990 frees, 449,338,273 bytes allocated ==11775== ==11775== LEAK SUMMARY: ==11775== definitely lost: 0 bytes in 0 blocks ==11775== indirectly lost: 0 bytes in 0 blocks ==11775== possibly lost: 1,392 bytes in 4 blocks ==11775== still reachable: 6,228,586 bytes in 47,988 blocks ==11775== of which reachable via heuristic: ==11775== length64 : 6,728 bytes in 107 blocks ==11775== newarray : 6,456 bytes in 58 blocks ==11775== suppressed: 736,564 bytes in 9,674 blocks ==11775== Reachable blocks (those to which a pointer was found) are not shown. ==11775== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11775== ==11775== For counts of detected and suppressed errors, rerun with: -v ==11775== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11935== Memcheck, a memory error detector ==11935== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11935== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11935== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==11935== Parent PID: 11775 ==11935== ==11953== Memcheck, a memory error detector ==11953== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11953== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11953== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==11953== Parent PID: 11775 ==11953== ==11969== Memcheck, a memory error detector ==11969== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11969== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11969== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==11969== Parent PID: 11775 ==11969== ==11987== Memcheck, a memory error detector ==11987== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11987== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11987== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==11987== Parent PID: 11775 ==11987== ==12059== Memcheck, a memory error detector ==12059== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12059== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12059== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12059== Parent PID: 148 ==12059== ==12059== ==12059== HEAP SUMMARY: ==12059== in use at exit: 7,099,245 bytes in 58,866 blocks ==12059== total heap usage: 3,134,639 allocs, 3,075,717 frees, 405,506,577 bytes allocated ==12059== ==12059== LEAK SUMMARY: ==12059== definitely lost: 0 bytes in 0 blocks ==12059== indirectly lost: 0 bytes in 0 blocks ==12059== possibly lost: 1,392 bytes in 4 blocks ==12059== still reachable: 6,240,440 bytes in 48,165 blocks ==12059== of which reachable via heuristic: ==12059== length64 : 6,728 bytes in 107 blocks ==12059== newarray : 6,456 bytes in 58 blocks ==12059== suppressed: 743,461 bytes in 9,841 blocks ==12059== Reachable blocks (those to which a pointer was found) are not shown. ==12059== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12059== ==12059== For counts of detected and suppressed errors, rerun with: -v ==12059== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12216== Memcheck, a memory error detector ==12216== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12216== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12216== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12216== Parent PID: 12059 ==12216== ==12234== Memcheck, a memory error detector ==12234== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12234== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12234== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12234== Parent PID: 12059 ==12234== ==12250== Memcheck, a memory error detector ==12250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12250== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12250== Parent PID: 12059 ==12250== ==12268== Memcheck, a memory error detector ==12268== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12268== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12268== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12268== Parent PID: 12059 ==12268== ==12355== Memcheck, a memory error detector ==12355== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12355== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12355== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12355== Parent PID: 148 ==12355== ==12355== ==12355== HEAP SUMMARY: ==12355== in use at exit: 7,095,052 bytes in 58,770 blocks ==12355== total heap usage: 3,002,671 allocs, 2,943,845 frees, 397,960,626 bytes allocated ==12355== ==12355== LEAK SUMMARY: ==12355== definitely lost: 0 bytes in 0 blocks ==12355== indirectly lost: 0 bytes in 0 blocks ==12355== possibly lost: 1,392 bytes in 4 blocks ==12355== still reachable: 6,237,340 bytes in 48,115 blocks ==12355== of which reachable via heuristic: ==12355== length64 : 6,728 bytes in 107 blocks ==12355== newarray : 6,456 bytes in 58 blocks ==12355== suppressed: 742,368 bytes in 9,795 blocks ==12355== Reachable blocks (those to which a pointer was found) are not shown. ==12355== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12355== ==12355== For counts of detected and suppressed errors, rerun with: -v ==12355== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12513== Memcheck, a memory error detector ==12513== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12513== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12513== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12513== Parent PID: 12355 ==12513== ==12531== Memcheck, a memory error detector ==12531== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12531== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12531== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12531== Parent PID: 12355 ==12531== ==12595== Memcheck, a memory error detector ==12595== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12595== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12595== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12595== Parent PID: 12355 ==12595== ==12613== Memcheck, a memory error detector ==12613== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12613== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12613== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12613== Parent PID: 12355 ==12613== ==12619== Memcheck, a memory error detector ==12619== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12619== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12619== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12619== Parent PID: 148 ==12619== ==12619== ==12619== HEAP SUMMARY: ==12619== in use at exit: 7,087,788 bytes in 58,657 blocks ==12619== total heap usage: 3,983,188 allocs, 3,924,473 frees, 522,093,970 bytes allocated ==12619== ==12619== LEAK SUMMARY: ==12619== definitely lost: 0 bytes in 0 blocks ==12619== indirectly lost: 0 bytes in 0 blocks ==12619== possibly lost: 1,392 bytes in 4 blocks ==12619== still reachable: 6,230,810 bytes in 48,000 blocks ==12619== of which reachable via heuristic: ==12619== length64 : 6,728 bytes in 107 blocks ==12619== newarray : 6,456 bytes in 58 blocks ==12619== suppressed: 741,634 bytes in 9,797 blocks ==12619== Reachable blocks (those to which a pointer was found) are not shown. ==12619== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12619== ==12619== For counts of detected and suppressed errors, rerun with: -v ==12619== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12776== Memcheck, a memory error detector ==12776== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12776== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12776== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12776== Parent PID: 12619 ==12776== ==12794== Memcheck, a memory error detector ==12794== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12794== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12794== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12794== Parent PID: 12619 ==12794== ==1285== Memcheck, a memory error detector ==1285== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1285== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1285== Command: ./client-test Client::Sync::eds_event::testManyRestarts ==1285== Parent PID: 148 ==1285== ==1285== ==1285== HEAP SUMMARY: ==1285== in use at exit: 6,999,102 bytes in 57,852 blocks ==1285== total heap usage: 1,632,693 allocs, 1,574,789 frees, 224,349,542 bytes allocated ==1285== ==1285== LEAK SUMMARY: ==1285== definitely lost: 0 bytes in 0 blocks ==1285== indirectly lost: 0 bytes in 0 blocks ==1285== possibly lost: 960 bytes in 3 blocks ==1285== still reachable: 6,232,771 bytes in 48,032 blocks ==1285== of which reachable via heuristic: ==1285== length64 : 6,024 bytes in 99 blocks ==1285== newarray : 6,408 bytes in 55 blocks ==1285== suppressed: 677,363 bytes in 9,146 blocks ==1285== Reachable blocks (those to which a pointer was found) are not shown. ==1285== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1285== ==1285== For counts of detected and suppressed errors, rerun with: -v ==1285== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12898== Memcheck, a memory error detector ==12898== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12898== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12898== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12898== Parent PID: 12619 ==12898== ==12916== Memcheck, a memory error detector ==12916== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12916== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12916== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12916== Parent PID: 12619 ==12916== ==12948== Memcheck, a memory error detector ==12948== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12948== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12948== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12948== Parent PID: 12619 ==12948== ==12966== Memcheck, a memory error detector ==12966== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12966== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12966== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==12966== Parent PID: 12619 ==12966== ==12972== Memcheck, a memory error detector ==12972== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12972== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12972== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==12972== Parent PID: 148 ==12972== ==12972== ==12972== HEAP SUMMARY: ==12972== in use at exit: 7,081,125 bytes in 58,531 blocks ==12972== total heap usage: 3,539,235 allocs, 3,480,649 frees, 438,296,562 bytes allocated ==12972== ==12972== LEAK SUMMARY: ==12972== definitely lost: 0 bytes in 0 blocks ==12972== indirectly lost: 0 bytes in 0 blocks ==12972== possibly lost: 1,392 bytes in 4 blocks ==12972== still reachable: 6,229,369 bytes in 48,001 blocks ==12972== of which reachable via heuristic: ==12972== length64 : 6,728 bytes in 107 blocks ==12972== newarray : 6,456 bytes in 58 blocks ==12972== suppressed: 736,412 bytes in 9,670 blocks ==12972== Reachable blocks (those to which a pointer was found) are not shown. ==12972== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12972== ==12972== For counts of detected and suppressed errors, rerun with: -v ==12972== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13052== Memcheck, a memory error detector ==13052== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13052== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13052== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13052== Parent PID: 12972 ==13052== ==13080== Memcheck, a memory error detector ==13080== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13080== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13080== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13080== Parent PID: 12972 ==13080== ==13169== Memcheck, a memory error detector ==13169== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13169== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13169== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13169== Parent PID: 12972 ==13169== ==13187== Memcheck, a memory error detector ==13187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13187== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13187== Parent PID: 12972 ==13187== ==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::testItems ==13191== Parent PID: 148 ==13191== ==13191== ==13191== HEAP SUMMARY: ==13191== in use at exit: 7,093,303 bytes in 58,756 blocks ==13191== total heap usage: 2,442,686 allocs, 2,383,877 frees, 292,059,817 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,234,608 bytes in 48,063 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: 743,351 bytes in 9,833 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) ==13273== Memcheck, a memory error detector ==13273== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13273== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13273== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13273== Parent PID: 13191 ==13273== ==13301== Memcheck, a memory error detector ==13301== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13301== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13301== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13301== Parent PID: 13191 ==13301== ==13357== Memcheck, a memory error detector ==13357== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13357== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13357== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13357== Parent PID: 13191 ==13357== ==13375== Memcheck, a memory error detector ==13375== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13375== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13375== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13375== Parent PID: 13191 ==13375== ==13382== Memcheck, a memory error detector ==13382== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13382== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13382== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==13382== Parent PID: 148 ==13382== ==13382== ==13382== HEAP SUMMARY: ==13382== in use at exit: 7,086,428 bytes in 58,633 blocks ==13382== total heap usage: 2,468,632 allocs, 2,409,946 frees, 291,822,749 bytes allocated ==13382== ==13382== LEAK SUMMARY: ==13382== definitely lost: 0 bytes in 0 blocks ==13382== indirectly lost: 0 bytes in 0 blocks ==13382== possibly lost: 1,392 bytes in 4 blocks ==13382== still reachable: 6,231,749 bytes in 48,014 blocks ==13382== of which reachable via heuristic: ==13382== length64 : 6,728 bytes in 107 blocks ==13382== newarray : 6,456 bytes in 58 blocks ==13382== suppressed: 739,335 bytes in 9,759 blocks ==13382== Reachable blocks (those to which a pointer was found) are not shown. ==13382== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13382== ==13382== For counts of detected and suppressed errors, rerun with: -v ==13382== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13463== Memcheck, a memory error detector ==13463== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13463== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13463== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==13463== Parent PID: 13382 ==13463== ==13491== Memcheck, a memory error detector ==13491== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13491== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13491== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==13491== Parent PID: 13382 ==13491== ==13547== Memcheck, a memory error detector ==13547== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13547== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13547== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==13547== Parent PID: 13382 ==13547== ==13565== Memcheck, a memory error detector ==13565== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13565== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13565== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==13565== Parent PID: 13382 ==13565== ==13571== Memcheck, a memory error detector ==13571== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13571== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13571== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==13571== Parent PID: 148 ==13571== ==13571== ==13571== HEAP SUMMARY: ==13571== in use at exit: 7,076,927 bytes in 58,463 blocks ==13571== total heap usage: 2,559,344 allocs, 2,500,828 frees, 336,783,123 bytes allocated ==13571== ==13571== LEAK SUMMARY: ==13571== definitely lost: 0 bytes in 0 blocks ==13571== indirectly lost: 0 bytes in 0 blocks ==13571== possibly lost: 1,392 bytes in 4 blocks ==13571== still reachable: 6,228,922 bytes in 47,993 blocks ==13571== of which reachable via heuristic: ==13571== length64 : 6,728 bytes in 107 blocks ==13571== newarray : 6,456 bytes in 58 blocks ==13571== suppressed: 732,493 bytes in 9,608 blocks ==13571== Reachable blocks (those to which a pointer was found) are not shown. ==13571== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13571== ==13571== For counts of detected and suppressed errors, rerun with: -v ==13571== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13691== Memcheck, a memory error detector ==13691== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13691== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13691== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==13691== Parent PID: 13571 ==13691== ==13709== Memcheck, a memory error detector ==13709== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13709== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13709== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==13709== Parent PID: 13571 ==13709== ==13715== Memcheck, a memory error detector ==13715== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13715== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13715== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==13715== Parent PID: 148 ==13715== ==13715== ==13715== HEAP SUMMARY: ==13715== in use at exit: 7,091,800 bytes in 58,713 blocks ==13715== total heap usage: 2,616,458 allocs, 2,557,692 frees, 321,651,755 bytes allocated ==13715== ==13715== LEAK SUMMARY: ==13715== definitely lost: 0 bytes in 0 blocks ==13715== indirectly lost: 0 bytes in 0 blocks ==13715== possibly lost: 1,392 bytes in 4 blocks ==13715== still reachable: 6,236,497 bytes in 48,093 blocks ==13715== of which reachable via heuristic: ==13715== length64 : 6,728 bytes in 107 blocks ==13715== newarray : 6,456 bytes in 58 blocks ==13715== suppressed: 739,959 bytes in 9,760 blocks ==13715== Reachable blocks (those to which a pointer was found) are not shown. ==13715== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13715== ==13715== For counts of detected and suppressed errors, rerun with: -v ==13715== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13837== Memcheck, a memory error detector ==13837== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13837== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13837== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==13837== Parent PID: 13715 ==13837== ==13855== Memcheck, a memory error detector ==13855== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13855== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13855== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==13855== Parent PID: 13715 ==13855== ==13861== Memcheck, a memory error detector ==13861== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13861== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13861== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromServer ==13861== Parent PID: 148 ==13861== ==13861== ==13861== HEAP SUMMARY: ==13861== in use at exit: 7,093,819 bytes in 58,771 blocks ==13861== total heap usage: 3,559,066 allocs, 3,500,238 frees, 464,943,614 bytes allocated ==13861== ==13861== LEAK SUMMARY: ==13861== definitely lost: 0 bytes in 0 blocks ==13861== indirectly lost: 0 bytes in 0 blocks ==13861== possibly lost: 1,392 bytes in 4 blocks ==13861== still reachable: 6,236,377 bytes in 48,097 blocks ==13861== of which reachable via heuristic: ==13861== length64 : 6,728 bytes in 107 blocks ==13861== newarray : 6,456 bytes in 58 blocks ==13861== suppressed: 742,098 bytes in 9,814 blocks ==13861== Reachable blocks (those to which a pointer was found) are not shown. ==13861== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13861== ==13861== For counts of detected and suppressed errors, rerun with: -v ==13861== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14128== Memcheck, a memory error detector ==14128== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14128== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14128== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromClient ==14128== Parent PID: 148 ==14128== ==14128== ==14128== HEAP SUMMARY: ==14128== in use at exit: 7,088,271 bytes in 58,669 blocks ==14128== total heap usage: 3,511,435 allocs, 3,452,709 frees, 460,479,395 bytes allocated ==14128== ==14128== LEAK SUMMARY: ==14128== definitely lost: 0 bytes in 0 blocks ==14128== indirectly lost: 0 bytes in 0 blocks ==14128== possibly lost: 1,392 bytes in 4 blocks ==14128== still reachable: 6,232,043 bytes in 48,023 blocks ==14128== of which reachable via heuristic: ==14128== length64 : 6,728 bytes in 107 blocks ==14128== newarray : 6,456 bytes in 58 blocks ==14128== suppressed: 740,884 bytes in 9,786 blocks ==14128== Reachable blocks (those to which a pointer was found) are not shown. ==14128== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14128== ==14128== For counts of detected and suppressed errors, rerun with: -v ==14128== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1419== Memcheck, a memory error detector ==1419== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1419== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1419== Command: ./client-test Client::Sync::eds_event::testCopy ==1419== Parent PID: 148 ==1419== ==1419== ==1419== HEAP SUMMARY: ==1419== in use at exit: 6,997,338 bytes in 57,819 blocks ==1419== total heap usage: 1,855,791 allocs, 1,797,918 frees, 263,027,567 bytes allocated ==1419== ==1419== LEAK SUMMARY: ==1419== definitely lost: 0 bytes in 0 blocks ==1419== indirectly lost: 0 bytes in 0 blocks ==1419== possibly lost: 960 bytes in 3 blocks ==1419== still reachable: 6,230,927 bytes in 48,002 blocks ==1419== of which reachable via heuristic: ==1419== length64 : 6,024 bytes in 99 blocks ==1419== newarray : 6,408 bytes in 55 blocks ==1419== suppressed: 677,443 bytes in 9,143 blocks ==1419== Reachable blocks (those to which a pointer was found) are not shown. ==1419== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1419== ==1419== For counts of detected and suppressed errors, rerun with: -v ==1419== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14411== Memcheck, a memory error detector ==14411== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14411== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14411== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemote ==14411== Parent PID: 148 ==14411== ==14411== ==14411== HEAP SUMMARY: ==14411== in use at exit: 7,095,116 bytes in 58,772 blocks ==14411== total heap usage: 3,416,270 allocs, 3,357,441 frees, 454,164,311 bytes allocated ==14411== ==14411== LEAK SUMMARY: ==14411== definitely lost: 0 bytes in 0 blocks ==14411== indirectly lost: 0 bytes in 0 blocks ==14411== possibly lost: 1,392 bytes in 4 blocks ==14411== still reachable: 6,237,356 bytes in 48,115 blocks ==14411== of which reachable via heuristic: ==14411== length64 : 6,728 bytes in 107 blocks ==14411== newarray : 6,456 bytes in 58 blocks ==14411== suppressed: 742,416 bytes in 9,797 blocks ==14411== Reachable blocks (those to which a pointer was found) are not shown. ==14411== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14411== ==14411== For counts of detected and suppressed errors, rerun with: -v ==14411== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14676== Memcheck, a memory error detector ==14676== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14676== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14676== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocal ==14676== Parent PID: 148 ==14676== ==14676== ==14676== HEAP SUMMARY: ==14676== in use at exit: 7,080,454 bytes in 58,520 blocks ==14676== total heap usage: 3,512,522 allocs, 3,453,945 frees, 460,511,331 bytes allocated ==14676== ==14676== LEAK SUMMARY: ==14676== definitely lost: 0 bytes in 0 blocks ==14676== indirectly lost: 0 bytes in 0 blocks ==14676== possibly lost: 1,392 bytes in 4 blocks ==14676== still reachable: 6,228,602 bytes in 47,988 blocks ==14676== of which reachable via heuristic: ==14676== length64 : 6,728 bytes in 107 blocks ==14676== newarray : 6,456 bytes in 58 blocks ==14676== suppressed: 736,508 bytes in 9,672 blocks ==14676== Reachable blocks (those to which a pointer was found) are not shown. ==14676== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14676== ==14676== For counts of detected and suppressed errors, rerun with: -v ==14676== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==148== Memcheck, a memory error detector ==148== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==148== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==148== Command: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact ==148== Parent PID: 144 ==148== ==148== ==148== HEAP SUMMARY: ==148== in use at exit: 261,620 bytes in 3,725 blocks ==148== total heap usage: 74,926 allocs, 71,201 frees, 13,911,959 bytes allocated ==148== ==148== LEAK SUMMARY: ==148== definitely lost: 0 bytes in 0 blocks ==148== indirectly lost: 0 bytes in 0 blocks ==148== possibly lost: 96 bytes in 1 blocks ==148== still reachable: 44,695 bytes in 277 blocks ==148== of which reachable via heuristic: ==148== newarray : 5,800 bytes in 17 blocks ==148== suppressed: 216,829 bytes in 3,447 blocks ==148== Reachable blocks (those to which a pointer was found) are not shown. ==148== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==148== ==148== For counts of detected and suppressed errors, rerun with: -v ==148== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==151== Memcheck, a memory error detector ==151== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==151== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==151== Command: ./client-test Client::Sync::eds_event::testDeleteAllRefresh ==151== Parent PID: 148 ==151== ==151== ==151== HEAP SUMMARY: ==151== in use at exit: 6,996,965 bytes in 57,847 blocks ==151== total heap usage: 1,623,975 allocs, 1,566,075 frees, 222,290,007 bytes allocated ==151== ==151== LEAK SUMMARY: ==151== definitely lost: 0 bytes in 0 blocks ==151== indirectly lost: 0 bytes in 0 blocks ==151== possibly lost: 960 bytes in 3 blocks ==151== still reachable: 6,230,694 bytes in 47,994 blocks ==151== of which reachable via heuristic: ==151== length64 : 6,024 bytes in 99 blocks ==151== newarray : 6,408 bytes in 55 blocks ==151== suppressed: 677,135 bytes in 9,177 blocks ==151== Reachable blocks (those to which a pointer was found) are not shown. ==151== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==151== ==151== For counts of detected and suppressed errors, rerun with: -v ==151== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1518== Memcheck, a memory error detector ==1518== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1518== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1518== Command: ./client-test Client::Sync::eds_event::testCopy ==1518== Parent PID: 1419 ==1518== ==1534== Memcheck, a memory error detector ==1534== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1534== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1534== Command: ./client-test Client::Sync::eds_event::testCopy ==1534== Parent PID: 1419 ==1534== ==1539== Memcheck, a memory error detector ==1539== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1539== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1539== Command: ./client-test Client::Sync::eds_event::testDelete ==1539== Parent PID: 148 ==1539== ==1539== ==1539== HEAP SUMMARY: ==1539== in use at exit: 6,994,454 bytes in 57,781 blocks ==1539== total heap usage: 2,518,678 allocs, 2,460,841 frees, 365,401,859 bytes allocated ==1539== ==1539== LEAK SUMMARY: ==1539== definitely lost: 0 bytes in 0 blocks ==1539== indirectly lost: 0 bytes in 0 blocks ==1539== possibly lost: 960 bytes in 3 blocks ==1539== still reachable: 6,230,224 bytes in 47,987 blocks ==1539== of which reachable via heuristic: ==1539== length64 : 6,024 bytes in 99 blocks ==1539== newarray : 6,408 bytes in 55 blocks ==1539== suppressed: 675,262 bytes in 9,120 blocks ==1539== Reachable blocks (those to which a pointer was found) are not shown. ==1539== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1539== ==1539== For counts of detected and suppressed errors, rerun with: -v ==1539== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1638== Memcheck, a memory error detector ==1638== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1638== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1638== Command: ./client-test Client::Sync::eds_event::testDelete ==1638== Parent PID: 1539 ==1638== ==1677== Memcheck, a memory error detector ==1677== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1677== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1677== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==1677== Parent PID: 148 ==1677== ==1677== ==1677== HEAP SUMMARY: ==1677== in use at exit: 10,931,354 bytes in 83,931 blocks ==1677== total heap usage: 989,220 allocs, 905,237 frees, 145,130,513 bytes allocated ==1677== ==1677== LEAK SUMMARY: ==1677== definitely lost: 0 bytes in 0 blocks ==1677== indirectly lost: 0 bytes in 0 blocks ==1677== possibly lost: 528 bytes in 2 blocks ==1677== still reachable: 10,155,280 bytes in 74,046 blocks ==1677== of which reachable via heuristic: ==1677== length64 : 6,024 bytes in 99 blocks ==1677== newarray : 6,408 bytes in 55 blocks ==1677== suppressed: 683,122 bytes in 9,174 blocks ==1677== Reachable blocks (those to which a pointer was found) are not shown. ==1677== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1677== ==1677== For counts of detected and suppressed errors, rerun with: -v ==1677== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==1723== Memcheck, a memory error detector ==1723== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1723== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1723== Command: ./client-test Client::Sync::eds_event::testManyItems ==1723== Parent PID: 148 ==1723== ==1723== ==1723== HEAP SUMMARY: ==1723== in use at exit: 10,934,184 bytes in 83,980 blocks ==1723== total heap usage: 667,780 allocs, 583,749 frees, 94,545,830 bytes allocated ==1723== ==1723== LEAK SUMMARY: ==1723== definitely lost: 0 bytes in 0 blocks ==1723== indirectly lost: 0 bytes in 0 blocks ==1723== possibly lost: 528 bytes in 2 blocks ==1723== still reachable: 10,157,623 bytes in 74,077 blocks ==1723== of which reachable via heuristic: ==1723== length64 : 5,920 bytes in 97 blocks ==1723== newarray : 6,392 bytes in 54 blocks ==1723== suppressed: 683,905 bytes in 9,194 blocks ==1723== Reachable blocks (those to which a pointer was found) are not shown. ==1723== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1723== ==1723== For counts of detected and suppressed errors, rerun with: -v ==1723== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==1754== Memcheck, a memory error detector ==1754== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1754== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1754== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==1754== Parent PID: 148 ==1754== ==1754== ==1754== HEAP SUMMARY: ==1754== in use at exit: 10,932,467 bytes in 83,952 blocks ==1754== total heap usage: 667,797 allocs, 583,794 frees, 94,554,885 bytes allocated ==1754== ==1754== LEAK SUMMARY: ==1754== definitely lost: 0 bytes in 0 blocks ==1754== indirectly lost: 0 bytes in 0 blocks ==1754== possibly lost: 528 bytes in 2 blocks ==1754== still reachable: 10,156,188 bytes in 74,054 blocks ==1754== of which reachable via heuristic: ==1754== length64 : 5,920 bytes in 97 blocks ==1754== newarray : 6,392 bytes in 54 blocks ==1754== suppressed: 683,623 bytes in 9,189 blocks ==1754== Reachable blocks (those to which a pointer was found) are not shown. ==1754== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1754== ==1754== For counts of detected and suppressed errors, rerun with: -v ==1754== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==1785== Memcheck, a memory error detector ==1785== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1785== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1785== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==1785== Parent PID: 148 ==1785== ==1785== ==1785== HEAP SUMMARY: ==1785== in use at exit: 10,935,847 bytes in 84,008 blocks ==1785== total heap usage: 667,676 allocs, 583,617 frees, 94,556,225 bytes allocated ==1785== ==1785== LEAK SUMMARY: ==1785== definitely lost: 0 bytes in 0 blocks ==1785== indirectly lost: 0 bytes in 0 blocks ==1785== possibly lost: 528 bytes in 2 blocks ==1785== still reachable: 10,160,689 bytes in 74,126 blocks ==1785== of which reachable via heuristic: ==1785== length64 : 5,920 bytes in 97 blocks ==1785== newarray : 6,392 bytes in 54 blocks ==1785== suppressed: 682,502 bytes in 9,173 blocks ==1785== Reachable blocks (those to which a pointer was found) are not shown. ==1785== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1785== ==1785== For counts of detected and suppressed errors, rerun with: -v ==1785== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==1815== Memcheck, a memory error detector ==1815== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1815== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1815== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1815== Parent PID: 148 ==1815== ==1815== ==1815== HEAP SUMMARY: ==1815== in use at exit: 6,994,425 bytes in 57,779 blocks ==1815== total heap usage: 2,878,416 allocs, 2,820,580 frees, 419,856,451 bytes allocated ==1815== ==1815== LEAK SUMMARY: ==1815== definitely lost: 0 bytes in 0 blocks ==1815== indirectly lost: 0 bytes in 0 blocks ==1815== possibly lost: 960 bytes in 3 blocks ==1815== still reachable: 6,230,144 bytes in 47,989 blocks ==1815== of which reachable via heuristic: ==1815== length64 : 6,024 bytes in 99 blocks ==1815== newarray : 6,408 bytes in 55 blocks ==1815== suppressed: 675,145 bytes in 9,114 blocks ==1815== Reachable blocks (those to which a pointer was found) are not shown. ==1815== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1815== ==1815== For counts of detected and suppressed errors, rerun with: -v ==1815== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1919== Memcheck, a memory error detector ==1919== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1919== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1919== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1919== Parent PID: 1815 ==1919== ==1935== Memcheck, a memory error detector ==1935== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1935== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1935== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1935== Parent PID: 1815 ==1935== ==1978== Memcheck, a memory error detector ==1978== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1978== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1978== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==1978== Parent PID: 148 ==1978== ==1978== ==1978== HEAP SUMMARY: ==1978== in use at exit: 6,998,662 bytes in 57,889 blocks ==1978== total heap usage: 2,631,337 allocs, 2,573,392 frees, 372,373,432 bytes allocated ==1978== ==1978== LEAK SUMMARY: ==1978== definitely lost: 0 bytes in 0 blocks ==1978== indirectly lost: 0 bytes in 0 blocks ==1978== possibly lost: 960 bytes in 3 blocks ==1978== still reachable: 6,231,088 bytes in 48,001 blocks ==1978== of which reachable via heuristic: ==1978== length64 : 6,024 bytes in 99 blocks ==1978== newarray : 6,408 bytes in 55 blocks ==1978== suppressed: 678,438 bytes in 9,212 blocks ==1978== Reachable blocks (those to which a pointer was found) are not shown. ==1978== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1978== ==1978== For counts of detected and suppressed errors, rerun with: -v ==1978== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2077== Memcheck, a memory error detector ==2077== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2077== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2077== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==2077== Parent PID: 1978 ==2077== ==2093== Memcheck, a memory error detector ==2093== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2093== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2093== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==2093== Parent PID: 1978 ==2093== ==2143== Memcheck, a memory error detector ==2143== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2143== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2143== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==2143== Parent PID: 148 ==2143== ==2143== ==2143== HEAP SUMMARY: ==2143== in use at exit: 6,996,425 bytes in 57,814 blocks ==2143== total heap usage: 2,475,775 allocs, 2,417,905 frees, 362,892,754 bytes allocated ==2143== ==2143== LEAK SUMMARY: ==2143== definitely lost: 0 bytes in 0 blocks ==2143== indirectly lost: 0 bytes in 0 blocks ==2143== possibly lost: 960 bytes in 3 blocks ==2143== still reachable: 6,229,680 bytes in 47,981 blocks ==2143== of which reachable via heuristic: ==2143== length64 : 6,024 bytes in 99 blocks ==2143== newarray : 6,408 bytes in 55 blocks ==2143== suppressed: 677,777 bytes in 9,159 blocks ==2143== Reachable blocks (those to which a pointer was found) are not shown. ==2143== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2143== ==2143== For counts of detected and suppressed errors, rerun with: -v ==2143== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2266== Memcheck, a memory error detector ==2266== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2266== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2266== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==2266== Parent PID: 2143 ==2266== ==2275== Memcheck, a memory error detector ==2275== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2275== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2275== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==2275== Parent PID: 148 ==2275== ==2275== ==2275== HEAP SUMMARY: ==2275== in use at exit: 7,002,088 bytes in 57,901 blocks ==2275== total heap usage: 2,478,235 allocs, 2,420,278 frees, 363,058,703 bytes allocated ==2275== ==2275== LEAK SUMMARY: ==2275== definitely lost: 0 bytes in 0 blocks ==2275== indirectly lost: 0 bytes in 0 blocks ==2275== possibly lost: 960 bytes in 3 blocks ==2275== still reachable: 6,235,037 bytes in 48,074 blocks ==2275== of which reachable via heuristic: ==2275== length64 : 6,024 bytes in 99 blocks ==2275== newarray : 6,408 bytes in 55 blocks ==2275== suppressed: 678,083 bytes in 9,153 blocks ==2275== Reachable blocks (those to which a pointer was found) are not shown. ==2275== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2275== ==2275== For counts of detected and suppressed errors, rerun with: -v ==2275== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==238== Memcheck, a memory error detector ==238== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==238== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==238== Command: ./client-test Client::Sync::eds_event::testTwoWaySync ==238== Parent PID: 148 ==238== ==238== ==238== HEAP SUMMARY: ==238== in use at exit: 6,997,024 bytes in 57,814 blocks ==238== total heap usage: 640,569 allocs, 582,704 frees, 95,414,912 bytes allocated ==238== ==238== LEAK SUMMARY: ==238== definitely lost: 0 bytes in 0 blocks ==238== indirectly lost: 0 bytes in 0 blocks ==238== possibly lost: 960 bytes in 3 blocks ==238== still reachable: 6,232,607 bytes in 48,029 blocks ==238== of which reachable via heuristic: ==238== length64 : 5,984 bytes in 98 blocks ==238== newarray : 6,408 bytes in 55 blocks ==238== suppressed: 675,449 bytes in 9,111 blocks ==238== Reachable blocks (those to which a pointer was found) are not shown. ==238== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==238== ==238== For counts of detected and suppressed errors, rerun with: -v ==238== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2399== Memcheck, a memory error detector ==2399== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2399== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2399== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==2399== Parent PID: 2275 ==2399== ==2408== Memcheck, a memory error detector ==2408== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2408== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2408== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==2408== Parent PID: 148 ==2408== ==2408== ==2408== HEAP SUMMARY: ==2408== in use at exit: 6,997,355 bytes in 57,819 blocks ==2408== total heap usage: 2,540,567 allocs, 2,482,692 frees, 368,427,184 bytes allocated ==2408== ==2408== LEAK SUMMARY: ==2408== definitely lost: 0 bytes in 0 blocks ==2408== indirectly lost: 0 bytes in 0 blocks ==2408== possibly lost: 960 bytes in 3 blocks ==2408== still reachable: 6,231,104 bytes in 48,005 blocks ==2408== of which reachable via heuristic: ==2408== length64 : 6,024 bytes in 99 blocks ==2408== newarray : 6,408 bytes in 55 blocks ==2408== suppressed: 677,283 bytes in 9,140 blocks ==2408== Reachable blocks (those to which a pointer was found) are not shown. ==2408== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2408== ==2408== For counts of detected and suppressed errors, rerun with: -v ==2408== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2535== Memcheck, a memory error detector ==2535== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2535== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2535== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==2535== Parent PID: 2408 ==2535== ==2540== Memcheck, a memory error detector ==2540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2540== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==2540== Parent PID: 148 ==2540== ==2540== ==2540== HEAP SUMMARY: ==2540== in use at exit: 6,998,438 bytes in 57,859 blocks ==2540== total heap usage: 1,771,927 allocs, 1,714,014 frees, 257,980,794 bytes allocated ==2540== ==2540== LEAK SUMMARY: ==2540== definitely lost: 0 bytes in 0 blocks ==2540== indirectly lost: 0 bytes in 0 blocks ==2540== possibly lost: 960 bytes in 3 blocks ==2540== still reachable: 6,230,249 bytes in 47,989 blocks ==2540== of which reachable via heuristic: ==2540== length64 : 6,024 bytes in 99 blocks ==2540== newarray : 6,408 bytes in 55 blocks ==2540== suppressed: 679,053 bytes in 9,194 blocks ==2540== Reachable blocks (those to which a pointer was found) are not shown. ==2540== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2540== ==2540== For counts of detected and suppressed errors, rerun with: -v ==2540== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2629== Memcheck, a memory error detector ==2629== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2629== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2629== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==2629== Parent PID: 2540 ==2629== ==2634== Memcheck, a memory error detector ==2634== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2634== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2634== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==2634== Parent PID: 148 ==2634== ==2634== ==2634== HEAP SUMMARY: ==2634== in use at exit: 7,000,821 bytes in 57,875 blocks ==2634== total heap usage: 2,466,879 allocs, 2,408,948 frees, 363,514,220 bytes allocated ==2634== ==2634== LEAK SUMMARY: ==2634== definitely lost: 0 bytes in 0 blocks ==2634== indirectly lost: 0 bytes in 0 blocks ==2634== possibly lost: 960 bytes in 3 blocks ==2634== still reachable: 6,234,234 bytes in 48,056 blocks ==2634== of which reachable via heuristic: ==2634== length64 : 6,024 bytes in 99 blocks ==2634== newarray : 6,408 bytes in 55 blocks ==2634== suppressed: 677,619 bytes in 9,145 blocks ==2634== Reachable blocks (those to which a pointer was found) are not shown. ==2634== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2634== ==2634== For counts of detected and suppressed errors, rerun with: -v ==2634== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==267== Memcheck, a memory error detector ==267== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==267== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==267== Command: ./client-test Client::Sync::eds_event::testSlowSync ==267== Parent PID: 148 ==267== ==267== ==267== HEAP SUMMARY: ==267== in use at exit: 6,987,045 bytes in 57,665 blocks ==267== total heap usage: 641,535 allocs, 583,819 frees, 95,341,191 bytes allocated ==267== ==267== LEAK SUMMARY: ==267== definitely lost: 0 bytes in 0 blocks ==267== indirectly lost: 0 bytes in 0 blocks ==267== possibly lost: 960 bytes in 3 blocks ==267== still reachable: 6,227,783 bytes in 47,977 blocks ==267== of which reachable via heuristic: ==267== length64 : 5,984 bytes in 98 blocks ==267== newarray : 6,408 bytes in 55 blocks ==267== suppressed: 670,126 bytes in 9,012 blocks ==267== Reachable blocks (those to which a pointer was found) are not shown. ==267== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==267== ==267== For counts of detected and suppressed errors, rerun with: -v ==267== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2750== Memcheck, a memory error detector ==2750== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2750== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2750== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==2750== Parent PID: 2634 ==2750== ==2754== Memcheck, a memory error detector ==2754== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2754== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2754== Command: ./client-test Client::Sync::eds_event::testUpdate ==2754== Parent PID: 148 ==2754== ==2754== ==2754== HEAP SUMMARY: ==2754== in use at exit: 6,997,291 bytes in 57,817 blocks ==2754== total heap usage: 2,563,590 allocs, 2,505,717 frees, 368,596,996 bytes allocated ==2754== ==2754== LEAK SUMMARY: ==2754== definitely lost: 0 bytes in 0 blocks ==2754== indirectly lost: 0 bytes in 0 blocks ==2754== possibly lost: 960 bytes in 3 blocks ==2754== still reachable: 6,231,104 bytes in 48,005 blocks ==2754== of which reachable via heuristic: ==2754== length64 : 6,024 bytes in 99 blocks ==2754== newarray : 6,408 bytes in 55 blocks ==2754== suppressed: 677,219 bytes in 9,138 blocks ==2754== Reachable blocks (those to which a pointer was found) are not shown. ==2754== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2754== ==2754== For counts of detected and suppressed errors, rerun with: -v ==2754== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2853== Memcheck, a memory error detector ==2853== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2853== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2853== Command: ./client-test Client::Sync::eds_event::testUpdate ==2853== Parent PID: 2754 ==2853== ==2899== Memcheck, a memory error detector ==2899== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2899== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2899== Command: ./client-test Client::Sync::eds_event::testUpdate ==2899== Parent PID: 2754 ==2899== ==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::testMerge ==2903== Parent PID: 148 ==2903== ==2903== ==2903== HEAP SUMMARY: ==2903== in use at exit: 7,000,179 bytes in 57,872 blocks ==2903== total heap usage: 3,342,082 allocs, 3,284,152 frees, 478,913,771 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,235,453 bytes in 48,081 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: 675,758 bytes in 9,117 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) ==295== Memcheck, a memory error detector ==295== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==295== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==295== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSync ==295== Parent PID: 148 ==295== ==295== ==295== HEAP SUMMARY: ==295== in use at exit: 6,996,166 bytes in 57,801 blocks ==295== total heap usage: 640,880 allocs, 583,028 frees, 95,327,694 bytes allocated ==295== ==295== LEAK SUMMARY: ==295== definitely lost: 0 bytes in 0 blocks ==295== indirectly lost: 0 bytes in 0 blocks ==295== possibly lost: 960 bytes in 3 blocks ==295== still reachable: 6,230,112 bytes in 47,983 blocks ==295== of which reachable via heuristic: ==295== length64 : 5,984 bytes in 98 blocks ==295== newarray : 6,408 bytes in 55 blocks ==295== suppressed: 677,086 bytes in 9,144 blocks ==295== Reachable blocks (those to which a pointer was found) are not shown. ==295== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==295== ==295== For counts of detected and suppressed errors, rerun with: -v ==295== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3002== Memcheck, a memory error detector ==3002== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3002== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3002== Command: ./client-test Client::Sync::eds_event::testMerge ==3002== Parent PID: 2903 ==3002== ==3070== Memcheck, a memory error detector ==3070== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3070== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3070== Command: ./client-test Client::Sync::eds_event::testMerge ==3070== Parent PID: 2903 ==3070== ==3096== Memcheck, a memory error detector ==3096== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3096== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3096== Command: ./client-test Client::Sync::eds_event::testMerge ==3096== Parent PID: 2903 ==3096== ==3101== Memcheck, a memory error detector ==3101== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3101== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3101== Command: ./client-test Client::Sync::eds_event::testTwinning ==3101== Parent PID: 148 ==3101== ==3101== ==3101== HEAP SUMMARY: ==3101== in use at exit: 6,999,048 bytes in 57,848 blocks ==3101== total heap usage: 2,675,403 allocs, 2,617,500 frees, 361,881,191 bytes allocated ==3101== ==3101== LEAK SUMMARY: ==3101== definitely lost: 0 bytes in 0 blocks ==3101== indirectly lost: 0 bytes in 0 blocks ==3101== possibly lost: 960 bytes in 3 blocks ==3101== still reachable: 6,234,146 bytes in 48,053 blocks ==3101== of which reachable via heuristic: ==3101== length64 : 6,024 bytes in 99 blocks ==3101== newarray : 6,408 bytes in 55 blocks ==3101== suppressed: 675,934 bytes in 9,121 blocks ==3101== Reachable blocks (those to which a pointer was found) are not shown. ==3101== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3101== ==3101== For counts of detected and suppressed errors, rerun with: -v ==3101== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3155== Memcheck, a memory error detector ==3155== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3155== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3155== Command: ./client-test Client::Sync::eds_event::testTwinning ==3155== Parent PID: 3101 ==3155== ==3230== Memcheck, a memory error detector ==3230== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3230== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3230== Command: ./client-test Client::Sync::eds_event::testTwinning ==3230== Parent PID: 3101 ==3230== ==3236== Memcheck, a memory error detector ==3236== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3236== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3236== Command: ./client-test Client::Sync::eds_event::testItems ==3236== Parent PID: 148 ==3236== ==3236== ==3236== HEAP SUMMARY: ==3236== in use at exit: 6,995,342 bytes in 57,791 blocks ==3236== total heap usage: 1,839,839 allocs, 1,781,995 frees, 241,455,526 bytes allocated ==3236== ==3236== LEAK SUMMARY: ==3236== definitely lost: 0 bytes in 0 blocks ==3236== indirectly lost: 0 bytes in 0 blocks ==3236== possibly lost: 960 bytes in 3 blocks ==3236== still reachable: 6,231,200 bytes in 48,006 blocks ==3236== of which reachable via heuristic: ==3236== length64 : 6,024 bytes in 99 blocks ==3236== newarray : 6,408 bytes in 55 blocks ==3236== suppressed: 675,174 bytes in 9,111 blocks ==3236== Reachable blocks (those to which a pointer was found) are not shown. ==3236== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3236== ==3236== For counts of detected and suppressed errors, rerun with: -v ==3236== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==324== Memcheck, a memory error detector ==324== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==324== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==324== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSync ==324== Parent PID: 148 ==324== ==324== ==324== HEAP SUMMARY: ==324== in use at exit: 6,994,888 bytes in 57,786 blocks ==324== total heap usage: 641,062 allocs, 583,225 frees, 95,328,714 bytes allocated ==324== ==324== LEAK SUMMARY: ==324== definitely lost: 0 bytes in 0 blocks ==324== indirectly lost: 0 bytes in 0 blocks ==324== possibly lost: 960 bytes in 3 blocks ==324== still reachable: 6,230,672 bytes in 47,993 blocks ==324== of which reachable via heuristic: ==324== length64 : 5,984 bytes in 98 blocks ==324== newarray : 6,408 bytes in 55 blocks ==324== suppressed: 675,080 bytes in 9,117 blocks ==324== Reachable blocks (those to which a pointer was found) are not shown. ==324== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==324== ==324== For counts of detected and suppressed errors, rerun with: -v ==324== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3290== Memcheck, a memory error detector ==3290== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3290== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3290== Command: ./client-test Client::Sync::eds_event::testItems ==3290== Parent PID: 3236 ==3290== ==3333== Memcheck, a memory error detector ==3333== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3333== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3333== Command: ./client-test Client::Sync::eds_event::testItems ==3333== Parent PID: 3236 ==3333== ==3337== Memcheck, a memory error detector ==3337== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3337== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3337== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3337== Parent PID: 148 ==3337== ==3337== ==3337== HEAP SUMMARY: ==3337== in use at exit: 6,996,164 bytes in 57,805 blocks ==3337== total heap usage: 1,858,735 allocs, 1,800,877 frees, 240,944,003 bytes allocated ==3337== ==3337== LEAK SUMMARY: ==3337== definitely lost: 0 bytes in 0 blocks ==3337== indirectly lost: 0 bytes in 0 blocks ==3337== possibly lost: 960 bytes in 3 blocks ==3337== still reachable: 6,229,969 bytes in 47,983 blocks ==3337== of which reachable via heuristic: ==3337== length64 : 6,024 bytes in 99 blocks ==3337== newarray : 6,408 bytes in 55 blocks ==3337== suppressed: 677,227 bytes in 9,148 blocks ==3337== Reachable blocks (those to which a pointer was found) are not shown. ==3337== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3337== ==3337== For counts of detected and suppressed errors, rerun with: -v ==3337== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3392== Memcheck, a memory error detector ==3392== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3392== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3392== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3392== Parent PID: 3337 ==3392== ==3435== Memcheck, a memory error detector ==3435== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3435== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3435== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3435== Parent PID: 3337 ==3435== ==3440== Memcheck, a memory error detector ==3440== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3440== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3440== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==3440== Parent PID: 148 ==3440== ==3440== ==3440== HEAP SUMMARY: ==3440== in use at exit: 6,996,542 bytes in 57,819 blocks ==3440== total heap usage: 1,867,439 allocs, 1,809,567 frees, 271,392,883 bytes allocated ==3440== ==3440== LEAK SUMMARY: ==3440== definitely lost: 0 bytes in 0 blocks ==3440== indirectly lost: 0 bytes in 0 blocks ==3440== possibly lost: 960 bytes in 3 blocks ==3440== still reachable: 6,229,681 bytes in 47,981 blocks ==3440== of which reachable via heuristic: ==3440== length64 : 6,024 bytes in 99 blocks ==3440== newarray : 6,408 bytes in 55 blocks ==3440== suppressed: 677,893 bytes in 9,164 blocks ==3440== Reachable blocks (those to which a pointer was found) are not shown. ==3440== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3440== ==3440== For counts of detected and suppressed errors, rerun with: -v ==3440== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3516== Memcheck, a memory error detector ==3516== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3516== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3516== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==3516== Parent PID: 3440 ==3516== ==352== Memcheck, a memory error detector ==352== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==352== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==352== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteSync ==352== Parent PID: 148 ==352== ==352== ==352== HEAP SUMMARY: ==352== in use at exit: 6,996,064 bytes in 57,810 blocks ==352== total heap usage: 641,076 allocs, 583,215 frees, 95,331,468 bytes allocated ==352== ==352== LEAK SUMMARY: ==352== definitely lost: 0 bytes in 0 blocks ==352== indirectly lost: 0 bytes in 0 blocks ==352== possibly lost: 960 bytes in 3 blocks ==352== still reachable: 6,229,664 bytes in 47,981 blocks ==352== of which reachable via heuristic: ==352== length64 : 5,984 bytes in 98 blocks ==352== newarray : 6,408 bytes in 55 blocks ==352== suppressed: 677,432 bytes in 9,155 blocks ==352== Reachable blocks (those to which a pointer was found) are not shown. ==352== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==352== ==352== For counts of detected and suppressed errors, rerun with: -v ==352== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3521== Memcheck, a memory error detector ==3521== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3521== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3521== Command: ./client-test Client::Sync::eds_event::testLargeObject ==3521== Parent PID: 148 ==3521== ==3521== ==3521== HEAP SUMMARY: ==3521== in use at exit: 7,002,674 bytes in 57,919 blocks ==3521== total heap usage: 1,891,076 allocs, 1,833,104 frees, 253,181,608 bytes allocated ==3521== ==3521== LEAK SUMMARY: ==3521== definitely lost: 0 bytes in 0 blocks ==3521== indirectly lost: 0 bytes in 0 blocks ==3521== possibly lost: 960 bytes in 3 blocks ==3521== still reachable: 6,236,941 bytes in 48,099 blocks ==3521== of which reachable via heuristic: ==3521== length64 : 6,024 bytes in 99 blocks ==3521== newarray : 6,408 bytes in 55 blocks ==3521== suppressed: 676,597 bytes in 9,144 blocks ==3521== Reachable blocks (those to which a pointer was found) are not shown. ==3521== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3521== ==3521== For counts of detected and suppressed errors, rerun with: -v ==3521== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3596== Memcheck, a memory error detector ==3596== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3596== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3596== Command: ./client-test Client::Sync::eds_event::testLargeObject ==3596== Parent PID: 3521 ==3596== ==3601== Memcheck, a memory error detector ==3601== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3601== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3601== Command: ./client-test Client::Sync::eds_event::testOneWayFromServer ==3601== Parent PID: 148 ==3601== ==3601== ==3601== HEAP SUMMARY: ==3601== in use at exit: 6,995,688 bytes in 57,793 blocks ==3601== total heap usage: 2,998,749 allocs, 2,940,899 frees, 427,457,580 bytes allocated ==3601== ==3601== LEAK SUMMARY: ==3601== definitely lost: 0 bytes in 0 blocks ==3601== indirectly lost: 0 bytes in 0 blocks ==3601== possibly lost: 960 bytes in 3 blocks ==3601== still reachable: 6,229,509 bytes in 47,979 blocks ==3601== of which reachable via heuristic: ==3601== length64 : 6,024 bytes in 99 blocks ==3601== newarray : 6,408 bytes in 55 blocks ==3601== suppressed: 677,211 bytes in 9,140 blocks ==3601== Reachable blocks (those to which a pointer was found) are not shown. ==3601== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3601== ==3601== For counts of detected and suppressed errors, rerun with: -v ==3601== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3756== Memcheck, a memory error detector ==3756== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3756== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3756== Command: ./client-test Client::Sync::eds_event::testOneWayFromClient ==3756== Parent PID: 148 ==3756== ==3756== ==3756== HEAP SUMMARY: ==3756== in use at exit: 6,997,420 bytes in 57,858 blocks ==3756== total heap usage: 2,969,345 allocs, 2,911,430 frees, 424,509,856 bytes allocated ==3756== ==3756== LEAK SUMMARY: ==3756== definitely lost: 0 bytes in 0 blocks ==3756== indirectly lost: 0 bytes in 0 blocks ==3756== possibly lost: 960 bytes in 3 blocks ==3756== still reachable: 6,230,225 bytes in 47,988 blocks ==3756== of which reachable via heuristic: ==3756== length64 : 6,024 bytes in 99 blocks ==3756== newarray : 6,408 bytes in 55 blocks ==3756== suppressed: 678,227 bytes in 9,196 blocks ==3756== Reachable blocks (those to which a pointer was found) are not shown. ==3756== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3756== ==3756== For counts of detected and suppressed errors, rerun with: -v ==3756== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==380== Memcheck, a memory error detector ==380== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==380== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==380== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalSync ==380== Parent PID: 148 ==380== ==380== ==380== HEAP SUMMARY: ==380== in use at exit: 6,985,558 bytes in 57,623 blocks ==380== total heap usage: 641,329 allocs, 583,655 frees, 95,337,275 bytes allocated ==380== ==380== LEAK SUMMARY: ==380== definitely lost: 0 bytes in 0 blocks ==380== indirectly lost: 0 bytes in 0 blocks ==380== possibly lost: 960 bytes in 3 blocks ==380== still reachable: 6,227,424 bytes in 47,973 blocks ==380== of which reachable via heuristic: ==380== length64 : 5,984 bytes in 98 blocks ==380== newarray : 6,408 bytes in 55 blocks ==380== suppressed: 668,998 bytes in 8,974 blocks ==380== Reachable blocks (those to which a pointer was found) are not shown. ==380== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==380== ==380== For counts of detected and suppressed errors, rerun with: -v ==380== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3920== Memcheck, a memory error detector ==3920== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3920== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3920== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemote ==3920== Parent PID: 148 ==3920== ==3920== ==3920== HEAP SUMMARY: ==3920== in use at exit: 6,997,206 bytes in 57,819 blocks ==3920== total heap usage: 2,917,575 allocs, 2,859,699 frees, 421,203,170 bytes allocated ==3920== ==3920== LEAK SUMMARY: ==3920== definitely lost: 0 bytes in 0 blocks ==3920== indirectly lost: 0 bytes in 0 blocks ==3920== possibly lost: 960 bytes in 3 blocks ==3920== still reachable: 6,232,468 bytes in 48,026 blocks ==3920== of which reachable via heuristic: ==3920== length64 : 6,024 bytes in 99 blocks ==3920== newarray : 6,408 bytes in 55 blocks ==3920== suppressed: 675,770 bytes in 9,119 blocks ==3920== Reachable blocks (those to which a pointer was found) are not shown. ==3920== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3920== ==3920== For counts of detected and suppressed errors, rerun with: -v ==3920== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4073== Memcheck, a memory error detector ==4073== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4073== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4073== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocal ==4073== Parent PID: 148 ==4073== ==4073== ==4073== HEAP SUMMARY: ==4073== in use at exit: 6,995,632 bytes in 57,791 blocks ==4073== total heap usage: 2,969,669 allocs, 2,911,821 frees, 424,515,077 bytes allocated ==4073== ==4073== LEAK SUMMARY: ==4073== definitely lost: 0 bytes in 0 blocks ==4073== indirectly lost: 0 bytes in 0 blocks ==4073== possibly lost: 960 bytes in 3 blocks ==4073== still reachable: 6,229,585 bytes in 47,979 blocks ==4073== of which reachable via heuristic: ==4073== length64 : 6,024 bytes in 99 blocks ==4073== newarray : 6,408 bytes in 55 blocks ==4073== suppressed: 677,079 bytes in 9,138 blocks ==4073== Reachable blocks (those to which a pointer was found) are not shown. ==4073== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4073== ==4073== For counts of detected and suppressed errors, rerun with: -v ==4073== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==408== Memcheck, a memory error detector ==408== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==408== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==408== Command: ./client-test Client::Sync::eds_event::testTimeout ==408== Parent PID: 148 ==408== ==408== ==408== HEAP SUMMARY: ==408== in use at exit: 6,965,018 bytes in 57,308 blocks ==408== total heap usage: 622,039 allocs, 564,731 frees, 91,672,682 bytes allocated ==408== ==408== LEAK SUMMARY: ==408== definitely lost: 0 bytes in 0 blocks ==408== indirectly lost: 0 bytes in 0 blocks ==408== possibly lost: 528 bytes in 2 blocks ==408== still reachable: 6,218,939 bytes in 47,875 blocks ==408== of which reachable via heuristic: ==408== length64 : 5,416 bytes in 91 blocks ==408== newarray : 6,376 bytes in 53 blocks ==408== suppressed: 659,919 bytes in 8,781 blocks ==408== Reachable blocks (those to which a pointer was found) are not shown. ==408== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==408== ==408== For counts of detected and suppressed errors, rerun with: -v ==408== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==4238== Memcheck, a memory error detector ==4238== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4238== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4238== Command: ./client-test Client::Sync::eds_contact::testDeleteAllRefresh ==4238== Parent PID: 148 ==4238== ==4238== ==4238== HEAP SUMMARY: ==4238== in use at exit: 7,045,564 bytes in 58,035 blocks ==4238== total heap usage: 1,602,016 allocs, 1,543,928 frees, 224,364,596 bytes allocated ==4238== ==4238== LEAK SUMMARY: ==4238== definitely lost: 0 bytes in 0 blocks ==4238== indirectly lost: 0 bytes in 0 blocks ==4238== possibly lost: 960 bytes in 3 blocks ==4238== still reachable: 6,302,409 bytes in 47,988 blocks ==4238== of which reachable via heuristic: ==4238== length64 : 6,000 bytes in 99 blocks ==4238== newarray : 6,392 bytes in 54 blocks ==4238== suppressed: 634,171 bytes in 9,246 blocks ==4238== Reachable blocks (those to which a pointer was found) are not shown. ==4238== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4238== ==4238== For counts of detected and suppressed errors, rerun with: -v ==4238== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==430== Memcheck, a memory error detector ==430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==430== Command: ./client-test Client::Sync::eds_event::testConversion ==430== Parent PID: 148 ==430== ==430== ==430== HEAP SUMMARY: ==430== in use at exit: 2,897,838 bytes in 30,053 blocks ==430== total heap usage: 321,649 allocs, 291,545 frees, 46,577,705 bytes allocated ==430== ==430== LEAK SUMMARY: ==430== definitely lost: 0 bytes in 0 blocks ==430== indirectly lost: 0 bytes in 0 blocks ==430== possibly lost: 960 bytes in 3 blocks ==430== still reachable: 2,216,811 bytes in 21,387 blocks ==430== of which reachable via heuristic: ==430== length64 : 5,096 bytes in 83 blocks ==430== newarray : 6,328 bytes in 50 blocks ==430== suppressed: 607,579 bytes in 8,118 blocks ==430== Reachable blocks (those to which a pointer was found) are not shown. ==430== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==430== ==430== For counts of detected and suppressed errors, rerun with: -v ==430== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4322== Memcheck, a memory error detector ==4322== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4322== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4322== Command: ./client-test Client::Sync::eds_contact::testTwoWaySync ==4322== Parent PID: 148 ==4322== ==4322== ==4322== HEAP SUMMARY: ==4322== in use at exit: 6,981,045 bytes in 57,539 blocks ==4322== total heap usage: 637,031 allocs, 579,441 frees, 95,267,453 bytes allocated ==4322== ==4322== LEAK SUMMARY: ==4322== definitely lost: 0 bytes in 0 blocks ==4322== indirectly lost: 0 bytes in 0 blocks ==4322== possibly lost: 960 bytes in 3 blocks ==4322== still reachable: 6,301,553 bytes in 47,983 blocks ==4322== of which reachable via heuristic: ==4322== length64 : 5,960 bytes in 98 blocks ==4322== newarray : 6,392 bytes in 54 blocks ==4322== suppressed: 591,204 bytes in 8,890 blocks ==4322== Reachable blocks (those to which a pointer was found) are not shown. ==4322== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4322== ==4322== For counts of detected and suppressed errors, rerun with: -v ==4322== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4350== Memcheck, a memory error detector ==4350== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4350== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4350== Command: ./client-test Client::Sync::eds_contact::testSlowSync ==4350== Parent PID: 148 ==4350== ==4350== ==4350== HEAP SUMMARY: ==4350== in use at exit: 6,997,172 bytes in 57,817 blocks ==4350== total heap usage: 635,703 allocs, 577,835 frees, 95,265,459 bytes allocated ==4350== ==4350== LEAK SUMMARY: ==4350== definitely lost: 0 bytes in 0 blocks ==4350== indirectly lost: 0 bytes in 0 blocks ==4350== possibly lost: 960 bytes in 3 blocks ==4350== still reachable: 6,310,265 bytes in 48,107 blocks ==4350== of which reachable via heuristic: ==4350== length64 : 5,960 bytes in 98 blocks ==4350== newarray : 6,392 bytes in 54 blocks ==4350== suppressed: 598,619 bytes in 9,044 blocks ==4350== Reachable blocks (those to which a pointer was found) are not shown. ==4350== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4350== ==4350== For counts of detected and suppressed errors, rerun with: -v ==4350== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4378== Memcheck, a memory error detector ==4378== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4378== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4378== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSync ==4378== Parent PID: 148 ==4378== ==4378== ==4378== HEAP SUMMARY: ==4378== in use at exit: 6,993,189 bytes in 57,735 blocks ==4378== total heap usage: 636,387 allocs, 578,601 frees, 95,297,596 bytes allocated ==4378== ==4378== LEAK SUMMARY: ==4378== definitely lost: 0 bytes in 0 blocks ==4378== indirectly lost: 0 bytes in 0 blocks ==4378== possibly lost: 960 bytes in 3 blocks ==4378== still reachable: 6,305,218 bytes in 48,015 blocks ==4378== of which reachable via heuristic: ==4378== length64 : 5,960 bytes in 98 blocks ==4378== newarray : 6,392 bytes in 54 blocks ==4378== suppressed: 599,851 bytes in 9,056 blocks ==4378== Reachable blocks (those to which a pointer was found) are not shown. ==4378== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4378== ==4378== For counts of detected and suppressed errors, rerun with: -v ==4378== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4406== Memcheck, a memory error detector ==4406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4406== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSync ==4406== Parent PID: 148 ==4406== ==4406== ==4406== HEAP SUMMARY: ==4406== in use at exit: 6,995,513 bytes in 57,799 blocks ==4406== total heap usage: 636,613 allocs, 578,763 frees, 95,300,946 bytes allocated ==4406== ==4406== LEAK SUMMARY: ==4406== definitely lost: 0 bytes in 0 blocks ==4406== indirectly lost: 0 bytes in 0 blocks ==4406== possibly lost: 960 bytes in 3 blocks ==4406== still reachable: 6,304,682 bytes in 48,001 blocks ==4406== of which reachable via heuristic: ==4406== length64 : 5,960 bytes in 98 blocks ==4406== newarray : 6,392 bytes in 54 blocks ==4406== suppressed: 602,543 bytes in 9,132 blocks ==4406== Reachable blocks (those to which a pointer was found) are not shown. ==4406== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4406== ==4406== For counts of detected and suppressed errors, rerun with: -v ==4406== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4434== Memcheck, a memory error detector ==4434== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4434== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4434== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteSync ==4434== Parent PID: 148 ==4434== ==4434== ==4434== HEAP SUMMARY: ==4434== in use at exit: 6,992,531 bytes in 57,751 blocks ==4434== total heap usage: 636,324 allocs, 578,522 frees, 95,293,411 bytes allocated ==4434== ==4434== LEAK SUMMARY: ==4434== definitely lost: 0 bytes in 0 blocks ==4434== indirectly lost: 0 bytes in 0 blocks ==4434== possibly lost: 960 bytes in 3 blocks ==4434== still reachable: 6,304,538 bytes in 47,998 blocks ==4434== of which reachable via heuristic: ==4434== length64 : 5,960 bytes in 98 blocks ==4434== newarray : 6,392 bytes in 54 blocks ==4434== suppressed: 599,873 bytes in 9,089 blocks ==4434== Reachable blocks (those to which a pointer was found) are not shown. ==4434== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4434== ==4434== For counts of detected and suppressed errors, rerun with: -v ==4434== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4463== Memcheck, a memory error detector ==4463== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4463== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4463== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalSync ==4463== Parent PID: 148 ==4463== ==4463== ==4463== HEAP SUMMARY: ==4463== in use at exit: 6,992,371 bytes in 57,734 blocks ==4463== total heap usage: 636,615 allocs, 578,830 frees, 95,300,413 bytes allocated ==4463== ==4463== LEAK SUMMARY: ==4463== definitely lost: 0 bytes in 0 blocks ==4463== indirectly lost: 0 bytes in 0 blocks ==4463== possibly lost: 960 bytes in 3 blocks ==4463== still reachable: 6,303,794 bytes in 47,991 blocks ==4463== of which reachable via heuristic: ==4463== length64 : 5,960 bytes in 98 blocks ==4463== newarray : 6,392 bytes in 54 blocks ==4463== suppressed: 600,457 bytes in 9,079 blocks ==4463== Reachable blocks (those to which a pointer was found) are not shown. ==4463== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4463== ==4463== For counts of detected and suppressed errors, rerun with: -v ==4463== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4492== Memcheck, a memory error detector ==4492== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4492== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4492== Command: ./client-test Client::Sync::eds_contact::testConversion ==4492== Parent PID: 148 ==4492== ==4492== ==4492== HEAP SUMMARY: ==4492== in use at exit: 2,894,453 bytes in 29,984 blocks ==4492== total heap usage: 321,369 allocs, 291,334 frees, 47,803,373 bytes allocated ==4492== ==4492== LEAK SUMMARY: ==4492== definitely lost: 0 bytes in 0 blocks ==4492== indirectly lost: 0 bytes in 0 blocks ==4492== possibly lost: 960 bytes in 3 blocks ==4492== still reachable: 2,290,855 bytes in 21,386 blocks ==4492== of which reachable via heuristic: ==4492== length64 : 5,072 bytes in 83 blocks ==4492== newarray : 6,312 bytes in 49 blocks ==4492== suppressed: 530,958 bytes in 8,059 blocks ==4492== Reachable blocks (those to which a pointer was found) are not shown. ==4492== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4492== ==4492== For counts of detected and suppressed errors, rerun with: -v ==4492== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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::testConversion ==450== Parent PID: 430 ==450== ==4511== Memcheck, a memory error detector ==4511== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4511== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4511== Command: ./client-test Client::Sync::eds_contact::testConversion ==4511== Parent PID: 4492 ==4511== ==4515== Memcheck, a memory error detector ==4515== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4515== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4515== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSemantic ==4515== Parent PID: 148 ==4515== ==4515== ==4515== HEAP SUMMARY: ==4515== in use at exit: 7,054,567 bytes in 58,181 blocks ==4515== total heap usage: 1,371,535 allocs, 1,313,301 frees, 202,998,649 bytes allocated ==4515== ==4515== LEAK SUMMARY: ==4515== definitely lost: 0 bytes in 0 blocks ==4515== indirectly lost: 0 bytes in 0 blocks ==4515== possibly lost: 960 bytes in 3 blocks ==4515== still reachable: 6,303,794 bytes in 47,991 blocks ==4515== of which reachable via heuristic: ==4515== length64 : 6,000 bytes in 99 blocks ==4515== newarray : 6,392 bytes in 54 blocks ==4515== suppressed: 641,957 bytes in 9,391 blocks ==4515== Reachable blocks (those to which a pointer was found) are not shown. ==4515== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4515== ==4515== For counts of detected and suppressed errors, rerun with: -v ==4515== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==454== Memcheck, a memory error detector ==454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==454== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSemantic ==454== Parent PID: 148 ==454== ==454== ==454== HEAP SUMMARY: ==454== in use at exit: 6,998,928 bytes in 57,845 blocks ==454== total heap usage: 1,389,998 allocs, 1,332,100 frees, 203,329,581 bytes allocated ==454== ==454== LEAK SUMMARY: ==454== definitely lost: 0 bytes in 0 blocks ==454== indirectly lost: 0 bytes in 0 blocks ==454== possibly lost: 960 bytes in 3 blocks ==454== still reachable: 6,234,127 bytes in 48,053 blocks ==454== of which reachable via heuristic: ==454== length64 : 6,024 bytes in 99 blocks ==454== newarray : 6,408 bytes in 55 blocks ==454== suppressed: 675,833 bytes in 9,118 blocks ==454== Reachable blocks (those to which a pointer was found) are not shown. ==454== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==454== ==454== For counts of detected and suppressed errors, rerun with: -v ==454== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4585== Memcheck, a memory error detector ==4585== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4585== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4585== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSemantic ==4585== Parent PID: 148 ==4585== ==4585== ==4585== HEAP SUMMARY: ==4585== in use at exit: 7,051,269 bytes in 58,127 blocks ==4585== total heap usage: 1,712,590 allocs, 1,654,409 frees, 255,122,936 bytes allocated ==4585== ==4585== LEAK SUMMARY: ==4585== definitely lost: 0 bytes in 0 blocks ==4585== indirectly lost: 0 bytes in 0 blocks ==4585== possibly lost: 960 bytes in 3 blocks ==4585== still reachable: 6,302,754 bytes in 47,987 blocks ==4585== of which reachable via heuristic: ==4585== length64 : 6,000 bytes in 99 blocks ==4585== newarray : 6,392 bytes in 54 blocks ==4585== suppressed: 639,699 bytes in 9,341 blocks ==4585== Reachable blocks (those to which a pointer was found) are not shown. ==4585== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4585== ==4585== For counts of detected and suppressed errors, rerun with: -v ==4585== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4669== Memcheck, a memory error detector ==4669== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4669== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4669== Command: ./client-test Client::Sync::eds_contact::testRefreshStatus ==4669== Parent PID: 148 ==4669== ==4669== ==4669== HEAP SUMMARY: ==4669== in use at exit: 7,057,557 bytes in 58,241 blocks ==4669== total heap usage: 1,076,583 allocs, 1,018,290 frees, 154,049,175 bytes allocated ==4669== ==4669== LEAK SUMMARY: ==4669== definitely lost: 0 bytes in 0 blocks ==4669== indirectly lost: 0 bytes in 0 blocks ==4669== possibly lost: 960 bytes in 3 blocks ==4669== still reachable: 6,304,746 bytes in 48,003 blocks ==4669== of which reachable via heuristic: ==4669== length64 : 6,000 bytes in 99 blocks ==4669== newarray : 6,392 bytes in 54 blocks ==4669== suppressed: 643,827 bytes in 9,437 blocks ==4669== Reachable blocks (those to which a pointer was found) are not shown. ==4669== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4669== ==4669== For counts of detected and suppressed errors, rerun with: -v ==4669== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4733== Memcheck, a memory error detector ==4733== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4733== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4733== Command: ./client-test Client::Sync::eds_contact::testTwoWayRestart ==4733== Parent PID: 148 ==4733== ==4733== ==4733== HEAP SUMMARY: ==4733== in use at exit: 7,053,613 bytes in 58,152 blocks ==4733== total heap usage: 1,844,637 allocs, 1,786,431 frees, 271,666,182 bytes allocated ==4733== ==4733== LEAK SUMMARY: ==4733== definitely lost: 0 bytes in 0 blocks ==4733== indirectly lost: 0 bytes in 0 blocks ==4733== possibly lost: 960 bytes in 3 blocks ==4733== still reachable: 6,303,782 bytes in 47,992 blocks ==4733== of which reachable via heuristic: ==4733== length64 : 6,000 bytes in 99 blocks ==4733== newarray : 6,392 bytes in 54 blocks ==4733== suppressed: 641,015 bytes in 9,361 blocks ==4733== Reachable blocks (those to which a pointer was found) are not shown. ==4733== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4733== ==4733== For counts of detected and suppressed errors, rerun with: -v ==4733== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4850== Memcheck, a memory error detector ==4850== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4850== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4850== Command: ./client-test Client::Sync::eds_contact::testSlowRestart ==4850== Parent PID: 148 ==4850== ==4850== ==4850== HEAP SUMMARY: ==4850== in use at exit: 7,053,783 bytes in 58,172 blocks ==4850== total heap usage: 1,851,169 allocs, 1,792,943 frees, 272,460,715 bytes allocated ==4850== ==4850== LEAK SUMMARY: ==4850== definitely lost: 0 bytes in 0 blocks ==4850== indirectly lost: 0 bytes in 0 blocks ==4850== possibly lost: 960 bytes in 3 blocks ==4850== still reachable: 6,303,878 bytes in 47,993 blocks ==4850== of which reachable via heuristic: ==4850== length64 : 6,000 bytes in 99 blocks ==4850== newarray : 6,392 bytes in 54 blocks ==4850== suppressed: 641,089 bytes in 9,380 blocks ==4850== Reachable blocks (those to which a pointer was found) are not shown. ==4850== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4850== ==4850== For counts of detected and suppressed errors, rerun with: -v ==4850== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4967== Memcheck, a memory error detector ==4967== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4967== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4967== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalRestart ==4967== Parent PID: 148 ==4967== ==4967== ==4967== HEAP SUMMARY: ==4967== in use at exit: 7,051,876 bytes in 58,128 blocks ==4967== total heap usage: 1,851,547 allocs, 1,793,365 frees, 272,480,370 bytes allocated ==4967== ==4967== LEAK SUMMARY: ==4967== definitely lost: 0 bytes in 0 blocks ==4967== indirectly lost: 0 bytes in 0 blocks ==4967== possibly lost: 960 bytes in 3 blocks ==4967== still reachable: 6,303,878 bytes in 47,993 blocks ==4967== of which reachable via heuristic: ==4967== length64 : 6,000 bytes in 99 blocks ==4967== newarray : 6,392 bytes in 54 blocks ==4967== suppressed: 639,182 bytes in 9,336 blocks ==4967== Reachable blocks (those to which a pointer was found) are not shown. ==4967== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4967== ==4967== For counts of detected and suppressed errors, rerun with: -v ==4967== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5084== Memcheck, a memory error detector ==5084== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5084== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5084== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocalRestart ==5084== Parent PID: 148 ==5084== ==5084== ==5084== HEAP SUMMARY: ==5084== in use at exit: 7,057,109 bytes in 58,212 blocks ==5084== total heap usage: 1,844,004 allocs, 1,785,738 frees, 271,715,138 bytes allocated ==5084== ==5084== LEAK SUMMARY: ==5084== definitely lost: 0 bytes in 0 blocks ==5084== indirectly lost: 0 bytes in 0 blocks ==5084== possibly lost: 960 bytes in 3 blocks ==5084== still reachable: 6,308,271 bytes in 48,063 blocks ==5084== of which reachable via heuristic: ==5084== length64 : 6,000 bytes in 99 blocks ==5084== newarray : 6,392 bytes in 54 blocks ==5084== suppressed: 640,022 bytes in 9,350 blocks ==5084== Reachable blocks (those to which a pointer was found) are not shown. ==5084== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5084== ==5084== For counts of detected and suppressed errors, rerun with: -v ==5084== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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_contact::testRefreshFromRemoteRestart ==5201== Parent PID: 148 ==5201== ==5201== ==5201== HEAP SUMMARY: ==5201== in use at exit: 7,052,412 bytes in 58,130 blocks ==5201== total heap usage: 1,062,356 allocs, 1,004,174 frees, 155,613,610 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,303,518 bytes in 47,990 blocks ==5201== of which reachable via heuristic: ==5201== length64 : 6,000 bytes in 99 blocks ==5201== newarray : 6,392 bytes in 54 blocks ==5201== suppressed: 640,078 bytes in 9,341 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) ==522== Memcheck, a memory error detector ==522== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==522== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==522== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSemantic ==522== Parent PID: 148 ==522== ==522== ==522== HEAP SUMMARY: ==522== in use at exit: 6,987,831 bytes in 57,684 blocks ==522== total heap usage: 1,735,480 allocs, 1,677,742 frees, 255,538,067 bytes allocated ==522== ==522== LEAK SUMMARY: ==522== definitely lost: 0 bytes in 0 blocks ==522== indirectly lost: 0 bytes in 0 blocks ==522== possibly lost: 960 bytes in 3 blocks ==522== still reachable: 6,227,888 bytes in 47,979 blocks ==522== of which reachable via heuristic: ==522== length64 : 6,024 bytes in 99 blocks ==522== newarray : 6,408 bytes in 55 blocks ==522== suppressed: 670,807 bytes in 9,029 blocks ==522== Reachable blocks (those to which a pointer was found) are not shown. ==522== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==522== ==522== For counts of detected and suppressed errors, rerun with: -v ==522== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5265== Memcheck, a memory error detector ==5265== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5265== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5265== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemoteRestart ==5265== Parent PID: 148 ==5265== ==5265== ==5265== HEAP SUMMARY: ==5265== in use at exit: 7,049,576 bytes in 58,090 blocks ==5265== total heap usage: 1,837,068 allocs, 1,778,924 frees, 271,001,339 bytes allocated ==5265== ==5265== LEAK SUMMARY: ==5265== definitely lost: 0 bytes in 0 blocks ==5265== indirectly lost: 0 bytes in 0 blocks ==5265== possibly lost: 960 bytes in 3 blocks ==5265== still reachable: 6,303,010 bytes in 47,986 blocks ==5265== of which reachable via heuristic: ==5265== length64 : 6,000 bytes in 99 blocks ==5265== newarray : 6,392 bytes in 54 blocks ==5265== suppressed: 637,750 bytes in 9,305 blocks ==5265== Reachable blocks (those to which a pointer was found) are not shown. ==5265== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5265== ==5265== For counts of detected and suppressed errors, rerun with: -v ==5265== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5380== Memcheck, a memory error detector ==5380== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5380== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5380== Command: ./client-test Client::Sync::eds_contact::testManyRestarts ==5380== Parent PID: 148 ==5380== ==5380== ==5380== HEAP SUMMARY: ==5380== in use at exit: 7,055,314 bytes in 58,184 blocks ==5380== total heap usage: 1,583,756 allocs, 1,525,520 frees, 223,302,899 bytes allocated ==5380== ==5380== LEAK SUMMARY: ==5380== definitely lost: 0 bytes in 0 blocks ==5380== indirectly lost: 0 bytes in 0 blocks ==5380== possibly lost: 960 bytes in 3 blocks ==5380== still reachable: 6,306,748 bytes in 48,039 blocks ==5380== of which reachable via heuristic: ==5380== length64 : 6,000 bytes in 99 blocks ==5380== newarray : 6,392 bytes in 54 blocks ==5380== suppressed: 639,750 bytes in 9,346 blocks ==5380== Reachable blocks (those to which a pointer was found) are not shown. ==5380== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5380== ==5380== For counts of detected and suppressed errors, rerun with: -v ==5380== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5527== Memcheck, a memory error detector ==5527== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5527== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5527== Command: ./client-test Client::Sync::eds_contact::testCopy ==5527== Parent PID: 148 ==5527== ==5527== ==5527== HEAP SUMMARY: ==5527== in use at exit: 7,050,747 bytes in 58,102 blocks ==5527== total heap usage: 1,830,673 allocs, 1,772,517 frees, 262,667,420 bytes allocated ==5527== ==5527== LEAK SUMMARY: ==5527== definitely lost: 0 bytes in 0 blocks ==5527== indirectly lost: 0 bytes in 0 blocks ==5527== possibly lost: 960 bytes in 3 blocks ==5527== still reachable: 6,302,998 bytes in 47,988 blocks ==5527== of which reachable via heuristic: ==5527== length64 : 6,000 bytes in 99 blocks ==5527== newarray : 6,392 bytes in 54 blocks ==5527== suppressed: 638,933 bytes in 9,315 blocks ==5527== Reachable blocks (those to which a pointer was found) are not shown. ==5527== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5527== ==5527== For counts of detected and suppressed errors, rerun with: -v ==5527== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5632== Memcheck, a memory error detector ==5632== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5632== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5632== Command: ./client-test Client::Sync::eds_contact::testCopy ==5632== Parent PID: 5527 ==5632== ==5650== Memcheck, a memory error detector ==5650== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5650== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5650== Command: ./client-test Client::Sync::eds_contact::testCopy ==5650== Parent PID: 5527 ==5650== ==5655== Memcheck, a memory error detector ==5655== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5655== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5655== Command: ./client-test Client::Sync::eds_contact::testDelete ==5655== Parent PID: 148 ==5655== ==5655== ==5655== HEAP SUMMARY: ==5655== in use at exit: 7,053,669 bytes in 58,154 blocks ==5655== total heap usage: 2,486,233 allocs, 2,428,023 frees, 364,985,796 bytes allocated ==5655== ==5655== LEAK SUMMARY: ==5655== definitely lost: 0 bytes in 0 blocks ==5655== indirectly lost: 0 bytes in 0 blocks ==5655== possibly lost: 960 bytes in 3 blocks ==5655== still reachable: 6,303,798 bytes in 47,992 blocks ==5655== of which reachable via heuristic: ==5655== length64 : 6,000 bytes in 99 blocks ==5655== newarray : 6,392 bytes in 54 blocks ==5655== suppressed: 641,055 bytes in 9,363 blocks ==5655== Reachable blocks (those to which a pointer was found) are not shown. ==5655== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5655== ==5655== For counts of detected and suppressed errors, rerun with: -v ==5655== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5760== Memcheck, a memory error detector ==5760== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5760== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5760== Command: ./client-test Client::Sync::eds_contact::testDelete ==5760== Parent PID: 5655 ==5760== ==5801== Memcheck, a memory error detector ==5801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5801== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==5801== Parent PID: 148 ==5801== ==5801== ==5801== HEAP SUMMARY: ==5801== in use at exit: 7,055,912 bytes in 58,209 blocks ==5801== total heap usage: 2,102,434 allocs, 2,044,170 frees, 310,437,725 bytes allocated ==5801== ==5801== LEAK SUMMARY: ==5801== definitely lost: 0 bytes in 0 blocks ==5801== indirectly lost: 0 bytes in 0 blocks ==5801== possibly lost: 960 bytes in 3 blocks ==5801== still reachable: 6,304,074 bytes in 47,993 blocks ==5801== of which reachable via heuristic: ==5801== length64 : 6,000 bytes in 99 blocks ==5801== newarray : 6,392 bytes in 54 blocks ==5801== suppressed: 643,022 bytes in 9,417 blocks ==5801== Reachable blocks (those to which a pointer was found) are not shown. ==5801== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5801== ==5801== For counts of detected and suppressed errors, rerun with: -v ==5801== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5912== Memcheck, a memory error detector ==5912== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5912== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5912== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==5912== Parent PID: 5801 ==5912== ==5917== Memcheck, a memory error detector ==5917== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5917== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5917== Command: ./client-test Client::Sync::eds_contact::testManyItems ==5917== Parent PID: 148 ==5917== ==5917== ==5917== HEAP SUMMARY: ==5917== in use at exit: 7,060,164 bytes in 58,266 blocks ==5917== total heap usage: 2,330,167 allocs, 2,271,846 frees, 338,617,608 bytes allocated ==5917== ==5917== LEAK SUMMARY: ==5917== definitely lost: 0 bytes in 0 blocks ==5917== indirectly lost: 0 bytes in 0 blocks ==5917== possibly lost: 960 bytes in 3 blocks ==5917== still reachable: 6,309,341 bytes in 48,087 blocks ==5917== of which reachable via heuristic: ==5917== length64 : 6,000 bytes in 99 blocks ==5917== newarray : 6,392 bytes in 54 blocks ==5917== suppressed: 642,007 bytes in 9,380 blocks ==5917== Reachable blocks (those to which a pointer was found) are not shown. ==5917== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5917== ==5917== For counts of detected and suppressed errors, rerun with: -v ==5917== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6012== Memcheck, a memory error detector ==6012== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6012== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6012== Command: ./client-test Client::Sync::eds_contact::testManyItems ==6012== Parent PID: 5917 ==6012== ==6016== Memcheck, a memory error detector ==6016== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6016== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6016== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==6016== Parent PID: 148 ==6016== ==6016== ==6016== HEAP SUMMARY: ==6016== in use at exit: 7,045,370 bytes in 58,015 blocks ==6016== total heap usage: 3,038,154 allocs, 2,980,082 frees, 429,989,893 bytes allocated ==6016== ==6016== LEAK SUMMARY: ==6016== definitely lost: 0 bytes in 0 blocks ==6016== indirectly lost: 0 bytes in 0 blocks ==6016== possibly lost: 960 bytes in 3 blocks ==6016== still reachable: 6,301,274 bytes in 47,978 blocks ==6016== of which reachable via heuristic: ==6016== length64 : 6,000 bytes in 99 blocks ==6016== newarray : 6,392 bytes in 54 blocks ==6016== suppressed: 635,280 bytes in 9,238 blocks ==6016== Reachable blocks (those to which a pointer was found) are not shown. ==6016== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6016== ==6016== For counts of detected and suppressed errors, rerun with: -v ==6016== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==605== Memcheck, a memory error detector ==605== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==605== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==605== Command: ./client-test Client::Sync::eds_event::testRefreshStatus ==605== Parent PID: 148 ==605== ==605== ==605== HEAP SUMMARY: ==605== in use at exit: 6,999,077 bytes in 57,849 blocks ==605== total heap usage: 1,096,641 allocs, 1,038,740 frees, 154,577,432 bytes allocated ==605== ==605== LEAK SUMMARY: ==605== definitely lost: 0 bytes in 0 blocks ==605== indirectly lost: 0 bytes in 0 blocks ==605== possibly lost: 960 bytes in 3 blocks ==605== still reachable: 6,232,698 bytes in 48,032 blocks ==605== of which reachable via heuristic: ==605== length64 : 6,024 bytes in 99 blocks ==605== newarray : 6,408 bytes in 55 blocks ==605== suppressed: 677,411 bytes in 9,143 blocks ==605== Reachable blocks (those to which a pointer was found) are not shown. ==605== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==605== ==605== For counts of detected and suppressed errors, rerun with: -v ==605== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6111== Memcheck, a memory error detector ==6111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6111== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==6111== Parent PID: 6016 ==6111== ==6145== Memcheck, a memory error detector ==6145== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6145== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6145== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==6145== Parent PID: 148 ==6145== ==6145== ==6145== HEAP SUMMARY: ==6145== in use at exit: 7,058,331 bytes in 58,238 blocks ==6145== total heap usage: 3,436,289 allocs, 3,377,992 frees, 516,216,547 bytes allocated ==6145== ==6145== LEAK SUMMARY: ==6145== definitely lost: 0 bytes in 0 blocks ==6145== indirectly lost: 0 bytes in 0 blocks ==6145== possibly lost: 960 bytes in 3 blocks ==6145== still reachable: 6,309,277 bytes in 48,085 blocks ==6145== of which reachable via heuristic: ==6145== length64 : 6,000 bytes in 99 blocks ==6145== newarray : 6,392 bytes in 54 blocks ==6145== suppressed: 640,238 bytes in 9,354 blocks ==6145== Reachable blocks (those to which a pointer was found) are not shown. ==6145== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6145== ==6145== For counts of detected and suppressed errors, rerun with: -v ==6145== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6250== Memcheck, a memory error detector ==6250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6250== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==6250== Parent PID: 6145 ==6250== ==6321== Memcheck, a memory error detector ==6321== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6321== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6321== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6321== Parent PID: 148 ==6321== ==6321== ==6321== HEAP SUMMARY: ==6321== in use at exit: 7,047,015 bytes in 58,078 blocks ==6321== total heap usage: 2,842,604 allocs, 2,784,469 frees, 418,202,943 bytes allocated ==6321== ==6321== LEAK SUMMARY: ==6321== definitely lost: 0 bytes in 0 blocks ==6321== indirectly lost: 0 bytes in 0 blocks ==6321== possibly lost: 960 bytes in 3 blocks ==6321== still reachable: 6,302,130 bytes in 47,991 blocks ==6321== of which reachable via heuristic: ==6321== length64 : 6,000 bytes in 99 blocks ==6321== newarray : 6,392 bytes in 54 blocks ==6321== suppressed: 635,901 bytes in 9,286 blocks ==6321== Reachable blocks (those to which a pointer was found) are not shown. ==6321== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6321== ==6321== For counts of detected and suppressed errors, rerun with: -v ==6321== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6426== Memcheck, a memory error detector ==6426== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6426== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6426== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6426== Parent PID: 6321 ==6426== ==6444== Memcheck, a memory error detector ==6444== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6444== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6444== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6444== Parent PID: 6321 ==6444== ==6487== Memcheck, a memory error detector ==6487== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6487== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6487== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6487== Parent PID: 148 ==6487== ==6487== ==6487== HEAP SUMMARY: ==6487== in use at exit: 7,059,990 bytes in 58,266 blocks ==6487== total heap usage: 2,587,856 allocs, 2,529,534 frees, 371,529,139 bytes allocated ==6487== ==6487== LEAK SUMMARY: ==6487== definitely lost: 0 bytes in 0 blocks ==6487== indirectly lost: 0 bytes in 0 blocks ==6487== possibly lost: 960 bytes in 3 blocks ==6487== still reachable: 6,309,182 bytes in 48,084 blocks ==6487== of which reachable via heuristic: ==6487== length64 : 6,000 bytes in 99 blocks ==6487== newarray : 6,392 bytes in 54 blocks ==6487== suppressed: 641,992 bytes in 9,383 blocks ==6487== Reachable blocks (those to which a pointer was found) are not shown. ==6487== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6487== ==6487== For counts of detected and suppressed errors, rerun with: -v ==6487== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6592== Memcheck, a memory error detector ==6592== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6592== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6592== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6592== Parent PID: 6487 ==6592== ==6610== Memcheck, a memory error detector ==6610== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6610== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6610== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6610== Parent PID: 6487 ==6610== ==6663== Memcheck, a memory error detector ==6663== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6663== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6663== Command: ./client-test Client::Sync::eds_contact::testUpdate ==6663== Parent PID: 148 ==6663== ==6663== ==6663== HEAP SUMMARY: ==6663== in use at exit: 7,053,766 bytes in 58,158 blocks ==6663== total heap usage: 2,529,812 allocs, 2,471,598 frees, 368,241,131 bytes allocated ==6663== ==6663== LEAK SUMMARY: ==6663== definitely lost: 0 bytes in 0 blocks ==6663== indirectly lost: 0 bytes in 0 blocks ==6663== possibly lost: 960 bytes in 3 blocks ==6663== still reachable: 6,303,714 bytes in 47,989 blocks ==6663== of which reachable via heuristic: ==6663== length64 : 6,000 bytes in 99 blocks ==6663== newarray : 6,392 bytes in 54 blocks ==6663== suppressed: 641,236 bytes in 9,370 blocks ==6663== Reachable blocks (those to which a pointer was found) are not shown. ==6663== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6663== ==6663== For counts of detected and suppressed errors, rerun with: -v ==6663== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==667== Memcheck, a memory error detector ==667== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==667== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==667== Command: ./client-test Client::Sync::eds_event::testTwoWayRestart ==667== Parent PID: 148 ==667== ==667== ==667== HEAP SUMMARY: ==667== in use at exit: 6,997,268 bytes in 57,821 blocks ==667== total heap usage: 1,876,297 allocs, 1,818,422 frees, 272,326,847 bytes allocated ==667== ==667== LEAK SUMMARY: ==667== definitely lost: 0 bytes in 0 blocks ==667== indirectly lost: 0 bytes in 0 blocks ==667== possibly lost: 960 bytes in 3 blocks ==667== still reachable: 6,232,794 bytes in 48,033 blocks ==667== of which reachable via heuristic: ==667== length64 : 6,024 bytes in 99 blocks ==667== newarray : 6,408 bytes in 55 blocks ==667== suppressed: 675,506 bytes in 9,114 blocks ==667== Reachable blocks (those to which a pointer was found) are not shown. ==667== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==667== ==667== For counts of detected and suppressed errors, rerun with: -v ==667== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6768== Memcheck, a memory error detector ==6768== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6768== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6768== Command: ./client-test Client::Sync::eds_contact::testUpdate ==6768== Parent PID: 6663 ==6768== ==6818== Memcheck, a memory error detector ==6818== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6818== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6818== Command: ./client-test Client::Sync::eds_contact::testUpdate ==6818== Parent PID: 6663 ==6818== ==6823== Memcheck, a memory error detector ==6823== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6823== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6823== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==6823== Parent PID: 148 ==6823== ==6823== ==6823== HEAP SUMMARY: ==6823== in use at exit: 7,050,556 bytes in 58,100 blocks ==6823== total heap usage: 2,533,430 allocs, 2,475,274 frees, 368,535,658 bytes allocated ==6823== ==6823== LEAK SUMMARY: ==6823== definitely lost: 0 bytes in 0 blocks ==6823== indirectly lost: 0 bytes in 0 blocks ==6823== possibly lost: 960 bytes in 3 blocks ==6823== still reachable: 6,303,630 bytes in 47,991 blocks ==6823== of which reachable via heuristic: ==6823== length64 : 6,000 bytes in 99 blocks ==6823== newarray : 6,392 bytes in 54 blocks ==6823== suppressed: 638,110 bytes in 9,310 blocks ==6823== Reachable blocks (those to which a pointer was found) are not shown. ==6823== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6823== ==6823== For counts of detected and suppressed errors, rerun with: -v ==6823== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6928== Memcheck, a memory error detector ==6928== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6928== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6928== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==6928== Parent PID: 6823 ==6928== ==6978== Memcheck, a memory error detector ==6978== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6978== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6978== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==6978== Parent PID: 6823 ==6978== ==6983== Memcheck, a memory error detector ==6983== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6983== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6983== Command: ./client-test Client::Sync::eds_contact::testMerge ==6983== Parent PID: 148 ==6983== ==6983== ==6983== HEAP SUMMARY: ==6983== in use at exit: 7,057,054 bytes in 58,210 blocks ==6983== total heap usage: 3,310,873 allocs, 3,252,605 frees, 479,568,570 bytes allocated ==6983== ==6983== LEAK SUMMARY: ==6983== definitely lost: 0 bytes in 0 blocks ==6983== indirectly lost: 0 bytes in 0 blocks ==6983== possibly lost: 960 bytes in 3 blocks ==6983== still reachable: 6,308,287 bytes in 48,063 blocks ==6983== of which reachable via heuristic: ==6983== length64 : 6,000 bytes in 99 blocks ==6983== newarray : 6,392 bytes in 54 blocks ==6983== suppressed: 639,951 bytes in 9,348 blocks ==6983== Reachable blocks (those to which a pointer was found) are not shown. ==6983== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6983== ==6983== For counts of detected and suppressed errors, rerun with: -v ==6983== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7088== Memcheck, a memory error detector ==7088== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7088== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7088== Command: ./client-test Client::Sync::eds_contact::testMerge ==7088== Parent PID: 6983 ==7088== ==7161== Memcheck, a memory error detector ==7161== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7161== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7161== Command: ./client-test Client::Sync::eds_contact::testMerge ==7161== Parent PID: 6983 ==7161== ==7188== Memcheck, a memory error detector ==7188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7188== Command: ./client-test Client::Sync::eds_contact::testMerge ==7188== Parent PID: 6983 ==7188== ==7194== Memcheck, a memory error detector ==7194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7194== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7194== Parent PID: 148 ==7194== ==7194== ==7194== HEAP SUMMARY: ==7194== in use at exit: 7,054,169 bytes in 58,166 blocks ==7194== total heap usage: 2,631,762 allocs, 2,573,541 frees, 364,764,876 bytes allocated ==7194== ==7194== LEAK SUMMARY: ==7194== definitely lost: 0 bytes in 0 blocks ==7194== indirectly lost: 0 bytes in 0 blocks ==7194== possibly lost: 960 bytes in 3 blocks ==7194== still reachable: 6,303,917 bytes in 47,999 blocks ==7194== of which reachable via heuristic: ==7194== length64 : 6,000 bytes in 99 blocks ==7194== newarray : 6,392 bytes in 54 blocks ==7194== suppressed: 641,436 bytes in 9,368 blocks ==7194== Reachable blocks (those to which a pointer was found) are not shown. ==7194== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7194== ==7194== For counts of detected and suppressed errors, rerun with: -v ==7194== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7249== Memcheck, a memory error detector ==7249== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7249== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7249== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7249== Parent PID: 7194 ==7249== ==7311== Memcheck, a memory error detector ==7311== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7311== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7311== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7311== Parent PID: 7194 ==7311== ==7315== Memcheck, a memory error detector ==7315== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7315== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7315== Command: ./client-test Client::Sync::eds_contact::testItems ==7315== Parent PID: 148 ==7315== ==7315== ==7315== HEAP SUMMARY: ==7315== in use at exit: 7,055,107 bytes in 58,185 blocks ==7315== total heap usage: 1,784,807 allocs, 1,726,569 frees, 241,116,024 bytes allocated ==7315== ==7315== LEAK SUMMARY: ==7315== definitely lost: 0 bytes in 0 blocks ==7315== indirectly lost: 0 bytes in 0 blocks ==7315== possibly lost: 960 bytes in 3 blocks ==7315== still reachable: 6,304,973 bytes in 48,004 blocks ==7315== of which reachable via heuristic: ==7315== length64 : 6,000 bytes in 99 blocks ==7315== newarray : 6,392 bytes in 54 blocks ==7315== suppressed: 641,318 bytes in 9,382 blocks ==7315== Reachable blocks (those to which a pointer was found) are not shown. ==7315== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7315== ==7315== For counts of detected and suppressed errors, rerun with: -v ==7315== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7370== Memcheck, a memory error detector ==7370== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7370== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7370== Command: ./client-test Client::Sync::eds_contact::testItems ==7370== Parent PID: 7315 ==7370== ==7412== Memcheck, a memory error detector ==7412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7412== Command: ./client-test Client::Sync::eds_contact::testItems ==7412== Parent PID: 7315 ==7412== ==7417== Memcheck, a memory error detector ==7417== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7417== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7417== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7417== Parent PID: 148 ==7417== ==7417== ==7417== HEAP SUMMARY: ==7417== in use at exit: 7,051,175 bytes in 58,110 blocks ==7417== total heap usage: 1,803,715 allocs, 1,745,552 frees, 240,663,283 bytes allocated ==7417== ==7417== LEAK SUMMARY: ==7417== definitely lost: 0 bytes in 0 blocks ==7417== indirectly lost: 0 bytes in 0 blocks ==7417== possibly lost: 960 bytes in 3 blocks ==7417== still reachable: 6,303,645 bytes in 47,996 blocks ==7417== of which reachable via heuristic: ==7417== length64 : 6,000 bytes in 99 blocks ==7417== newarray : 6,392 bytes in 54 blocks ==7417== suppressed: 638,714 bytes in 9,315 blocks ==7417== Reachable blocks (those to which a pointer was found) are not shown. ==7417== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7417== ==7417== For counts of detected and suppressed errors, rerun with: -v ==7417== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7472== Memcheck, a memory error detector ==7472== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7472== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7472== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7472== Parent PID: 7417 ==7472== ==7514== Memcheck, a memory error detector ==7514== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7514== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7514== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7514== Parent PID: 7417 ==7514== ==7519== Memcheck, a memory error detector ==7519== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7519== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7519== Command: ./client-test Client::Sync::eds_contact::testExtensions ==7519== Parent PID: 148 ==7519== ==7519== ==7519== HEAP SUMMARY: ==7519== in use at exit: 7,054,225 bytes in 58,168 blocks ==7519== total heap usage: 2,774,805 allocs, 2,716,582 frees, 376,614,399 bytes allocated ==7519== ==7519== LEAK SUMMARY: ==7519== definitely lost: 0 bytes in 0 blocks ==7519== indirectly lost: 0 bytes in 0 blocks ==7519== possibly lost: 960 bytes in 3 blocks ==7519== still reachable: 6,304,513 bytes in 48,003 blocks ==7519== of which reachable via heuristic: ==7519== length64 : 6,000 bytes in 99 blocks ==7519== newarray : 6,392 bytes in 54 blocks ==7519== suppressed: 640,896 bytes in 9,366 blocks ==7519== Reachable blocks (those to which a pointer was found) are not shown. ==7519== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7519== ==7519== For counts of detected and suppressed errors, rerun with: -v ==7519== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7575== Memcheck, a memory error detector ==7575== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7575== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7575== Command: ./client-test Client::Sync::eds_contact::testExtensions ==7575== Parent PID: 7519 ==7575== ==7639== Memcheck, a memory error detector ==7639== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7639== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7639== Command: ./client-test Client::Sync::eds_contact::testExtensions ==7639== Parent PID: 7519 ==7639== ==7644== Memcheck, a memory error detector ==7644== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7644== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7644== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==7644== Parent PID: 148 ==7644== ==7644== ==7644== HEAP SUMMARY: ==7644== in use at exit: 7,057,356 bytes in 58,210 blocks ==7644== total heap usage: 1,872,207 allocs, 1,813,944 frees, 274,471,539 bytes allocated ==7644== ==7644== LEAK SUMMARY: ==7644== definitely lost: 0 bytes in 0 blocks ==7644== indirectly lost: 0 bytes in 0 blocks ==7644== possibly lost: 960 bytes in 3 blocks ==7644== still reachable: 6,307,180 bytes in 48,039 blocks ==7644== of which reachable via heuristic: ==7644== length64 : 6,000 bytes in 99 blocks ==7644== newarray : 6,392 bytes in 54 blocks ==7644== suppressed: 641,360 bytes in 9,372 blocks ==7644== Reachable blocks (those to which a pointer was found) are not shown. ==7644== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7644== ==7644== For counts of detected and suppressed errors, rerun with: -v ==7644== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7719== Memcheck, a memory error detector ==7719== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7719== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7719== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==7719== Parent PID: 7644 ==7719== ==7724== Memcheck, a memory error detector ==7724== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7724== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7724== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==7724== Parent PID: 148 ==7724== ==7724== ==7724== HEAP SUMMARY: ==7724== in use at exit: 7,053,990 bytes in 58,156 blocks ==7724== total heap usage: 1,902,016 allocs, 1,843,807 frees, 255,531,539 bytes allocated ==7724== ==7724== LEAK SUMMARY: ==7724== definitely lost: 0 bytes in 0 blocks ==7724== indirectly lost: 0 bytes in 0 blocks ==7724== possibly lost: 960 bytes in 3 blocks ==7724== still reachable: 6,304,310 bytes in 47,993 blocks ==7724== of which reachable via heuristic: ==7724== length64 : 6,000 bytes in 99 blocks ==7724== newarray : 6,392 bytes in 54 blocks ==7724== suppressed: 640,864 bytes in 9,364 blocks ==7724== Reachable blocks (those to which a pointer was found) are not shown. ==7724== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7724== ==7724== For counts of detected and suppressed errors, rerun with: -v ==7724== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==778== Memcheck, a memory error detector ==778== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==778== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==778== Command: ./client-test Client::Sync::eds_event::testSlowRestart ==778== Parent PID: 148 ==778== ==778== ==778== HEAP SUMMARY: ==778== in use at exit: 6,995,599 bytes in 57,791 blocks ==778== total heap usage: 1,882,697 allocs, 1,824,852 frees, 273,117,702 bytes allocated ==778== ==778== LEAK SUMMARY: ==778== definitely lost: 0 bytes in 0 blocks ==778== indirectly lost: 0 bytes in 0 blocks ==778== possibly lost: 960 bytes in 3 blocks ==778== still reachable: 6,229,568 bytes in 47,979 blocks ==778== of which reachable via heuristic: ==778== length64 : 6,024 bytes in 99 blocks ==778== newarray : 6,408 bytes in 55 blocks ==778== suppressed: 677,063 bytes in 9,138 blocks ==778== Reachable blocks (those to which a pointer was found) are not shown. ==778== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==778== ==778== For counts of detected and suppressed errors, rerun with: -v ==778== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7801== Memcheck, a memory error detector ==7801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7801== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==7801== Parent PID: 7724 ==7801== ==7806== Memcheck, a memory error detector ==7806== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7806== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7806== Command: ./client-test Client::Sync::eds_contact::testOneWayFromServer ==7806== Parent PID: 148 ==7806== ==7806== ==7806== HEAP SUMMARY: ==7806== in use at exit: 7,059,183 bytes in 58,240 blocks ==7806== total heap usage: 2,924,786 allocs, 2,866,489 frees, 424,547,917 bytes allocated ==7806== ==7806== LEAK SUMMARY: ==7806== definitely lost: 0 bytes in 0 blocks ==7806== indirectly lost: 0 bytes in 0 blocks ==7806== possibly lost: 960 bytes in 3 blocks ==7806== still reachable: 6,308,703 bytes in 48,063 blocks ==7806== of which reachable via heuristic: ==7806== length64 : 6,000 bytes in 99 blocks ==7806== newarray : 6,392 bytes in 54 blocks ==7806== suppressed: 641,664 bytes in 9,378 blocks ==7806== Reachable blocks (those to which a pointer was found) are not shown. ==7806== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7806== ==7806== For counts of detected and suppressed errors, rerun with: -v ==7806== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7959== Memcheck, a memory error detector ==7959== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7959== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7959== Command: ./client-test Client::Sync::eds_contact::testOneWayFromClient ==7959== Parent PID: 148 ==7959== ==7959== ==7959== HEAP SUMMARY: ==7959== in use at exit: 7,052,872 bytes in 58,168 blocks ==7959== total heap usage: 2,909,591 allocs, 2,851,366 frees, 423,099,004 bytes allocated ==7959== ==7959== LEAK SUMMARY: ==7959== definitely lost: 0 bytes in 0 blocks ==7959== indirectly lost: 0 bytes in 0 blocks ==7959== possibly lost: 960 bytes in 3 blocks ==7959== still reachable: 6,302,970 bytes in 47,991 blocks ==7959== of which reachable via heuristic: ==7959== length64 : 6,000 bytes in 99 blocks ==7959== newarray : 6,392 bytes in 54 blocks ==7959== suppressed: 641,086 bytes in 9,378 blocks ==7959== Reachable blocks (those to which a pointer was found) are not shown. ==7959== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7959== ==7959== For counts of detected and suppressed errors, rerun with: -v ==7959== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8121== Memcheck, a memory error detector ==8121== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8121== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8121== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemote ==8121== Parent PID: 148 ==8121== ==8121== ==8121== HEAP SUMMARY: ==8121== in use at exit: 10,994,367 bytes in 84,355 blocks ==8121== total heap usage: 2,823,522 allocs, 2,739,110 frees, 414,821,238 bytes allocated ==8121== ==8121== LEAK SUMMARY: ==8121== definitely lost: 0 bytes in 0 blocks ==8121== indirectly lost: 0 bytes in 0 blocks ==8121== possibly lost: 528 bytes in 2 blocks ==8121== still reachable: 10,230,278 bytes in 74,063 blocks ==8121== of which reachable via heuristic: ==8121== length64 : 6,000 bytes in 99 blocks ==8121== newarray : 6,392 bytes in 54 blocks ==8121== suppressed: 651,289 bytes in 9,456 blocks ==8121== Reachable blocks (those to which a pointer was found) are not shown. ==8121== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8121== ==8121== For counts of detected and suppressed errors, rerun with: -v ==8121== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==8264== Memcheck, a memory error detector ==8264== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8264== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8264== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocal ==8264== Parent PID: 148 ==8264== ==8264== ==8264== HEAP SUMMARY: ==8264== in use at exit: 10,935,567 bytes in 83,961 blocks ==8264== total heap usage: 657,648 allocs, 573,636 frees, 94,229,831 bytes allocated ==8264== ==8264== LEAK SUMMARY: ==8264== definitely lost: 0 bytes in 0 blocks ==8264== indirectly lost: 0 bytes in 0 blocks ==8264== possibly lost: 528 bytes in 2 blocks ==8264== still reachable: 10,234,711 bytes in 74,134 blocks ==8264== of which reachable via heuristic: ==8264== length64 : 5,896 bytes in 97 blocks ==8264== newarray : 6,376 bytes in 53 blocks ==8264== suppressed: 609,048 bytes in 9,128 blocks ==8264== Reachable blocks (those to which a pointer was found) are not shown. ==8264== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8264== ==8264== For counts of detected and suppressed errors, rerun with: -v ==8264== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==8292== Memcheck, a memory error detector ==8292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8292== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteAllRefresh ==8292== Parent PID: 148 ==8292== ==8292== ==8292== HEAP SUMMARY: ==8292== in use at exit: 11,029,820 bytes in 84,825 blocks ==8292== total heap usage: 824,508 allocs, 739,632 frees, 104,661,943 bytes allocated ==8292== ==8292== LEAK SUMMARY: ==8292== definitely lost: 0 bytes in 0 blocks ==8292== indirectly lost: 0 bytes in 0 blocks ==8292== possibly lost: 960 bytes in 3 blocks ==8292== still reachable: 10,160,340 bytes in 74,119 blocks ==8292== of which reachable via heuristic: ==8292== length64 : 6,624 bytes in 105 blocks ==8292== newarray : 6,440 bytes in 57 blocks ==8292== suppressed: 750,448 bytes in 9,811 blocks ==8292== Reachable blocks (those to which a pointer was found) are not shown. ==8292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8292== ==8292== For counts of detected and suppressed errors, rerun with: -v ==8292== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8361== Memcheck, a memory error detector ==8361== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8361== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8361== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWaySync ==8361== Parent PID: 148 ==8361== ==8361== ==8361== HEAP SUMMARY: ==8361== in use at exit: 10,942,818 bytes in 83,991 blocks ==8361== total heap usage: 659,553 allocs, 575,511 frees, 93,858,157 bytes allocated ==8361== ==8361== LEAK SUMMARY: ==8361== definitely lost: 0 bytes in 0 blocks ==8361== indirectly lost: 0 bytes in 0 blocks ==8361== possibly lost: 960 bytes in 3 blocks ==8361== still reachable: 10,157,202 bytes in 74,066 blocks ==8361== of which reachable via heuristic: ==8361== length64 : 6,144 bytes in 99 blocks ==8361== newarray : 6,408 bytes in 55 blocks ==8361== suppressed: 690,640 bytes in 9,202 blocks ==8361== Reachable blocks (those to which a pointer was found) are not shown. ==8361== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8361== ==8361== For counts of detected and suppressed errors, rerun with: -v ==8361== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8397== Memcheck, a memory error detector ==8397== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8397== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8397== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSync ==8397== Parent PID: 148 ==8397== ==8397== ==8397== HEAP SUMMARY: ==8397== in use at exit: 7,086,085 bytes in 58,605 blocks ==8397== total heap usage: 698,989 allocs, 640,333 frees, 99,597,778 bytes allocated ==8397== ==8397== LEAK SUMMARY: ==8397== definitely lost: 0 bytes in 0 blocks ==8397== indirectly lost: 0 bytes in 0 blocks ==8397== possibly lost: 1,392 bytes in 4 blocks ==8397== still reachable: 6,230,086 bytes in 47,994 blocks ==8397== of which reachable via heuristic: ==8397== length64 : 6,688 bytes in 106 blocks ==8397== newarray : 6,456 bytes in 58 blocks ==8397== suppressed: 740,655 bytes in 9,751 blocks ==8397== Reachable blocks (those to which a pointer was found) are not shown. ==8397== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8397== ==8397== For counts of detected and suppressed errors, rerun with: -v ==8397== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8445== Memcheck, a memory error detector ==8445== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8445== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8445== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSync ==8445== Parent PID: 148 ==8445== ==8445== ==8445== HEAP SUMMARY: ==8445== in use at exit: 7,098,723 bytes in 58,836 blocks ==8445== total heap usage: 712,667 allocs, 653,780 frees, 100,712,480 bytes allocated ==8445== ==8445== LEAK SUMMARY: ==8445== definitely lost: 0 bytes in 0 blocks ==8445== indirectly lost: 0 bytes in 0 blocks ==8445== possibly lost: 1,392 bytes in 4 blocks ==8445== still reachable: 6,240,283 bytes in 48,162 blocks ==8445== of which reachable via heuristic: ==8445== length64 : 6,688 bytes in 106 blocks ==8445== newarray : 6,456 bytes in 58 blocks ==8445== suppressed: 743,096 bytes in 9,814 blocks ==8445== Reachable blocks (those to which a pointer was found) are not shown. ==8445== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8445== ==8445== For counts of detected and suppressed errors, rerun with: -v ==8445== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8494== Memcheck, a memory error detector ==8494== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8494== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8494== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSync ==8494== Parent PID: 148 ==8494== ==8494== ==8494== HEAP SUMMARY: ==8494== in use at exit: 7,089,377 bytes in 58,681 blocks ==8494== total heap usage: 695,594 allocs, 636,862 frees, 99,285,536 bytes allocated ==8494== ==8494== LEAK SUMMARY: ==8494== definitely lost: 0 bytes in 0 blocks ==8494== indirectly lost: 0 bytes in 0 blocks ==8494== possibly lost: 1,392 bytes in 4 blocks ==8494== still reachable: 6,230,626 bytes in 47,997 blocks ==8494== of which reachable via heuristic: ==8494== length64 : 6,688 bytes in 106 blocks ==8494== newarray : 6,456 bytes in 58 blocks ==8494== suppressed: 743,407 bytes in 9,824 blocks ==8494== Reachable blocks (those to which a pointer was found) are not shown. ==8494== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8494== ==8494== For counts of detected and suppressed errors, rerun with: -v ==8494== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8542== Memcheck, a memory error detector ==8542== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8542== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8542== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteSync ==8542== Parent PID: 148 ==8542== ==8542== ==8542== HEAP SUMMARY: ==8542== in use at exit: 7,081,665 bytes in 58,558 blocks ==8542== total heap usage: 714,181 allocs, 655,572 frees, 100,764,789 bytes allocated ==8542== ==8542== LEAK SUMMARY: ==8542== definitely lost: 0 bytes in 0 blocks ==8542== indirectly lost: 0 bytes in 0 blocks ==8542== possibly lost: 1,392 bytes in 4 blocks ==8542== still reachable: 6,228,490 bytes in 47,992 blocks ==8542== of which reachable via heuristic: ==8542== length64 : 6,688 bytes in 106 blocks ==8542== newarray : 6,456 bytes in 58 blocks ==8542== suppressed: 737,663 bytes in 9,704 blocks ==8542== Reachable blocks (those to which a pointer was found) are not shown. ==8542== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8542== ==8542== For counts of detected and suppressed errors, rerun with: -v ==8542== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8590== Memcheck, a memory error detector ==8590== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8590== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8590== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalSync ==8590== Parent PID: 148 ==8590== ==8590== ==8590== HEAP SUMMARY: ==8590== in use at exit: 7,095,321 bytes in 58,764 blocks ==8590== total heap usage: 695,181 allocs, 636,366 frees, 99,271,852 bytes allocated ==8590== ==8590== LEAK SUMMARY: ==8590== definitely lost: 0 bytes in 0 blocks ==8590== indirectly lost: 0 bytes in 0 blocks ==8590== possibly lost: 1,392 bytes in 4 blocks ==8590== still reachable: 6,237,193 bytes in 48,112 blocks ==8590== of which reachable via heuristic: ==8590== length64 : 6,688 bytes in 106 blocks ==8590== newarray : 6,456 bytes in 58 blocks ==8590== suppressed: 742,784 bytes in 9,792 blocks ==8590== Reachable blocks (those to which a pointer was found) are not shown. ==8590== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8590== ==8590== For counts of detected and suppressed errors, rerun with: -v ==8590== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8638== Memcheck, a memory error detector ==8638== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8638== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8638== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==8638== Parent PID: 148 ==8638== ==8638== ==8638== HEAP SUMMARY: ==8638== in use at exit: 2,911,762 bytes in 30,230 blocks ==8638== total heap usage: 403,970 allocs, 373,689 frees, 55,167,911 bytes allocated ==8638== ==8638== LEAK SUMMARY: ==8638== definitely lost: 0 bytes in 0 blocks ==8638== indirectly lost: 0 bytes in 0 blocks ==8638== possibly lost: 1,392 bytes in 4 blocks ==8638== still reachable: 2,216,477 bytes in 21,364 blocks ==8638== of which reachable via heuristic: ==8638== length64 : 5,560 bytes in 88 blocks ==8638== newarray : 6,360 bytes in 52 blocks ==8638== suppressed: 617,901 bytes in 8,286 blocks ==8638== Reachable blocks (those to which a pointer was found) are not shown. ==8638== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8638== ==8638== For counts of detected and suppressed errors, rerun with: -v ==8638== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8671== Memcheck, a memory error detector ==8671== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8671== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8671== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==8671== Parent PID: 8638 ==8671== ==8675== Memcheck, a memory error detector ==8675== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8675== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8675== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==8675== Parent PID: 8638 ==8675== ==8680== Memcheck, a memory error detector ==8680== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8680== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8680== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSemantic ==8680== Parent PID: 148 ==8680== ==8680== ==8680== HEAP SUMMARY: ==8680== in use at exit: 7,098,651 bytes in 58,830 blocks ==8680== total heap usage: 1,584,142 allocs, 1,525,259 frees, 216,001,923 bytes allocated ==8680== ==8680== LEAK SUMMARY: ==8680== definitely lost: 0 bytes in 0 blocks ==8680== indirectly lost: 0 bytes in 0 blocks ==8680== possibly lost: 1,392 bytes in 4 blocks ==8680== still reachable: 6,240,347 bytes in 48,164 blocks ==8680== of which reachable via heuristic: ==8680== length64 : 6,728 bytes in 107 blocks ==8680== newarray : 6,456 bytes in 58 blocks ==8680== suppressed: 742,960 bytes in 9,806 blocks ==8680== Reachable blocks (those to which a pointer was found) are not shown. ==8680== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8680== ==8680== For counts of detected and suppressed errors, rerun with: -v ==8680== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==8800== Memcheck, a memory error detector ==8800== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8800== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8800== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSemantic ==8800== Parent PID: 148 ==8800== ==8800== ==8800== HEAP SUMMARY: ==8800== in use at exit: 7,084,454 bytes in 58,603 blocks ==8800== total heap usage: 1,973,029 allocs, 1,914,372 frees, 271,046,535 bytes allocated ==8800== ==8800== LEAK SUMMARY: ==8800== definitely lost: 0 bytes in 0 blocks ==8800== indirectly lost: 0 bytes in 0 blocks ==8800== possibly lost: 1,392 bytes in 4 blocks ==8800== still reachable: 6,229,566 bytes in 47,997 blocks ==8800== of which reachable via heuristic: ==8800== length64 : 6,728 bytes in 107 blocks ==8800== newarray : 6,456 bytes in 58 blocks ==8800== suppressed: 739,544 bytes in 9,746 blocks ==8800== Reachable blocks (those to which a pointer was found) are not shown. ==8800== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8800== ==8800== For counts of detected and suppressed errors, rerun with: -v ==8800== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==890== Memcheck, a memory error detector ==890== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==890== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==890== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalRestart ==890== Parent PID: 148 ==890== ==890== ==890== HEAP SUMMARY: ==890== in use at exit: 6,987,318 bytes in 57,651 blocks ==890== total heap usage: 1,883,577 allocs, 1,825,872 frees, 273,156,775 bytes allocated ==890== ==890== LEAK SUMMARY: ==890== definitely lost: 0 bytes in 0 blocks ==890== indirectly lost: 0 bytes in 0 blocks ==890== possibly lost: 960 bytes in 3 blocks ==890== still reachable: 6,228,000 bytes in 47,975 blocks ==890== of which reachable via heuristic: ==890== length64 : 6,024 bytes in 99 blocks ==890== newarray : 6,408 bytes in 55 blocks ==890== suppressed: 670,350 bytes in 9,002 blocks ==890== Reachable blocks (those to which a pointer was found) are not shown. ==890== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==890== ==890== For counts of detected and suppressed errors, rerun with: -v ==890== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8942== Memcheck, a memory error detector ==8942== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8942== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8942== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshStatus ==8942== Parent PID: 148 ==8942== ==8942== ==8942== HEAP SUMMARY: ==8942== in use at exit: 7,089,466 bytes in 58,702 blocks ==8942== total heap usage: 1,285,619 allocs, 1,226,865 frees, 167,006,485 bytes allocated ==8942== ==8942== LEAK SUMMARY: ==8942== definitely lost: 0 bytes in 0 blocks ==8942== indirectly lost: 0 bytes in 0 blocks ==8942== possibly lost: 1,392 bytes in 4 blocks ==8942== still reachable: 6,230,562 bytes in 47,999 blocks ==8942== of which reachable via heuristic: ==8942== length64 : 6,728 bytes in 107 blocks ==8942== newarray : 6,456 bytes in 58 blocks ==8942== suppressed: 743,560 bytes in 9,843 blocks ==8942== Reachable blocks (those to which a pointer was found) are not shown. ==8942== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8942== ==8942== For counts of detected and suppressed errors, rerun with: -v ==8942== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9052== Memcheck, a memory error detector ==9052== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9052== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9052== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWayRestart ==9052== Parent PID: 148 ==9052== ==9052== ==9052== HEAP SUMMARY: ==9052== in use at exit: 7,090,302 bytes in 58,688 blocks ==9052== total heap usage: 2,231,907 allocs, 2,173,165 frees, 295,830,539 bytes allocated ==9052== ==9052== LEAK SUMMARY: ==9052== definitely lost: 0 bytes in 0 blocks ==9052== indirectly lost: 0 bytes in 0 blocks ==9052== possibly lost: 1,392 bytes in 4 blocks ==9052== still reachable: 6,234,999 bytes in 48,070 blocks ==9052== of which reachable via heuristic: ==9052== length64 : 6,728 bytes in 107 blocks ==9052== newarray : 6,456 bytes in 58 blocks ==9052== suppressed: 739,959 bytes in 9,758 blocks ==9052== Reachable blocks (those to which a pointer was found) are not shown. ==9052== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9052== ==9052== For counts of detected and suppressed errors, rerun with: -v ==9052== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9256== Memcheck, a memory error detector ==9256== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9256== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9256== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowRestart ==9256== Parent PID: 148 ==9256== ==9256== ==9256== HEAP SUMMARY: ==9256== in use at exit: 7,092,327 bytes in 58,740 blocks ==9256== total heap usage: 2,244,865 allocs, 2,186,071 frees, 297,413,738 bytes allocated ==9256== ==9256== LEAK SUMMARY: ==9256== definitely lost: 0 bytes in 0 blocks ==9256== indirectly lost: 0 bytes in 0 blocks ==9256== possibly lost: 1,392 bytes in 4 blocks ==9256== still reachable: 6,233,764 bytes in 48,050 blocks ==9256== of which reachable via heuristic: ==9256== length64 : 6,728 bytes in 107 blocks ==9256== newarray : 6,456 bytes in 58 blocks ==9256== suppressed: 743,219 bytes in 9,830 blocks ==9256== Reachable blocks (those to which a pointer was found) are not shown. ==9256== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9256== ==9256== For counts of detected and suppressed errors, rerun with: -v ==9256== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9460== Memcheck, a memory error detector ==9460== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9460== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9460== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalRestart ==9460== Parent PID: 148 ==9460== ==9460== ==9460== HEAP SUMMARY: ==9460== in use at exit: 7,084,861 bytes in 58,603 blocks ==9460== total heap usage: 2,245,700 allocs, 2,187,043 frees, 297,450,637 bytes allocated ==9460== ==9460== LEAK SUMMARY: ==9460== definitely lost: 0 bytes in 0 blocks ==9460== indirectly lost: 0 bytes in 0 blocks ==9460== possibly lost: 1,392 bytes in 4 blocks ==9460== still reachable: 6,230,606 bytes in 48,000 blocks ==9460== of which reachable via heuristic: ==9460== length64 : 6,728 bytes in 107 blocks ==9460== newarray : 6,456 bytes in 58 blocks ==9460== suppressed: 738,911 bytes in 9,743 blocks ==9460== Reachable blocks (those to which a pointer was found) are not shown. ==9460== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9460== ==9460== For counts of detected and suppressed errors, rerun with: -v ==9460== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9664== Memcheck, a memory error detector ==9664== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9664== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9664== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocalRestart ==9664== Parent PID: 148 ==9664== ==9664== ==9664== HEAP SUMMARY: ==9664== in use at exit: 7,092,520 bytes in 58,763 blocks ==9664== total heap usage: 2,231,709 allocs, 2,172,892 frees, 295,963,272 bytes allocated ==9664== ==9664== LEAK SUMMARY: ==9664== definitely lost: 0 bytes in 0 blocks ==9664== indirectly lost: 0 bytes in 0 blocks ==9664== possibly lost: 1,392 bytes in 4 blocks ==9664== still reachable: 6,231,610 bytes in 48,012 blocks ==9664== of which reachable via heuristic: ==9664== length64 : 6,728 bytes in 107 blocks ==9664== newarray : 6,456 bytes in 58 blocks ==9664== suppressed: 745,398 bytes in 9,889 blocks ==9664== Reachable blocks (those to which a pointer was found) are not shown. ==9664== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9664== ==9664== For counts of detected and suppressed errors, rerun with: -v ==9664== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9869== Memcheck, a memory error detector ==9869== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9869== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9869== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteRestart ==9869== Parent PID: 148 ==9869== ==9869== ==9869== HEAP SUMMARY: ==9869== in use at exit: 7,095,129 bytes in 58,772 blocks ==9869== total heap usage: 1,248,117 allocs, 1,189,293 frees, 167,078,466 bytes allocated ==9869== ==9869== LEAK SUMMARY: ==9869== definitely lost: 0 bytes in 0 blocks ==9869== indirectly lost: 0 bytes in 0 blocks ==9869== possibly lost: 1,392 bytes in 4 blocks ==9869== still reachable: 6,237,377 bytes in 48,116 blocks ==9869== of which reachable via heuristic: ==9869== length64 : 6,728 bytes in 107 blocks ==9869== newarray : 6,456 bytes in 58 blocks ==9869== suppressed: 742,408 bytes in 9,796 blocks ==9869== Reachable blocks (those to which a pointer was found) are not shown. ==9869== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9869== ==9869== For counts of detected and suppressed errors, rerun with: -v ==9869== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9979== Memcheck, a memory error detector ==9979== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9979== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9979== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemoteRestart ==9979== Parent PID: 148 ==9979== ==9979== ==9979== HEAP SUMMARY: ==9979== in use at exit: 7,092,472 bytes in 58,739 blocks ==9979== total heap usage: 2,216,910 allocs, 2,158,117 frees, 294,530,015 bytes allocated ==9979== ==9979== LEAK SUMMARY: ==9979== definitely lost: 0 bytes in 0 blocks ==9979== indirectly lost: 0 bytes in 0 blocks ==9979== possibly lost: 1,392 bytes in 4 blocks ==9979== still reachable: 6,233,741 bytes in 48,049 blocks ==9979== of which reachable via heuristic: ==9979== length64 : 6,728 bytes in 107 blocks ==9979== newarray : 6,456 bytes in 58 blocks ==9979== suppressed: 743,387 bytes in 9,830 blocks ==9979== Reachable blocks (those to which a pointer was found) are not shown. ==9979== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9979== ==9979== For counts of detected and suppressed errors, rerun with: -v ==9979== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) valgrindcheck: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact: final result 1 wrappercheck-113 line 100: RET=1 wrappercheck-113 line 101: set -e wrappercheck-113 line 107: set +x *** killing and waiting for /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-113 line 108: kill -INT -125 wrappercheck-113 line 108: kill -TERM -125 wrappercheck-113 line 108: kill -TERM 125 wrappercheck-113 line 110: KILL_PID=17904 wrappercheck-113 line 115: set +e wrappercheck-113 line 109: perl -e 'sleep(60); kill(9, -125);' wrappercheck-113 line 116: wait 125 wrappercheck-113 line 117: SUBRET=143 wrappercheck-113 line 118: case $SUBRET in wrappercheck-113 line 118: SUBRET=0 wrappercheck-113 line 120: SUBRET=0 wrappercheck-113 line 121: '[' 17904 ']' wwrappercheck-113 line 122: LC_ALL=C wwrappercheck-113 line 122: kill -KILL 17904 wrappercheck-113 line 122: msg= wrappercheck-113 line 123: echo '' wrappercheck-113 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 17904 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-113 line 127: echo '' wrappercheck-113 line 129: wait 17904 wrappercheck-113 line 131: set -e wrappercheck-113 line 132: '[' 1 = 0 ']' wrappercheck-113 line 136: exit 1 wrappercheck-107 line 100: RET=1 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=17910 wrappercheck-107 line 109: perl -e 'sleep(60); kill(9, -111);' wrappercheck-107 line 115: set +e wrappercheck-107 line 116: wait 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: '[' 17910 ']' wwrappercheck-107 line 122: LC_ALL=C wwrappercheck-107 line 122: kill -KILL 17910 wrappercheck-107 line 122: msg= wrappercheck-107 line 123: grep -q 'No such process' wrappercheck-107 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 17910 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-107 line 127: echo '' wrappercheck-107 line 129: wait 17910 wrappercheck-107 line 131: set -e wrappercheck-107 line 132: '[' 1 = 0 ']' wrappercheck-107 line 136: exit 1 wrappercheck-102 line 100: RET=1 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=17915 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 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 17915 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 17915 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: 17915 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 17915 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 1 = 0 ']' wrappercheck-102 line 136: exit 1 wrappercheck-82 line 100: RET=1 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=17920 wrappercheck-82 line 115: set +e wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 116: wait 84 wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 17920 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 17920 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: 17920 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 17920 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 1 = 0 ']' wrappercheck-82 line 136: exit 1 wrappercheck-26 line 100: RET=1 wrappercheck-26 line 101: set -e wrappercheck-26 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-26 line 108: kill -INT -30 wrappercheck-26 line 108: kill -TERM -30 wrappercheck-26 line 108: kill -TERM 30 wrappercheck-26 line 110: KILL_PID=17925 wrappercheck-26 line 115: set +e wrappercheck-26 line 116: wait 30 wrappercheck-26 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-26 line 117: SUBRET=143 wrappercheck-26 line 118: case $SUBRET in wrappercheck-26 line 118: SUBRET=0 wrappercheck-26 line 120: SUBRET=0 wrappercheck-26 line 121: '[' 17925 ']' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 17925 wrappercheck-26 line 122: msg= wrappercheck-26 line 123: grep -q 'No such process' wrappercheck-26 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 17925 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 17925 wrappercheck-26 line 131: set -e wrappercheck-26 line 132: '[' 1 = 0 ']' wrappercheck-26 line 136: exit 1 wrappercheck-19 line 100: RET=1 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=17930 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: '[' 17930 ']' wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 17930 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: 17930 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 17930 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 1 = 0 ']' wrappercheck-19 line 136: exit 1 dbus-session.sh: program returned 1 dbus-session.sh: final result 1 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.ATRtRFf4CJ Fri Jan 5 21:10:42 2018 UTC (+ 14544.1s / 14816.2s) === cleaning up === Traceback (most recent call last): File "/data/runtests/work/sources/syncevolution/test/resources.py", line 188, in subprocess.check_call(args) File "/usr/lib64/python2.7/subprocess.py", line 186, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command '['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=edsdav', 'CLIENT_TEST_SOURCES=eds_event,eds_contact', 'SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1', 'CLIENT_TEST_ALARM=1200', 'CLIENT_TEST_SIMPLE_UID=1', 'CLIENT_TEST_NUM_ITEMS=10', '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/edsdav', '-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:.:/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.9904', '/data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server', '--debug', 'http://127.0.0.1:9904/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']' returned non-zero exit status 1 Traceback (most recent call last): File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 357, in tryexecution self.execute() File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 995, in execute resources=[self.name]) File "/data/runtests/work/sources/syncevolution/test/runtests.py", line 496, in runCommand raise Exception("%s: failed (return code %d)" % (cmdstr, result>>8)) Exception: /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsdav -- 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=edsdav CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_NUM_ITEMS=10 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/edsdav -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.9904 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9904/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: failed (return code 1)