runtests.py-17086 Fri Jan 5 15:56:20 2018 UTC (+ 1.2s / 1633.1s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/memotoo/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17086 Fri Jan 5 15:56:20 2018 UTC (+ 0.4s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/.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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/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/memotoo/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/memotoo/data runtests.py-17086 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) === starting memotoo === runtests.py-17086 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/39-memotoo, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/39-memotoo runtests.py-17086 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/memotoo (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/memotoo) runtests.py-17086 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/memotoo; 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/memotoo' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/memotoo/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/memotoo/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/memotoo/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r memotoo -- env CLIENT_TEST_MAY_COPY_BACK=1 CLIENT_TEST_NOCHECK_SYNCMODE=1 CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_FAILURES=Client::Sync::.*eds_contact.*::testMerge, CLIENT_TEST_SKIP=Client::Sync::eds_event::testAddBothSides,Client::Sync::eds_event::testAddBothSidesRefresh,Client::Sync::eds_task::testAddBothSides,Client::Sync::eds_task::testAddBothSidesRefresh,Client::Sync::eds_contact::Retry,Client::Sync::eds_contact::Suspend,Client::Sync::eds_event::testRefreshFromClientSync,Client::Sync::eds_event::testRefreshFromClientSemantic,Client::Sync::eds_event::testOneWayFromServer,Client::Sync::eds_event::testDeleteAllRefresh,Client::Sync::eds_event::Retry,Client::Sync::eds_event::Suspend,Client::Sync::eds_task::testRefreshFromClientSync,Client::Sync::eds_task::testRefreshFromClientSemantic,Client::Sync::eds_task::testDeleteAllRefresh,Client::Sync::eds_task::testOneWayFromServer,Client::Sync::eds_task::Retry,Client::Sync::eds_task::Suspend,Client::Sync::eds_memo::testRefreshFromClientSync,Client::Sync::eds_memo::testRefreshFromClientSemantic,Client::Sync::eds_memo::testDeleteAllRefresh,Client::Sync::eds_memo::testOneWayFromServer,Client::Sync::eds_memo::Retry,Client::Sync::eds_memo::Suspend,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testRefreshFromClientSync,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testRefreshFromClientSemantic,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testDeleteAllRefresh,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testOneWayFromServer,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::Retry,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::Suspend,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSync,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSemantic,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromServer,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteAllRefresh,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::Retry,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::Suspend CLIENT_TEST_DELAY=10 CLIENT_TEST_RESEND_TIMEOUT=5 CLIENT_TEST_INTERRUPT_AT=1 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/memotoo -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 memotoo ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['memotoo'] === Fri Jan 5 16:15:23 2018 UTC (+ 1143.0s / 1143.1s) property changed: status = acquired Fri Jan 5 16:15:23 2018 UTC (+ 0.0s / 1143.1s) using jobserver Fri Jan 5 16:15:23 2018 UTC (+ 0.0s / 1143.1s) === allocating 1 job slot(s) === Fri Jan 5 16:15:31 2018 UTC (+ 7.8s / 1150.8s) === 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 memotoo ./syncevolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.3w0MiUeT8v/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 70: set -x wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 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 memotoo ./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=27 wrappercheck-22 line 73: PIDS+=27 wrappercheck-22 line 75: '[' evolution-source-registry.log ']' wrappercheck-22 line 75: '[' '' ']' 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' wrappercheck-22 line 70: set -x wrappercheck-22 line 70: exec wrappercheck-22 line 93: kill -0 27 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 memotoo ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-79 line 16: PIDS= wrappercheck-79 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-79 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-79 line 21: DAEMON_LOG= wrappercheck-79 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-79 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-79 line 25: declare -a BACKGROUND wrappercheck-79 line 26: declare -a ENV wrappercheck-79 line 28: '[' 17 -gt 1 ']' wrappercheck-79 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 31: shift wrappercheck-79 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-79 line 53: shift wrappercheck-79 line 28: '[' 15 -gt 1 ']' wrappercheck-79 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 35: shift wrappercheck-79 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-79 line 53: shift wrappercheck-79 line 28: '[' 13 -gt 1 ']' wrappercheck-79 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-79 line 29: case "$1" in wrappercheck-79 line 50: break wrappercheck-79 line 56: '[' 13 -gt 1 ']' wrappercheck-79 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-79 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-79 line 58: shift wrappercheck-79 line 56: '[' 12 -gt 1 ']' wrappercheck-79 line 56: '[' --keep-running '!=' -- ']' wrappercheck-79 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-79 line 58: shift wrappercheck-79 line 56: '[' 11 -gt 1 ']' wrappercheck-79 line 56: '[' -- '!=' -- ']' wrappercheck-79 line 60: shift wrappercheck-79 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-79 line 62: '[' '' ']' wrappercheck-79 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-79 line 72: BACKGROUND_PID=81 wrappercheck-79 line 73: PIDS+=81 wrappercheck-79 line 70: set -x wrappercheck-79 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-79 line 70: exec wrappercheck-79 line 75: '[' '' ']' wrappercheck-79 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-79 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-79 line 93: kill -0 81 wrappercheck-79 line 94: set +e wrappercheck-79 line 95: '[' '' ']' wrappercheck-79 line 99: set -x wrappercheck-79 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 memotoo ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-99 line 16: PIDS= wrappercheck-99 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-99 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-99 line 21: DAEMON_LOG= wrappercheck-99 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-99 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-99 line 25: declare -a BACKGROUND wrappercheck-99 line 26: declare -a ENV wrappercheck-99 line 28: '[' 9 -gt 1 ']' wrappercheck-99 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-99 line 29: case "$1" in wrappercheck-99 line 31: shift wrappercheck-99 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-99 line 53: shift wrappercheck-99 line 28: '[' 7 -gt 1 ']' wrappercheck-99 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-99 line 29: case "$1" in wrappercheck-99 line 50: break wrappercheck-99 line 56: '[' 7 -gt 1 ']' wrappercheck-99 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-99 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-99 line 58: shift wrappercheck-99 line 56: '[' 6 -gt 1 ']' wrappercheck-99 line 56: '[' --keep-running '!=' -- ']' wrappercheck-99 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-99 line 58: shift wrappercheck-99 line 56: '[' 5 -gt 1 ']' wrappercheck-99 line 56: '[' -- '!=' -- ']' wrappercheck-99 line 60: shift wrappercheck-99 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-99 line 62: '[' '' ']' wrappercheck-99 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-99 line 72: BACKGROUND_PID=101 wrappercheck-99 line 73: PIDS+=101 wrappercheck-99 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-99 line 70: set -x wrappercheck-99 line 75: '[' '' ']' wrappercheck-99 line 70: exec wrappercheck-99 line 84: '[' '' ']' wrappercheck-99 line 93: kill -0 101 wrappercheck-99 line 94: set +e wrappercheck-99 line 95: '[' '' ']' wrappercheck-99 line 99: set -x wrappercheck-99 line 99: env /home/nightly/testing/setup-syncevolution.sh memotoo ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/memotoo/.sync4j/evolution/memotoo_[12]' '/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/memotoo_[12]' '/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-[12]/peers/memotoo_[12]' '/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=memotoo_1@client-test-memotoo-1 ++ credentials memotoo_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--sync-property DeviceId=sc-api-A --sync-property username=syncevolution --sync-property password=ss9dkaft4n --sync-property preventSlowSync=0 --sync-property syncURL=http://www.memotoo.com/syncmldev --sync-property enableWBXML=0 --sync-property loglevel=6' + ./syncevolution --daemon=no --configure --template memotoo --sync-property DeviceId=sc-api-A --sync-property username=syncevolution --sync-property password=ss9dkaft4n --sync-property preventSlowSync=0 --sync-property syncURL=http://www.memotoo.com/syncmldev --sync-property enableWBXML=0 --sync-property loglevel=6 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 memotoo_1@client-test-memotoo-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/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/addressbook /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/calendar /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/todo /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/memo /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-1/peers/memotoo_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 memotoo_1@client-test-memotoo-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 memotoo_1@client-test-memotoo-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 memotoo_1@client-test-memotoo-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 memotoo_1@client-test-memotoo-1 eds_memo + case $TEST in + case $TEST in + case $TEST in + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=memotoo_2@client-test-memotoo-2 ++ credentials memotoo_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--sync-property DeviceId=sc-pim-B --sync-property username=syncevolution --sync-property password=ss9dkaft4n --sync-property preventSlowSync=0 --sync-property syncURL=http://www.memotoo.com/syncmldev --sync-property enableWBXML=0 --sync-property loglevel=6' + ./syncevolution --daemon=no --configure --template memotoo --sync-property DeviceId=sc-pim-B --sync-property username=syncevolution --sync-property password=ss9dkaft4n --sync-property preventSlowSync=0 --sync-property syncURL=http://www.memotoo.com/syncmldev --sync-property enableWBXML=0 --sync-property loglevel=6 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 memotoo_2@client-test-memotoo-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/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/addressbook /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/calendar /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/todo /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/memo /data/runtests/work/testing-amd64/home/memotoo/config/syncevolution/client-test-memotoo-2/peers/memotoo_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 memotoo_2@client-test-memotoo-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 memotoo_2@client-test-memotoo-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 memotoo_2@client-test-memotoo-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 memotoo_2@client-test-memotoo-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ 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 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-99 line 100: RET=0 wrappercheck-99 line 101: set -e wrappercheck-99 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-99 line 108: kill -INT -101 wrappercheck-99 line 108: kill -TERM -101 wrappercheck-99 line 108: kill -TERM 101 wrappercheck-99 line 110: KILL_PID=330 wrappercheck-99 line 109: perl -e 'sleep(60); kill(9, -101);' wrappercheck-99 line 115: set +e wrappercheck-99 line 116: wait 101 wrappercheck-99 line 117: SUBRET=143 wrappercheck-99 line 118: case $SUBRET in wrappercheck-99 line 118: SUBRET=0 wrappercheck-99 line 120: SUBRET=0 wrappercheck-99 line 121: '[' 330 ']' wwrappercheck-99 line 122: LC_ALL=C wwrappercheck-99 line 122: kill -KILL 330 wrappercheck-99 line 122: msg= wrappercheck-99 line 123: echo '' wrappercheck-99 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 330 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-99 line 127: echo '' wrappercheck-99 line 129: wait 330 wrappercheck-99 line 131: set -e wrappercheck-99 line 132: '[' 0 = 0 ']' wrappercheck-99 line 133: RET=0 wrappercheck-99 line 136: exit 0 wrappercheck-79 line 100: RET=0 wrappercheck-79 line 101: set -e wrappercheck-79 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-79 line 108: kill -INT -81 wrappercheck-79 line 108: kill -TERM -81 wrappercheck-79 line 108: kill -TERM 81 wrappercheck-79 line 110: KILL_PID=335 wrappercheck-79 line 115: set +e wrappercheck-79 line 109: perl -e 'sleep(60); kill(9, -81);' wrappercheck-79 line 116: wait 81 wrappercheck-79 line 117: SUBRET=143 wrappercheck-79 line 118: case $SUBRET in wrappercheck-79 line 118: SUBRET=0 wrappercheck-79 line 120: SUBRET=0 wrappercheck-79 line 121: '[' 335 ']' wwrappercheck-79 line 122: LC_ALL=C wwrappercheck-79 line 122: kill -KILL 335 wrappercheck-79 line 122: msg= wrappercheck-79 line 123: echo '' wrappercheck-79 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 335 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-79 line 127: echo '' wrappercheck-79 line 129: wait 335 wrappercheck-79 line 131: set -e wrappercheck-79 line 132: '[' 0 = 0 ']' wrappercheck-79 line 133: RET=0 wrappercheck-79 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 -27 wrappercheck-22 line 108: kill -TERM -27 wrappercheck-22 line 108: kill -TERM 27 wrappercheck-22 line 110: KILL_PID=340 wrappercheck-22 line 115: set +e wrappercheck-22 line 116: wait 27 wrappercheck-22 line 109: perl -e 'sleep(60); kill(9, -27);' 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: '[' 340 ']' wwrappercheck-22 line 122: LC_ALL=C wwrappercheck-22 line 122: kill -KILL 340 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: 340 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-22 line 127: echo '' wrappercheck-22 line 129: wait 340 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=345 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 19 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -19);' wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 345 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 345 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: 345 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 345 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.3w0MiUeT8v Fri Jan 5 16:15:40 2018 UTC (+ 9.2s / 1160.1s) === cleaning up === runtests.py-17086 Fri Jan 5 16:15:40 2018 UTC (+ 1160.1s / 2793.7s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/memotoo; 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/memotoo' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/memotoo/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/memotoo/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/memotoo/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r memotoo -- 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=memotoo CLIENT_TEST_SOURCES=eds_contact,eds_event,eds_task,eds_memo SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_MAY_COPY_BACK=1 CLIENT_TEST_NOCHECK_SYNCMODE=1 CLIENT_TEST_NUM_ITEMS=10 CLIENT_TEST_FAILURES=Client::Sync::.*eds_contact.*::testMerge, CLIENT_TEST_SKIP=Client::Sync::eds_event::testAddBothSides,Client::Sync::eds_event::testAddBothSidesRefresh,Client::Sync::eds_task::testAddBothSides,Client::Sync::eds_task::testAddBothSidesRefresh,Client::Sync::eds_contact::Retry,Client::Sync::eds_contact::Suspend,Client::Sync::eds_event::testRefreshFromClientSync,Client::Sync::eds_event::testRefreshFromClientSemantic,Client::Sync::eds_event::testOneWayFromServer,Client::Sync::eds_event::testDeleteAllRefresh,Client::Sync::eds_event::Retry,Client::Sync::eds_event::Suspend,Client::Sync::eds_task::testRefreshFromClientSync,Client::Sync::eds_task::testRefreshFromClientSemantic,Client::Sync::eds_task::testDeleteAllRefresh,Client::Sync::eds_task::testOneWayFromServer,Client::Sync::eds_task::Retry,Client::Sync::eds_task::Suspend,Client::Sync::eds_memo::testRefreshFromClientSync,Client::Sync::eds_memo::testRefreshFromClientSemantic,Client::Sync::eds_memo::testDeleteAllRefresh,Client::Sync::eds_memo::testOneWayFromServer,Client::Sync::eds_memo::Retry,Client::Sync::eds_memo::Suspend,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testRefreshFromClientSync,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testRefreshFromClientSemantic,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testDeleteAllRefresh,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::testOneWayFromServer,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::Retry,Client::Sync::eds_contact_eds_event_eds_task_eds_memo::Suspend,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSync,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSemantic,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromServer,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteAllRefresh,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::Retry,Client::Sync::eds_event_eds_task_eds_memo_eds_contact::Suspend CLIENT_TEST_DELAY=10 CLIENT_TEST_RESEND_TIMEOUT=5 CLIENT_TEST_INTERRUPT_AT=1 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/memotoo -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/valgrindcheck.sh ./client-test Client::Sync ) Fri Jan 5 16:15:40 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['memotoo'] === Fri Jan 5 16:15:40 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 16:15:40 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 16:15:40 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 16:17:22 2018 UTC (+ 101.6s / 101.6s) === 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/valgrindcheck.sh ./client-test Client::Sync” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.7a7qkwnbR3/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 34 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 32 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 32 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 31 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 30 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 70: set -x wrappercheck-18 line 70: exec wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 28 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 26 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 24 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 22 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 22 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 21 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-85 line 16: PIDS= wrappercheck-85 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-85 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-85 line 21: DAEMON_LOG= wrappercheck-85 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-85 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-85 line 25: declare -a BACKGROUND wrappercheck-85 line 26: declare -a ENV wrappercheck-85 line 28: '[' 19 -gt 1 ']' wrappercheck-85 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-85 line 29: case "$1" in wrappercheck-85 line 31: shift wrappercheck-85 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-85 line 53: shift wrappercheck-85 line 28: '[' 17 -gt 1 ']' wrappercheck-85 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-85 line 29: case "$1" in wrappercheck-85 line 35: shift wrappercheck-85 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-85 line 53: shift wrappercheck-85 line 28: '[' 15 -gt 1 ']' wrappercheck-85 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-85 line 29: case "$1" in wrappercheck-85 line 50: break wrappercheck-85 line 56: '[' 15 -gt 1 ']' wrappercheck-85 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-85 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-85 line 58: shift wrappercheck-85 line 56: '[' 14 -gt 1 ']' wrappercheck-85 line 56: '[' --keep-running '!=' -- ']' wrappercheck-85 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-85 line 58: shift wrappercheck-85 line 56: '[' 13 -gt 1 ']' wrappercheck-85 line 56: '[' -- '!=' -- ']' wrappercheck-85 line 60: shift wrappercheck-85 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-85 line 62: '[' '' ']' wrappercheck-85 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-85 line 72: BACKGROUND_PID=87 wrappercheck-85 line 73: PIDS+=87 wrappercheck-85 line 70: set -x wrappercheck-85 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-85 line 75: '[' '' ']' wrappercheck-85 line 70: exec wrappercheck-85 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-85 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-85 line 93: kill -0 87 wrappercheck-85 line 94: set +e wrappercheck-85 line 95: '[' '' ']' wrappercheck-85 line 99: set -x wrappercheck-85 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-105 line 16: PIDS= wrappercheck-105 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-105 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-105 line 21: DAEMON_LOG= wrappercheck-105 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-105 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-105 line 25: declare -a BACKGROUND wrappercheck-105 line 26: declare -a ENV wrappercheck-105 line 28: '[' 11 -gt 1 ']' wrappercheck-105 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-105 line 29: case "$1" in wrappercheck-105 line 31: shift wrappercheck-105 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-105 line 53: shift wrappercheck-105 line 28: '[' 9 -gt 1 ']' wrappercheck-105 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-105 line 29: case "$1" in wrappercheck-105 line 50: break wrappercheck-105 line 56: '[' 9 -gt 1 ']' wrappercheck-105 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-105 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-105 line 58: shift wrappercheck-105 line 56: '[' 8 -gt 1 ']' wrappercheck-105 line 56: '[' --keep-running '!=' -- ']' wrappercheck-105 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-105 line 58: shift wrappercheck-105 line 56: '[' 7 -gt 1 ']' wrappercheck-105 line 56: '[' -- '!=' -- ']' wrappercheck-105 line 60: shift wrappercheck-105 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-105 line 62: '[' '' ']' wrappercheck-105 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-105 line 72: BACKGROUND_PID=107 wrappercheck-105 line 73: PIDS+=107 wrappercheck-105 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-105 line 75: '[' '' ']' wrappercheck-105 line 84: '[' '' ']' wrappercheck-105 line 93: kill -0 107 wrappercheck-105 line 94: set +e wrappercheck-105 line 95: '[' '' ']' wrappercheck-105 line 99: set -x wrappercheck-105 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync wrappercheck-105 line 70: set -x wrappercheck-105 line 70: exec *** 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/memotoo/valgrind.p109.c%p.out ./client-test Client::Sync Client::Sync::eds_event::testDeleteAllRefresh *** skipped *** Client::Sync::eds_event::testTwoWaySync okay Client::Sync::eds_event::testSlowSync okay Client::Sync::eds_event::testRefreshFromServerSync okay Client::Sync::eds_event::testRefreshFromClientSync *** skipped *** 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 *** skipped *** Client::Sync::eds_event::testRefreshStatus okay Client::Sync::eds_event::testTwoWayRestart okay Client::Sync::eds_event::testCopy okay Client::Sync::eds_event::testDelete okay Client::Sync::eds_event::testAddUpdate okay Client::Sync::eds_event::testManyItems okay Client::Sync::eds_event::testManyDeletes okay Client::Sync::eds_event::testSlowSyncSemantic okay Client::Sync::eds_event::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event::testDeleteBothSides okay Client::Sync::eds_event::testAddBothSides *** skipped *** Client::Sync::eds_event::testAddBothSidesRefresh *** skipped *** 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 *** skipped *** Client::Sync::eds_event::testOneWayFromClient okay Client::Sync::eds_event::testOneWayFromRemote okay Client::Sync::eds_event::testOneWayFromLocal okay Client::Sync::eds_task::testDeleteAllRefresh *** skipped *** Client::Sync::eds_task::testTwoWaySync okay Client::Sync::eds_task::testSlowSync okay Client::Sync::eds_task::testRefreshFromServerSync okay Client::Sync::eds_task::testRefreshFromClientSync *** skipped *** Client::Sync::eds_task::testRefreshFromRemoteSync okay Client::Sync::eds_task::testRefreshFromLocalSync okay Client::Sync::eds_task::testConversion okay Client::Sync::eds_task::testRefreshFromServerSemantic okay Client::Sync::eds_task::testRefreshFromClientSemantic *** skipped *** Client::Sync::eds_task::testRefreshStatus okay Client::Sync::eds_task::testTwoWayRestart okay Client::Sync::eds_task::testCopy okay Client::Sync::eds_task::testDelete okay Client::Sync::eds_task::testAddUpdate okay Client::Sync::eds_task::testManyItems okay Client::Sync::eds_task::testManyDeletes okay Client::Sync::eds_task::testSlowSyncSemantic okay Client::Sync::eds_task::testComplexRefreshFromServerSemantic okay Client::Sync::eds_task::testDeleteBothSides okay Client::Sync::eds_task::testAddBothSides *** skipped *** Client::Sync::eds_task::testAddBothSidesRefresh *** skipped *** Client::Sync::eds_task::testUpdate okay Client::Sync::eds_task::testMerge okay Client::Sync::eds_task::testTwinning okay Client::Sync::eds_task::testItems okay Client::Sync::eds_task::testItemsXML okay Client::Sync::eds_task::testMaxMsg okay Client::Sync::eds_task::testLargeObject okay Client::Sync::eds_task::testOneWayFromServer *** skipped *** Client::Sync::eds_task::testOneWayFromClient okay Client::Sync::eds_task::testOneWayFromRemote okay Client::Sync::eds_task::testOneWayFromLocal okay Client::Sync::eds_memo::testDeleteAllRefresh *** skipped *** Client::Sync::eds_memo::testTwoWaySync okay Client::Sync::eds_memo::testSlowSync okay Client::Sync::eds_memo::testRefreshFromServerSync okay Client::Sync::eds_memo::testRefreshFromClientSync *** skipped *** Client::Sync::eds_memo::testRefreshFromRemoteSync okay Client::Sync::eds_memo::testRefreshFromLocalSync okay Client::Sync::eds_memo::testConversion okay Client::Sync::eds_memo::testRefreshFromServerSemantic okay Client::Sync::eds_memo::testRefreshFromClientSemantic *** skipped *** Client::Sync::eds_memo::testRefreshStatus okay Client::Sync::eds_memo::testTwoWayRestart okay Client::Sync::eds_memo::testCopy okay Client::Sync::eds_memo::testDelete okay Client::Sync::eds_memo::testAddUpdate okay Client::Sync::eds_memo::testManyItems okay Client::Sync::eds_memo::testManyDeletes okay Client::Sync::eds_memo::testSlowSyncSemantic okay Client::Sync::eds_memo::testComplexRefreshFromServerSemantic okay Client::Sync::eds_memo::testDeleteBothSides okay Client::Sync::eds_memo::testUpdate okay Client::Sync::eds_memo::testMerge okay Client::Sync::eds_memo::testTwinning okay Client::Sync::eds_memo::testItems okay Client::Sync::eds_memo::testItemsXML okay Client::Sync::eds_memo::testMaxMsg okay Client::Sync::eds_memo::testLargeObject okay Client::Sync::eds_memo::testOneWayFromServer *** skipped *** Client::Sync::eds_memo::testOneWayFromClient okay Client::Sync::eds_memo::testOneWayFromRemote okay Client::Sync::eds_memo::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::testRefreshStatuscouldn'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_contact::testTwoWayRestart 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 *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Sync::eds_contact::testMerge assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:3956 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_contact::testTwinning okay Client::Sync::eds_contact::testItems okay Client::Sync::eds_contact::testItemsXML okay Client::Sync::eds_contact::testExtensions okay Client::Sync::eds_contact::testMaxMsg okay Client::Sync::eds_contact::testLargeObject okay Client::Sync::eds_contact::testOneWayFromServer okay Client::Sync::eds_contact::testOneWayFromClient okay Client::Sync::eds_contact::testOneWayFromRemote okay Client::Sync::eds_contact::testOneWayFromLocal okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteAllRefresh *** skipped *** Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwoWaySync okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSync okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromServerSync okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSync *** skipped *** Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromRemoteSync okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromLocalSync okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromServerSemantic okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSemantic *** skipped *** Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshStatus okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwoWayRestart okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge *** failure ignored *** ClientTest.cpp:872:Assertion Test name: Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge assertion failed - Expression: !raiseAssert || equal - ClientTest.cpp:872 - ClientTest.cpp:3956 Failures !!! Run: 0 Failure total: 1 Failures: 1 Errors: 0 Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromServer *** skipped *** Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromClient okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromRemote okay Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromLocal okay OKvalgrindcheck (109): './client-test Client::Sync' (114): returned 0 ==10042== Memcheck, a memory error detector ==10042== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10042== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10042== Command: ./client-test Client::Sync::eds_memo::testSlowSyncSemantic ==10042== Parent PID: 9814 ==10042== ==10137== Memcheck, a memory error detector ==10137== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10137== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10137== Command: ./client-test Client::Sync::eds_memo::testComplexRefreshFromServerSemantic ==10137== Parent PID: 114 ==10137== ==10137== ==10137== HEAP SUMMARY: ==10137== in use at exit: 6,993,878 bytes in 57,775 blocks ==10137== total heap usage: 3,619,302 allocs, 3,561,468 frees, 537,876,329 bytes allocated ==10137== ==10137== LEAK SUMMARY: ==10137== definitely lost: 0 bytes in 0 blocks ==10137== indirectly lost: 0 bytes in 0 blocks ==10137== possibly lost: 960 bytes in 3 blocks ==10137== still reachable: 6,230,353 bytes in 47,992 blocks ==10137== of which reachable via heuristic: ==10137== length64 : 6,024 bytes in 99 blocks ==10137== newarray : 6,408 bytes in 55 blocks ==10137== suppressed: 674,389 bytes in 9,107 blocks ==10137== Reachable blocks (those to which a pointer was found) are not shown. ==10137== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10137== ==10137== For counts of detected and suppressed errors, rerun with: -v ==10137== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10365== Memcheck, a memory error detector ==10365== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10365== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10365== Command: ./client-test Client::Sync::eds_memo::testComplexRefreshFromServerSemantic ==10365== Parent PID: 10137 ==10365== ==10390== Memcheck, a memory error detector ==10390== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10390== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10390== Command: ./client-test Client::Sync::eds_memo::testComplexRefreshFromServerSemantic ==10390== Parent PID: 10137 ==10390== ==10457== Memcheck, a memory error detector ==10457== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10457== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10457== Command: ./client-test Client::Sync::eds_memo::testDeleteBothSides ==10457== Parent PID: 114 ==10457== ==10457== ==10457== HEAP SUMMARY: ==10457== in use at exit: 7,000,406 bytes in 57,876 blocks ==10457== total heap usage: 3,382,979 allocs, 3,325,045 frees, 490,984,459 bytes allocated ==10457== ==10457== LEAK SUMMARY: ==10457== definitely lost: 0 bytes in 0 blocks ==10457== indirectly lost: 0 bytes in 0 blocks ==10457== possibly lost: 528 bytes in 2 blocks ==10457== still reachable: 6,234,287 bytes in 48,056 blocks ==10457== of which reachable via heuristic: ==10457== length64 : 6,024 bytes in 99 blocks ==10457== newarray : 6,408 bytes in 55 blocks ==10457== suppressed: 677,583 bytes in 9,147 blocks ==10457== Reachable blocks (those to which a pointer was found) are not shown. ==10457== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10457== ==10457== For counts of detected and suppressed errors, rerun with: -v ==10457== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 71 from 71) ==10685== Memcheck, a memory error detector ==10685== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10685== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10685== Command: ./client-test Client::Sync::eds_memo::testDeleteBothSides ==10685== Parent PID: 10457 ==10685== ==10711== Memcheck, a memory error detector ==10711== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10711== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10711== Command: ./client-test Client::Sync::eds_memo::testDeleteBothSides ==10711== Parent PID: 10457 ==10711== ==1075== Memcheck, a memory error detector ==1075== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1075== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1075== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==1075== Parent PID: 980 ==1075== ==10813== Memcheck, a memory error detector ==10813== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10813== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10813== Command: ./client-test Client::Sync::eds_memo::testUpdate ==10813== Parent PID: 114 ==10813== ==10813== ==10813== HEAP SUMMARY: ==10813== in use at exit: 6,995,148 bytes in 57,790 blocks ==10813== total heap usage: 3,304,175 allocs, 3,246,327 frees, 486,704,863 bytes allocated ==10813== ==10813== LEAK SUMMARY: ==10813== definitely lost: 0 bytes in 0 blocks ==10813== indirectly lost: 0 bytes in 0 blocks ==10813== possibly lost: 528 bytes in 2 blocks ==10813== still reachable: 6,229,793 bytes in 47,982 blocks ==10813== of which reachable via heuristic: ==10813== length64 : 6,024 bytes in 99 blocks ==10813== newarray : 6,408 bytes in 55 blocks ==10813== suppressed: 676,819 bytes in 9,135 blocks ==10813== Reachable blocks (those to which a pointer was found) are not shown. ==10813== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10813== ==10813== For counts of detected and suppressed errors, rerun with: -v ==10813== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 71 from 71) ==11041== Memcheck, a memory error detector ==11041== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11041== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11041== Command: ./client-test Client::Sync::eds_memo::testUpdate ==11041== Parent PID: 10813 ==11041== ==1109== Memcheck, a memory error detector ==1109== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1109== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1109== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1109== Parent PID: 114 ==1109== ==1109== ==1109== HEAP SUMMARY: ==1109== in use at exit: 6,985,447 bytes in 57,632 blocks ==1109== total heap usage: 3,611,888 allocs, 3,554,197 frees, 538,127,208 bytes allocated ==1109== ==1109== LEAK SUMMARY: ==1109== definitely lost: 0 bytes in 0 blocks ==1109== indirectly lost: 0 bytes in 0 blocks ==1109== possibly lost: 960 bytes in 3 blocks ==1109== still reachable: 6,227,600 bytes in 47,977 blocks ==1109== of which reachable via heuristic: ==1109== length64 : 6,024 bytes in 99 blocks ==1109== newarray : 6,408 bytes in 55 blocks ==1109== suppressed: 668,711 bytes in 8,979 blocks ==1109== Reachable blocks (those to which a pointer was found) are not shown. ==1109== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1109== ==1109== For counts of detected and suppressed errors, rerun with: -v ==1109== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11117== Memcheck, a memory error detector ==11117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11117== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11117== Command: ./client-test Client::Sync::eds_memo::testUpdate ==11117== Parent PID: 10813 ==11117== ==11121== Memcheck, a memory error detector ==11121== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11121== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11121== Command: ./client-test Client::Sync::eds_memo::testMerge ==11121== Parent PID: 114 ==11121== ==11121== ==11121== HEAP SUMMARY: ==11121== in use at exit: 6,995,775 bytes in 57,805 blocks ==11121== total heap usage: 4,086,488 allocs, 4,028,623 frees, 599,042,551 bytes allocated ==11121== ==11121== LEAK SUMMARY: ==11121== definitely lost: 0 bytes in 0 blocks ==11121== indirectly lost: 0 bytes in 0 blocks ==11121== possibly lost: 960 bytes in 3 blocks ==11121== still reachable: 6,229,937 bytes in 47,985 blocks ==11121== of which reachable via heuristic: ==11121== length64 : 6,024 bytes in 99 blocks ==11121== newarray : 6,408 bytes in 55 blocks ==11121== suppressed: 676,702 bytes in 9,144 blocks ==11121== Reachable blocks (those to which a pointer was found) are not shown. ==11121== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11121== ==11121== For counts of detected and suppressed errors, rerun with: -v ==11121== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11347== Memcheck, a memory error detector ==11347== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11347== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11347== Command: ./client-test Client::Sync::eds_memo::testMerge ==11347== Parent PID: 11121 ==11347== ==114== Memcheck, a memory error detector ==114== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==114== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==114== Command: ./client-test Client::Sync ==114== Parent PID: 109 ==114== ==114== ==114== HEAP SUMMARY: ==114== in use at exit: 261,616 bytes in 3,723 blocks ==114== total heap usage: 130,935 allocs, 127,212 frees, 20,109,037 bytes allocated ==114== ==114== LEAK SUMMARY: ==114== definitely lost: 0 bytes in 0 blocks ==114== indirectly lost: 0 bytes in 0 blocks ==114== possibly lost: 96 bytes in 1 blocks ==114== still reachable: 44,695 bytes in 277 blocks ==114== of which reachable via heuristic: ==114== newarray : 5,800 bytes in 17 blocks ==114== suppressed: 216,825 bytes in 3,445 blocks ==114== Reachable blocks (those to which a pointer was found) are not shown. ==114== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==114== ==114== For counts of detected and suppressed errors, rerun with: -v ==114== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==11470== Memcheck, a memory error detector ==11470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11470== Command: ./client-test Client::Sync::eds_memo::testMerge ==11470== Parent PID: 11121 ==11470== ==11508== Memcheck, a memory error detector ==11508== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11508== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11508== Command: ./client-test Client::Sync::eds_memo::testMerge ==11508== Parent PID: 11121 ==11508== ==11512== Memcheck, a memory error detector ==11512== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11512== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11512== Command: ./client-test Client::Sync::eds_memo::testTwinning ==11512== Parent PID: 114 ==11512== ==11512== ==11512== HEAP SUMMARY: ==11512== in use at exit: 6,994,270 bytes in 57,790 blocks ==11512== total heap usage: 2,592,918 allocs, 2,535,072 frees, 380,947,827 bytes allocated ==11512== ==11512== LEAK SUMMARY: ==11512== definitely lost: 0 bytes in 0 blocks ==11512== indirectly lost: 0 bytes in 0 blocks ==11512== possibly lost: 960 bytes in 3 blocks ==11512== still reachable: 6,230,417 bytes in 47,990 blocks ==11512== of which reachable via heuristic: ==11512== length64 : 6,024 bytes in 99 blocks ==11512== newarray : 6,408 bytes in 55 blocks ==11512== suppressed: 674,717 bytes in 9,124 blocks ==11512== Reachable blocks (those to which a pointer was found) are not shown. ==11512== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11512== ==11512== For counts of detected and suppressed errors, rerun with: -v ==11512== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11644== Memcheck, a memory error detector ==11644== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11644== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11644== Command: ./client-test Client::Sync::eds_memo::testTwinning ==11644== Parent PID: 11512 ==11644== ==11725== Memcheck, a memory error detector ==11725== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11725== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11725== Command: ./client-test Client::Sync::eds_memo::testTwinning ==11725== Parent PID: 11512 ==11725== ==11729== Memcheck, a memory error detector ==11729== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11729== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11729== Command: ./client-test Client::Sync::eds_memo::testItems ==11729== Parent PID: 114 ==11729== ==11729== ==11729== HEAP SUMMARY: ==11729== in use at exit: 6,996,833 bytes in 57,823 blocks ==11729== total heap usage: 1,942,172 allocs, 1,884,295 frees, 276,371,177 bytes allocated ==11729== ==11729== LEAK SUMMARY: ==11729== definitely lost: 0 bytes in 0 blocks ==11729== indirectly lost: 0 bytes in 0 blocks ==11729== possibly lost: 960 bytes in 3 blocks ==11729== still reachable: 6,230,417 bytes in 47,990 blocks ==11729== of which reachable via heuristic: ==11729== length64 : 6,024 bytes in 99 blocks ==11729== newarray : 6,408 bytes in 55 blocks ==11729== suppressed: 677,280 bytes in 9,157 blocks ==11729== Reachable blocks (those to which a pointer was found) are not shown. ==11729== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11729== ==11729== For counts of detected and suppressed errors, rerun with: -v ==11729== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11861== Memcheck, a memory error detector ==11861== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11861== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11861== Command: ./client-test Client::Sync::eds_memo::testItems ==11861== Parent PID: 11729 ==11861== ==11917== Memcheck, a memory error detector ==11917== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11917== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11917== Command: ./client-test Client::Sync::eds_memo::testItems ==11917== Parent PID: 11729 ==11917== ==11921== Memcheck, a memory error detector ==11921== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11921== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11921== Command: ./client-test Client::Sync::eds_memo::testItemsXML ==11921== Parent PID: 114 ==11921== ==11921== ==11921== HEAP SUMMARY: ==11921== in use at exit: 6,997,995 bytes in 57,869 blocks ==11921== total heap usage: 1,948,078 allocs, 1,890,155 frees, 275,515,810 bytes allocated ==11921== ==11921== LEAK SUMMARY: ==11921== definitely lost: 0 bytes in 0 blocks ==11921== indirectly lost: 0 bytes in 0 blocks ==11921== possibly lost: 960 bytes in 3 blocks ==11921== still reachable: 6,230,393 bytes in 47,994 blocks ==11921== of which reachable via heuristic: ==11921== length64 : 6,024 bytes in 99 blocks ==11921== newarray : 6,408 bytes in 55 blocks ==11921== suppressed: 678,466 bytes in 9,199 blocks ==11921== Reachable blocks (those to which a pointer was found) are not shown. ==11921== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11921== ==11921== For counts of detected and suppressed errors, rerun with: -v ==11921== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12052== Memcheck, a memory error detector ==12052== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12052== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12052== Command: ./client-test Client::Sync::eds_memo::testItemsXML ==12052== Parent PID: 11921 ==12052== ==1206== Memcheck, a memory error detector ==1206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1206== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1206== Parent PID: 1109 ==1206== ==12109== Memcheck, a memory error detector ==12109== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12109== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12109== Command: ./client-test Client::Sync::eds_memo::testItemsXML ==12109== Parent PID: 11921 ==12109== ==12113== Memcheck, a memory error detector ==12113== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12113== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12113== Command: ./client-test Client::Sync::eds_memo::testMaxMsg ==12113== Parent PID: 114 ==12113== ==12113== ==12113== HEAP SUMMARY: ==12113== in use at exit: 6,994,446 bytes in 57,778 blocks ==12113== total heap usage: 2,217,280 allocs, 2,159,448 frees, 336,343,184 bytes allocated ==12113== ==12113== LEAK SUMMARY: ==12113== definitely lost: 0 bytes in 0 blocks ==12113== indirectly lost: 0 bytes in 0 blocks ==12113== possibly lost: 960 bytes in 3 blocks ==12113== still reachable: 6,229,833 bytes in 47,986 blocks ==12113== of which reachable via heuristic: ==12113== length64 : 6,024 bytes in 99 blocks ==12113== newarray : 6,408 bytes in 55 blocks ==12113== suppressed: 675,477 bytes in 9,116 blocks ==12113== Reachable blocks (those to which a pointer was found) are not shown. ==12113== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12113== ==12113== For counts of detected and suppressed errors, rerun with: -v ==12113== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test Client::Sync::eds_event::testDeleteAllRefresh ==122== Parent PID: 114 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 261,624 bytes in 3,725 blocks ==122== total heap usage: 108,173 allocs, 104,448 frees, 15,344,129 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 96 bytes in 1 blocks ==122== still reachable: 44,695 bytes in 277 blocks ==122== of which reachable via heuristic: ==122== newarray : 5,800 bytes in 17 blocks ==122== suppressed: 216,833 bytes in 3,447 blocks ==122== Reachable blocks (those to which a pointer was found) are not shown. ==122== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1222== Memcheck, a memory error detector ==1222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1222== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==1222== Parent PID: 1109 ==1222== ==12255== Memcheck, a memory error detector ==12255== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12255== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12255== Command: ./client-test Client::Sync::eds_memo::testMaxMsg ==12255== Parent PID: 12113 ==12255== ==12260== Memcheck, a memory error detector ==12260== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12260== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12260== Command: ./client-test Client::Sync::eds_memo::testLargeObject ==12260== Parent PID: 114 ==12260== ==12260== ==12260== HEAP SUMMARY: ==12260== in use at exit: 6,996,126 bytes in 57,807 blocks ==12260== total heap usage: 2,513,103 allocs, 2,455,242 frees, 338,802,129 bytes allocated ==12260== ==12260== LEAK SUMMARY: ==12260== definitely lost: 0 bytes in 0 blocks ==12260== indirectly lost: 0 bytes in 0 blocks ==12260== possibly lost: 960 bytes in 3 blocks ==12260== still reachable: 6,230,689 bytes in 47,987 blocks ==12260== of which reachable via heuristic: ==12260== length64 : 6,024 bytes in 99 blocks ==12260== newarray : 6,408 bytes in 55 blocks ==12260== suppressed: 676,469 bytes in 9,146 blocks ==12260== Reachable blocks (those to which a pointer was found) are not shown. ==12260== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12260== ==12260== For counts of detected and suppressed errors, rerun with: -v ==12260== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==123== Memcheck, a memory error detector ==123== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==123== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==123== Command: ./client-test Client::Sync::eds_event::testTwoWaySync ==123== Parent PID: 114 ==123== ==123== ==123== HEAP SUMMARY: ==123== in use at exit: 6,994,015 bytes in 57,775 blocks ==123== total heap usage: 701,339 allocs, 643,513 frees, 103,237,355 bytes allocated ==123== ==123== LEAK SUMMARY: ==123== definitely lost: 0 bytes in 0 blocks ==123== indirectly lost: 0 bytes in 0 blocks ==123== possibly lost: 960 bytes in 3 blocks ==123== still reachable: 6,229,926 bytes in 47,983 blocks ==123== of which reachable via heuristic: ==123== length64 : 5,984 bytes in 98 blocks ==123== newarray : 6,408 bytes in 55 blocks ==123== suppressed: 675,121 bytes in 9,118 blocks ==123== Reachable blocks (those to which a pointer was found) are not shown. ==123== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==123== ==123== For counts of detected and suppressed errors, rerun with: -v ==123== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12402== Memcheck, a memory error detector ==12402== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12402== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12402== Command: ./client-test Client::Sync::eds_memo::testLargeObject ==12402== Parent PID: 12260 ==12402== ==12406== Memcheck, a memory error detector ==12406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12406== Command: ./client-test Client::Sync::eds_memo::testOneWayFromServer ==12406== Parent PID: 114 ==12406== ==12406== ==12406== HEAP SUMMARY: ==12406== in use at exit: 261,656 bytes in 3,725 blocks ==12406== total heap usage: 108,670 allocs, 104,945 frees, 15,482,404 bytes allocated ==12406== ==12406== LEAK SUMMARY: ==12406== definitely lost: 0 bytes in 0 blocks ==12406== indirectly lost: 0 bytes in 0 blocks ==12406== possibly lost: 96 bytes in 1 blocks ==12406== still reachable: 44,695 bytes in 277 blocks ==12406== of which reachable via heuristic: ==12406== newarray : 5,800 bytes in 17 blocks ==12406== suppressed: 216,865 bytes in 3,447 blocks ==12406== Reachable blocks (those to which a pointer was found) are not shown. ==12406== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12406== ==12406== For counts of detected and suppressed errors, rerun with: -v ==12406== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==12407== Memcheck, a memory error detector ==12407== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12407== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12407== Command: ./client-test Client::Sync::eds_memo::testOneWayFromClient ==12407== Parent PID: 114 ==12407== ==12407== ==12407== HEAP SUMMARY: ==12407== in use at exit: 6,992,558 bytes in 57,748 blocks ==12407== total heap usage: 4,023,089 allocs, 3,965,282 frees, 573,010,784 bytes allocated ==12407== ==12407== LEAK SUMMARY: ==12407== definitely lost: 0 bytes in 0 blocks ==12407== indirectly lost: 0 bytes in 0 blocks ==12407== possibly lost: 960 bytes in 3 blocks ==12407== still reachable: 6,229,769 bytes in 47,984 blocks ==12407== of which reachable via heuristic: ==12407== length64 : 6,024 bytes in 99 blocks ==12407== newarray : 6,408 bytes in 55 blocks ==12407== suppressed: 673,653 bytes in 9,088 blocks ==12407== Reachable blocks (those to which a pointer was found) are not shown. ==12407== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12407== ==12407== For counts of detected and suppressed errors, rerun with: -v ==12407== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1249== Memcheck, a memory error detector ==1249== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1249== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1249== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==1249== Parent PID: 114 ==1249== ==1249== ==1249== HEAP SUMMARY: ==1249== in use at exit: 6,998,022 bytes in 57,876 blocks ==1249== total heap usage: 3,370,437 allocs, 3,312,503 frees, 491,064,700 bytes allocated ==1249== ==1249== LEAK SUMMARY: ==1249== definitely lost: 0 bytes in 0 blocks ==1249== indirectly lost: 0 bytes in 0 blocks ==1249== possibly lost: 960 bytes in 3 blocks ==1249== still reachable: 6,230,680 bytes in 47,994 blocks ==1249== of which reachable via heuristic: ==1249== length64 : 6,024 bytes in 99 blocks ==1249== newarray : 6,408 bytes in 55 blocks ==1249== suppressed: 678,374 bytes in 9,208 blocks ==1249== Reachable blocks (those to which a pointer was found) are not shown. ==1249== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1249== ==1249== For counts of detected and suppressed errors, rerun with: -v ==1249== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12782== Memcheck, a memory error detector ==12782== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12782== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12782== Command: ./client-test Client::Sync::eds_memo::testOneWayFromRemote ==12782== Parent PID: 114 ==12782== ==12782== ==12782== HEAP SUMMARY: ==12782== in use at exit: 6,994,319 bytes in 57,792 blocks ==12782== total heap usage: 3,317,094 allocs, 3,259,244 frees, 487,608,784 bytes allocated ==12782== ==12782== LEAK SUMMARY: ==12782== definitely lost: 0 bytes in 0 blocks ==12782== indirectly lost: 0 bytes in 0 blocks ==12782== possibly lost: 960 bytes in 3 blocks ==12782== still reachable: 6,230,577 bytes in 47,993 blocks ==12782== of which reachable via heuristic: ==12782== length64 : 6,024 bytes in 99 blocks ==12782== newarray : 6,408 bytes in 55 blocks ==12782== suppressed: 674,606 bytes in 9,123 blocks ==12782== Reachable blocks (those to which a pointer was found) are not shown. ==12782== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12782== ==12782== For counts of detected and suppressed errors, rerun with: -v ==12782== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13098== Memcheck, a memory error detector ==13098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13098== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13098== Command: ./client-test Client::Sync::eds_memo::testOneWayFromLocal ==13098== Parent PID: 114 ==13098== ==13098== ==13098== HEAP SUMMARY: ==13098== in use at exit: 6,993,308 bytes in 57,762 blocks ==13098== total heap usage: 3,717,860 allocs, 3,660,039 frees, 543,972,932 bytes allocated ==13098== ==13098== LEAK SUMMARY: ==13098== definitely lost: 0 bytes in 0 blocks ==13098== indirectly lost: 0 bytes in 0 blocks ==13098== possibly lost: 960 bytes in 3 blocks ==13098== still reachable: 6,229,729 bytes in 47,980 blocks ==13098== of which reachable via heuristic: ==13098== length64 : 6,024 bytes in 99 blocks ==13098== newarray : 6,408 bytes in 55 blocks ==13098== suppressed: 674,611 bytes in 9,108 blocks ==13098== Reachable blocks (those to which a pointer was found) are not shown. ==13098== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13098== ==13098== For counts of detected and suppressed errors, rerun with: -v ==13098== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1345== Memcheck, a memory error detector ==1345== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1345== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1345== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==1345== Parent PID: 1249 ==1345== ==13471== Memcheck, a memory error detector ==13471== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13471== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13471== Command: ./client-test Client::Sync::eds_contact::testDeleteAllRefresh ==13471== Parent PID: 114 ==13471== ==13471== ==13471== HEAP SUMMARY: ==13471== in use at exit: 7,060,105 bytes in 58,262 blocks ==13471== total heap usage: 1,676,531 allocs, 1,618,216 frees, 235,373,502 bytes allocated ==13471== ==13471== LEAK SUMMARY: ==13471== definitely lost: 0 bytes in 0 blocks ==13471== indirectly lost: 0 bytes in 0 blocks ==13471== possibly lost: 960 bytes in 3 blocks ==13471== still reachable: 6,309,781 bytes in 48,087 blocks ==13471== of which reachable via heuristic: ==13471== length64 : 6,000 bytes in 99 blocks ==13471== newarray : 6,392 bytes in 54 blocks ==13471== suppressed: 641,508 bytes in 9,376 blocks ==13471== Reachable blocks (those to which a pointer was found) are not shown. ==13471== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13471== ==13471== For counts of detected and suppressed errors, rerun with: -v ==13471== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13535== Memcheck, a memory error detector ==13535== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13535== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13535== Command: ./client-test Client::Sync::eds_contact::testTwoWaySync ==13535== Parent PID: 114 ==13535== ==13535== ==13535== HEAP SUMMARY: ==13535== in use at exit: 6,990,158 bytes in 57,706 blocks ==13535== total heap usage: 689,066 allocs, 631,309 frees, 102,468,466 bytes allocated ==13535== ==13535== LEAK SUMMARY: ==13535== definitely lost: 0 bytes in 0 blocks ==13535== indirectly lost: 0 bytes in 0 blocks ==13535== possibly lost: 960 bytes in 3 blocks ==13535== still reachable: 6,304,009 bytes in 47,994 blocks ==13535== of which reachable via heuristic: ==13535== length64 : 5,960 bytes in 98 blocks ==13535== newarray : 6,392 bytes in 54 blocks ==13535== suppressed: 598,029 bytes in 9,048 blocks ==13535== Reachable blocks (those to which a pointer was found) are not shown. ==13535== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13535== ==13535== For counts of detected and suppressed errors, rerun with: -v ==13535== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13557== Memcheck, a memory error detector ==13557== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13557== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13557== Command: ./client-test Client::Sync::eds_contact::testSlowSync ==13557== Parent PID: 114 ==13557== ==13557== ==13557== HEAP SUMMARY: ==13557== in use at exit: 6,992,906 bytes in 57,765 blocks ==13557== total heap usage: 689,066 allocs, 631,250 frees, 102,477,355 bytes allocated ==13557== ==13557== LEAK SUMMARY: ==13557== definitely lost: 0 bytes in 0 blocks ==13557== indirectly lost: 0 bytes in 0 blocks ==13557== possibly lost: 960 bytes in 3 blocks ==13557== still reachable: 6,304,961 bytes in 48,006 blocks ==13557== of which reachable via heuristic: ==13557== length64 : 5,960 bytes in 98 blocks ==13557== newarray : 6,392 bytes in 54 blocks ==13557== suppressed: 599,657 bytes in 9,093 blocks ==13557== Reachable blocks (those to which a pointer was found) are not shown. ==13557== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13557== ==13557== For counts of detected and suppressed errors, rerun with: -v ==13557== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13579== Memcheck, a memory error detector ==13579== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13579== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13579== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSync ==13579== Parent PID: 114 ==13579== ==13579== ==13579== HEAP SUMMARY: ==13579== in use at exit: 6,994,187 bytes in 57,778 blocks ==13579== total heap usage: 689,376 allocs, 631,547 frees, 102,494,934 bytes allocated ==13579== ==13579== LEAK SUMMARY: ==13579== definitely lost: 0 bytes in 0 blocks ==13579== indirectly lost: 0 bytes in 0 blocks ==13579== possibly lost: 960 bytes in 3 blocks ==13579== still reachable: 6,304,481 bytes in 48,001 blocks ==13579== of which reachable via heuristic: ==13579== length64 : 5,960 bytes in 98 blocks ==13579== newarray : 6,392 bytes in 54 blocks ==13579== suppressed: 601,418 bytes in 9,111 blocks ==13579== Reachable blocks (those to which a pointer was found) are not shown. ==13579== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13579== ==13579== For counts of detected and suppressed errors, rerun with: -v ==13579== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13602== Memcheck, a memory error detector ==13602== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13602== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13602== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSync ==13602== Parent PID: 114 ==13602== ==13602== ==13602== HEAP SUMMARY: ==13602== in use at exit: 6,990,423 bytes in 57,708 blocks ==13602== total heap usage: 689,088 allocs, 631,329 frees, 102,481,456 bytes allocated ==13602== ==13602== LEAK SUMMARY: ==13602== definitely lost: 0 bytes in 0 blocks ==13602== indirectly lost: 0 bytes in 0 blocks ==13602== possibly lost: 960 bytes in 3 blocks ==13602== still reachable: 6,304,601 bytes in 48,002 blocks ==13602== of which reachable via heuristic: ==13602== length64 : 5,960 bytes in 98 blocks ==13602== newarray : 6,392 bytes in 54 blocks ==13602== suppressed: 597,534 bytes in 9,040 blocks ==13602== Reachable blocks (those to which a pointer was found) are not shown. ==13602== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13602== ==13602== For counts of detected and suppressed errors, rerun with: -v ==13602== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1361== Memcheck, a memory error detector ==1361== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1361== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1361== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==1361== Parent PID: 1249 ==1361== ==13624== Memcheck, a memory error detector ==13624== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13624== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13624== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteSync ==13624== Parent PID: 114 ==13624== ==13624== ==13624== HEAP SUMMARY: ==13624== in use at exit: 6,981,669 bytes in 57,551 blocks ==13624== total heap usage: 689,815 allocs, 632,213 frees, 102,506,470 bytes allocated ==13624== ==13624== LEAK SUMMARY: ==13624== definitely lost: 0 bytes in 0 blocks ==13624== indirectly lost: 0 bytes in 0 blocks ==13624== possibly lost: 960 bytes in 3 blocks ==13624== still reachable: 6,301,465 bytes in 47,980 blocks ==13624== of which reachable via heuristic: ==13624== length64 : 5,960 bytes in 98 blocks ==13624== newarray : 6,392 bytes in 54 blocks ==13624== suppressed: 592,084 bytes in 8,907 blocks ==13624== Reachable blocks (those to which a pointer was found) are not shown. ==13624== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13624== ==13624== For counts of detected and suppressed errors, rerun with: -v ==13624== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13646== Memcheck, a memory error detector ==13646== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13646== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13646== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalSync ==13646== Parent PID: 114 ==13646== ==13646== ==13646== HEAP SUMMARY: ==13646== in use at exit: 6,990,566 bytes in 57,709 blocks ==13646== total heap usage: 689,307 allocs, 631,547 frees, 102,491,037 bytes allocated ==13646== ==13646== LEAK SUMMARY: ==13646== definitely lost: 0 bytes in 0 blocks ==13646== indirectly lost: 0 bytes in 0 blocks ==13646== possibly lost: 960 bytes in 3 blocks ==13646== still reachable: 6,303,393 bytes in 47,991 blocks ==13646== of which reachable via heuristic: ==13646== length64 : 5,960 bytes in 98 blocks ==13646== newarray : 6,392 bytes in 54 blocks ==13646== suppressed: 599,053 bytes in 9,054 blocks ==13646== Reachable blocks (those to which a pointer was found) are not shown. ==13646== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13646== ==13646== For counts of detected and suppressed errors, rerun with: -v ==13646== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13668== Memcheck, a memory error detector ==13668== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13668== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13668== Command: ./client-test Client::Sync::eds_contact::testConversion ==13668== Parent PID: 114 ==13668== ==13668== ==13668== HEAP SUMMARY: ==13668== in use at exit: 2,895,699 bytes in 29,998 blocks ==13668== total heap usage: 376,913 allocs, 346,864 frees, 53,868,165 bytes allocated ==13668== ==13668== LEAK SUMMARY: ==13668== definitely lost: 0 bytes in 0 blocks ==13668== indirectly lost: 0 bytes in 0 blocks ==13668== possibly lost: 960 bytes in 3 blocks ==13668== still reachable: 2,291,140 bytes in 21,382 blocks ==13668== of which reachable via heuristic: ==13668== length64 : 5,072 bytes in 83 blocks ==13668== newarray : 6,312 bytes in 49 blocks ==13668== suppressed: 532,087 bytes in 8,079 blocks ==13668== Reachable blocks (those to which a pointer was found) are not shown. ==13668== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13668== ==13668== For counts of detected and suppressed errors, rerun with: -v ==13668== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13687== Memcheck, a memory error detector ==13687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13687== Command: ./client-test Client::Sync::eds_contact::testConversion ==13687== Parent PID: 13668 ==13687== ==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_contact::testRefreshFromServerSemantic ==13691== Parent PID: 114 ==13691== ==13691== ==13691== HEAP SUMMARY: ==13691== in use at exit: 7,054,966 bytes in 58,196 blocks ==13691== total heap usage: 1,770,092 allocs, 1,711,842 frees, 265,946,125 bytes allocated ==13691== ==13691== LEAK SUMMARY: ==13691== definitely lost: 0 bytes in 0 blocks ==13691== indirectly lost: 0 bytes in 0 blocks ==13691== possibly lost: 960 bytes in 3 blocks ==13691== still reachable: 6,304,217 bytes in 47,999 blocks ==13691== of which reachable via heuristic: ==13691== length64 : 6,000 bytes in 99 blocks ==13691== newarray : 6,392 bytes in 54 blocks ==13691== suppressed: 641,765 bytes in 9,396 blocks ==13691== Reachable blocks (those to which a pointer was found) are not shown. ==13691== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13691== ==13691== For counts of detected and suppressed errors, rerun with: -v ==13691== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13753== Memcheck, a memory error detector ==13753== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13753== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13753== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSemantic ==13753== Parent PID: 114 ==13753== ==13753== ==13753== HEAP SUMMARY: ==13753== in use at exit: 7,053,365 bytes in 58,154 blocks ==13753== total heap usage: 2,107,108 allocs, 2,048,899 frees, 319,042,921 bytes allocated ==13753== ==13753== LEAK SUMMARY: ==13753== definitely lost: 0 bytes in 0 blocks ==13753== indirectly lost: 0 bytes in 0 blocks ==13753== possibly lost: 960 bytes in 3 blocks ==13753== still reachable: 6,305,594 bytes in 48,021 blocks ==13753== of which reachable via heuristic: ==13753== length64 : 6,000 bytes in 99 blocks ==13753== newarray : 6,392 bytes in 54 blocks ==13753== suppressed: 638,955 bytes in 9,334 blocks ==13753== Reachable blocks (those to which a pointer was found) are not shown. ==13753== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13753== ==13753== For counts of detected and suppressed errors, rerun with: -v ==13753== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13825== Memcheck, a memory error detector ==13825== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13825== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13825== Command: ./client-test Client::Sync::eds_contact::testRefreshStatus ==13825== Parent PID: 114 ==13825== ==13825== ==13825== HEAP SUMMARY: ==13825== in use at exit: 7,055,118 bytes in 58,187 blocks ==13825== total heap usage: 1,125,883 allocs, 1,067,644 frees, 162,079,124 bytes allocated ==13825== ==13825== LEAK SUMMARY: ==13825== definitely lost: 0 bytes in 0 blocks ==13825== indirectly lost: 0 bytes in 0 blocks ==13825== possibly lost: 960 bytes in 3 blocks ==13825== still reachable: 6,304,345 bytes in 47,998 blocks ==13825== of which reachable via heuristic: ==13825== length64 : 6,000 bytes in 99 blocks ==13825== newarray : 6,392 bytes in 54 blocks ==13825== suppressed: 641,789 bytes in 9,388 blocks ==13825== Reachable blocks (those to which a pointer was found) are not shown. ==13825== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13825== ==13825== For counts of detected and suppressed errors, rerun with: -v ==13825== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13878== Memcheck, a memory error detector ==13878== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13878== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13878== Command: ./client-test Client::Sync::eds_contact::testTwoWayRestart ==13878== Parent PID: 114 ==13878== ==13878== ==13878== HEAP SUMMARY: ==13878== in use at exit: 7,051,648 bytes in 58,127 blocks ==13878== total heap usage: 1,463,620 allocs, 1,405,440 frees, 215,211,039 bytes allocated ==13878== ==13878== LEAK SUMMARY: ==13878== definitely lost: 0 bytes in 0 blocks ==13878== indirectly lost: 0 bytes in 0 blocks ==13878== possibly lost: 960 bytes in 3 blocks ==13878== still reachable: 6,303,997 bytes in 47,995 blocks ==13878== of which reachable via heuristic: ==13878== length64 : 6,000 bytes in 99 blocks ==13878== newarray : 6,392 bytes in 54 blocks ==13878== suppressed: 638,835 bytes in 9,333 blocks ==13878== Reachable blocks (those to which a pointer was found) are not shown. ==13878== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13878== ==13878== For counts of detected and suppressed errors, rerun with: -v ==13878== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==13938== Memcheck, a memory error detector ==13938== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13938== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13938== Command: ./client-test Client::Sync::eds_contact::testCopy ==13938== Parent PID: 114 ==13938== ==13938== ==13938== HEAP SUMMARY: ==13938== in use at exit: 7,056,804 bytes in 58,221 blocks ==13938== total heap usage: 2,570,930 allocs, 2,512,653 frees, 380,116,197 bytes allocated ==13938== ==13938== LEAK SUMMARY: ==13938== definitely lost: 0 bytes in 0 blocks ==13938== indirectly lost: 0 bytes in 0 blocks ==13938== possibly lost: 960 bytes in 3 blocks ==13938== still reachable: 6,306,892 bytes in 48,042 blocks ==13938== of which reachable via heuristic: ==13938== length64 : 6,000 bytes in 99 blocks ==13938== newarray : 6,392 bytes in 54 blocks ==13938== suppressed: 641,096 bytes in 9,380 blocks ==13938== Reachable blocks (those to which a pointer was found) are not shown. ==13938== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13938== ==13938== For counts of detected and suppressed errors, rerun with: -v ==13938== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1399== Memcheck, a memory error detector ==1399== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1399== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1399== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==1399== Parent PID: 114 ==1399== ==1399== ==1399== HEAP SUMMARY: ==1399== in use at exit: 261,672 bytes in 3,725 blocks ==1399== total heap usage: 108,278 allocs, 104,553 frees, 15,432,568 bytes allocated ==1399== ==1399== LEAK SUMMARY: ==1399== definitely lost: 0 bytes in 0 blocks ==1399== indirectly lost: 0 bytes in 0 blocks ==1399== possibly lost: 96 bytes in 1 blocks ==1399== still reachable: 44,695 bytes in 277 blocks ==1399== of which reachable via heuristic: ==1399== newarray : 5,800 bytes in 17 blocks ==1399== suppressed: 216,881 bytes in 3,447 blocks ==1399== Reachable blocks (those to which a pointer was found) are not shown. ==1399== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1399== ==1399== For counts of detected and suppressed errors, rerun with: -v ==1399== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1400== Memcheck, a memory error detector ==1400== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1400== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1400== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==1400== Parent PID: 114 ==1400== ==1400== ==1400== HEAP SUMMARY: ==1400== in use at exit: 261,664 bytes in 3,725 blocks ==1400== total heap usage: 108,279 allocs, 104,554 frees, 15,432,652 bytes allocated ==1400== ==1400== LEAK SUMMARY: ==1400== definitely lost: 0 bytes in 0 blocks ==1400== indirectly lost: 0 bytes in 0 blocks ==1400== possibly lost: 96 bytes in 1 blocks ==1400== still reachable: 44,695 bytes in 277 blocks ==1400== of which reachable via heuristic: ==1400== newarray : 5,800 bytes in 17 blocks ==1400== suppressed: 216,873 bytes in 3,447 blocks ==1400== Reachable blocks (those to which a pointer was found) are not shown. ==1400== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1400== ==1400== For counts of detected and suppressed errors, rerun with: -v ==1400== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1401== Memcheck, a memory error detector ==1401== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1401== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1401== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==1401== Parent PID: 114 ==1401== ==1401== ==1401== HEAP SUMMARY: ==1401== in use at exit: 6,992,468 bytes in 57,744 blocks ==1401== total heap usage: 2,901,936 allocs, 2,844,135 frees, 431,340,140 bytes allocated ==1401== ==1401== LEAK SUMMARY: ==1401== definitely lost: 0 bytes in 0 blocks ==1401== indirectly lost: 0 bytes in 0 blocks ==1401== possibly lost: 960 bytes in 3 blocks ==1401== still reachable: 6,229,936 bytes in 47,989 blocks ==1401== of which reachable via heuristic: ==1401== length64 : 6,024 bytes in 99 blocks ==1401== newarray : 6,408 bytes in 55 blocks ==1401== suppressed: 673,396 bytes in 9,079 blocks ==1401== Reachable blocks (those to which a pointer was found) are not shown. ==1401== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1401== ==1401== For counts of detected and suppressed errors, rerun with: -v ==1401== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14037== Memcheck, a memory error detector ==14037== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14037== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14037== Command: ./client-test Client::Sync::eds_contact::testCopy ==14037== Parent PID: 13938 ==14037== ==14055== Memcheck, a memory error detector ==14055== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14055== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14055== Command: ./client-test Client::Sync::eds_contact::testCopy ==14055== Parent PID: 13938 ==14055== ==14059== Memcheck, a memory error detector ==14059== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14059== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14059== Command: ./client-test Client::Sync::eds_contact::testDelete ==14059== Parent PID: 114 ==14059== ==14059== ==14059== HEAP SUMMARY: ==14059== in use at exit: 7,055,238 bytes in 58,183 blocks ==14059== total heap usage: 3,226,707 allocs, 3,168,466 frees, 485,273,130 bytes allocated ==14059== ==14059== LEAK SUMMARY: ==14059== definitely lost: 0 bytes in 0 blocks ==14059== indirectly lost: 0 bytes in 0 blocks ==14059== possibly lost: 960 bytes in 3 blocks ==14059== still reachable: 6,305,354 bytes in 48,017 blocks ==14059== of which reachable via heuristic: ==14059== length64 : 6,000 bytes in 99 blocks ==14059== newarray : 6,392 bytes in 54 blocks ==14059== suppressed: 641,068 bytes in 9,367 blocks ==14059== Reachable blocks (those to which a pointer was found) are not shown. ==14059== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14059== ==14059== For counts of detected and suppressed errors, rerun with: -v ==14059== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14159== Memcheck, a memory error detector ==14159== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14159== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14159== Command: ./client-test Client::Sync::eds_contact::testDelete ==14159== Parent PID: 14059 ==14159== ==14187== Memcheck, a memory error detector ==14187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14187== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==14187== Parent PID: 114 ==14187== ==14187== ==14187== HEAP SUMMARY: ==14187== in use at exit: 7,055,088 bytes in 58,183 blocks ==14187== total heap usage: 2,488,002 allocs, 2,429,763 frees, 375,040,523 bytes allocated ==14187== ==14187== LEAK SUMMARY: ==14187== definitely lost: 0 bytes in 0 blocks ==14187== indirectly lost: 0 bytes in 0 blocks ==14187== possibly lost: 960 bytes in 3 blocks ==14187== still reachable: 6,306,885 bytes in 48,041 blocks ==14187== of which reachable via heuristic: ==14187== length64 : 6,000 bytes in 99 blocks ==14187== newarray : 6,392 bytes in 54 blocks ==14187== suppressed: 639,387 bytes in 9,343 blocks ==14187== Reachable blocks (those to which a pointer was found) are not shown. ==14187== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14187== ==14187== For counts of detected and suppressed errors, rerun with: -v ==14187== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14277== Memcheck, a memory error detector ==14277== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14277== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14277== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==14277== Parent PID: 14187 ==14277== ==14282== Memcheck, a memory error detector ==14282== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14282== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14282== Command: ./client-test Client::Sync::eds_contact::testManyItems ==14282== Parent PID: 114 ==14282== ==14282== ==14282== HEAP SUMMARY: ==14282== in use at exit: 7,054,109 bytes in 58,170 blocks ==14282== total heap usage: 2,745,834 allocs, 2,687,608 frees, 407,202,048 bytes allocated ==14282== ==14282== LEAK SUMMARY: ==14282== definitely lost: 0 bytes in 0 blocks ==14282== indirectly lost: 0 bytes in 0 blocks ==14282== possibly lost: 960 bytes in 3 blocks ==14282== still reachable: 6,304,138 bytes in 47,997 blocks ==14282== of which reachable via heuristic: ==14282== length64 : 6,000 bytes in 99 blocks ==14282== newarray : 6,392 bytes in 54 blocks ==14282== suppressed: 640,987 bytes in 9,372 blocks ==14282== Reachable blocks (those to which a pointer was found) are not shown. ==14282== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14282== ==14282== For counts of detected and suppressed errors, rerun with: -v ==14282== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14359== Memcheck, a memory error detector ==14359== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14359== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14359== Command: ./client-test Client::Sync::eds_contact::testManyItems ==14359== Parent PID: 14282 ==14359== ==14363== Memcheck, a memory error detector ==14363== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14363== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14363== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==14363== Parent PID: 114 ==14363== ==14363== ==14363== HEAP SUMMARY: ==14363== in use at exit: 7,056,030 bytes in 58,223 blocks ==14363== total heap usage: 3,548,437 allocs, 3,490,156 frees, 506,649,941 bytes allocated ==14363== ==14363== LEAK SUMMARY: ==14363== definitely lost: 0 bytes in 0 blocks ==14363== indirectly lost: 0 bytes in 0 blocks ==14363== possibly lost: 960 bytes in 3 blocks ==14363== still reachable: 6,304,130 bytes in 47,997 blocks ==14363== of which reachable via heuristic: ==14363== length64 : 6,000 bytes in 99 blocks ==14363== newarray : 6,392 bytes in 54 blocks ==14363== suppressed: 643,084 bytes in 9,427 blocks ==14363== Reachable blocks (those to which a pointer was found) are not shown. ==14363== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14363== ==14363== For counts of detected and suppressed errors, rerun with: -v ==14363== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14441== Memcheck, a memory error detector ==14441== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14441== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14441== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==14441== Parent PID: 14363 ==14441== ==14463== Memcheck, a memory error detector ==14463== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14463== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14463== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==14463== Parent PID: 114 ==14463== ==14463== ==14463== HEAP SUMMARY: ==14463== in use at exit: 7,052,636 bytes in 58,155 blocks ==14463== total heap usage: 4,163,493 allocs, 4,105,277 frees, 639,470,085 bytes allocated ==14463== ==14463== LEAK SUMMARY: ==14463== definitely lost: 0 bytes in 0 blocks ==14463== indirectly lost: 0 bytes in 0 blocks ==14463== possibly lost: 960 bytes in 3 blocks ==14463== still reachable: 6,304,618 bytes in 48,002 blocks ==14463== of which reachable via heuristic: ==14463== length64 : 6,000 bytes in 99 blocks ==14463== newarray : 6,392 bytes in 54 blocks ==14463== suppressed: 639,034 bytes in 9,352 blocks ==14463== Reachable blocks (those to which a pointer was found) are not shown. ==14463== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14463== ==14463== For counts of detected and suppressed errors, rerun with: -v ==14463== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14562== Memcheck, a memory error detector ==14562== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14562== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14562== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==14562== Parent PID: 14463 ==14562== ==14598== Memcheck, a memory error detector ==14598== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14598== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14598== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==14598== Parent PID: 114 ==14598== ==14598== ==14598== HEAP SUMMARY: ==14598== in use at exit: 7,057,511 bytes in 58,226 blocks ==14598== total heap usage: 3,569,155 allocs, 3,510,870 frees, 538,340,439 bytes allocated ==14598== ==14598== LEAK SUMMARY: ==14598== definitely lost: 0 bytes in 0 blocks ==14598== indirectly lost: 0 bytes in 0 blocks ==14598== possibly lost: 960 bytes in 3 blocks ==14598== still reachable: 6,308,737 bytes in 48,072 blocks ==14598== of which reachable via heuristic: ==14598== length64 : 6,000 bytes in 99 blocks ==14598== newarray : 6,392 bytes in 54 blocks ==14598== suppressed: 639,790 bytes in 9,353 blocks ==14598== Reachable blocks (those to which a pointer was found) are not shown. ==14598== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14598== ==14598== For counts of detected and suppressed errors, rerun with: -v ==14598== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14697== Memcheck, a memory error detector ==14697== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14697== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14697== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==14697== Parent PID: 14598 ==14697== ==14715== Memcheck, a memory error detector ==14715== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14715== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14715== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==14715== Parent PID: 14598 ==14715== ==14741== Memcheck, a memory error detector ==14741== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14741== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14741== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==14741== Parent PID: 114 ==14741== ==14741== ==14741== HEAP SUMMARY: ==14741== in use at exit: 7,055,677 bytes in 58,208 blocks ==14741== total heap usage: 3,317,332 allocs, 3,259,066 frees, 490,591,461 bytes allocated ==14741== ==14741== LEAK SUMMARY: ==14741== definitely lost: 0 bytes in 0 blocks ==14741== indirectly lost: 0 bytes in 0 blocks ==14741== possibly lost: 960 bytes in 3 blocks ==14741== still reachable: 6,304,194 bytes in 47,995 blocks ==14741== of which reachable via heuristic: ==14741== length64 : 6,000 bytes in 99 blocks ==14741== newarray : 6,392 bytes in 54 blocks ==14741== suppressed: 642,667 bytes in 9,414 blocks ==14741== Reachable blocks (those to which a pointer was found) are not shown. ==14741== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14741== ==14741== For counts of detected and suppressed errors, rerun with: -v ==14741== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14840== Memcheck, a memory error detector ==14840== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14840== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14840== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==14840== Parent PID: 14741 ==14840== ==14858== Memcheck, a memory error detector ==14858== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14858== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14858== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==14858== Parent PID: 14741 ==14858== ==14896== Memcheck, a memory error detector ==14896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14896== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14896== Command: ./client-test Client::Sync::eds_contact::testUpdate ==14896== Parent PID: 114 ==14896== ==14896== ==14896== HEAP SUMMARY: ==14896== in use at exit: 7,056,601 bytes in 58,212 blocks ==14896== total heap usage: 3,258,254 allocs, 3,199,984 frees, 487,346,237 bytes allocated ==14896== ==14896== LEAK SUMMARY: ==14896== definitely lost: 0 bytes in 0 blocks ==14896== indirectly lost: 0 bytes in 0 blocks ==14896== possibly lost: 960 bytes in 3 blocks ==14896== still reachable: 6,306,909 bytes in 48,042 blocks ==14896== of which reachable via heuristic: ==14896== length64 : 6,000 bytes in 99 blocks ==14896== newarray : 6,392 bytes in 54 blocks ==14896== suppressed: 640,876 bytes in 9,371 blocks ==14896== Reachable blocks (those to which a pointer was found) are not shown. ==14896== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14896== ==14896== For counts of detected and suppressed errors, rerun with: -v ==14896== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14995== Memcheck, a memory error detector ==14995== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14995== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14995== Command: ./client-test Client::Sync::eds_contact::testUpdate ==14995== Parent PID: 14896 ==14995== ==150== Memcheck, a memory error detector ==150== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==150== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==150== Command: ./client-test Client::Sync::eds_event::testSlowSync ==150== Parent PID: 114 ==150== ==150== ==150== HEAP SUMMARY: ==150== in use at exit: 6,996,762 bytes in 57,812 blocks ==150== total heap usage: 697,237 allocs, 639,374 frees, 102,837,520 bytes allocated ==150== ==150== LEAK SUMMARY: ==150== definitely lost: 0 bytes in 0 blocks ==150== indirectly lost: 0 bytes in 0 blocks ==150== possibly lost: 960 bytes in 3 blocks ==150== still reachable: 6,231,140 bytes in 48,007 blocks ==150== of which reachable via heuristic: ==150== length64 : 5,984 bytes in 98 blocks ==150== newarray : 6,408 bytes in 55 blocks ==150== suppressed: 676,654 bytes in 9,131 blocks ==150== Reachable blocks (those to which a pointer was found) are not shown. ==150== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==150== ==150== For counts of detected and suppressed errors, rerun with: -v ==150== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15031== Memcheck, a memory error detector ==15031== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15031== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15031== Command: ./client-test Client::Sync::eds_contact::testUpdate ==15031== Parent PID: 14896 ==15031== ==15035== Memcheck, a memory error detector ==15035== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15035== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15035== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==15035== Parent PID: 114 ==15035== ==15035== ==15035== HEAP SUMMARY: ==15035== in use at exit: 7,057,861 bytes in 58,232 blocks ==15035== total heap usage: 3,273,631 allocs, 3,215,341 frees, 488,757,224 bytes allocated ==15035== ==15035== LEAK SUMMARY: ==15035== definitely lost: 0 bytes in 0 blocks ==15035== indirectly lost: 0 bytes in 0 blocks ==15035== possibly lost: 960 bytes in 3 blocks ==15035== still reachable: 6,308,409 bytes in 48,065 blocks ==15035== of which reachable via heuristic: ==15035== length64 : 6,000 bytes in 99 blocks ==15035== newarray : 6,392 bytes in 54 blocks ==15035== suppressed: 640,636 bytes in 9,368 blocks ==15035== Reachable blocks (those to which a pointer was found) are not shown. ==15035== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15035== ==15035== For counts of detected and suppressed errors, rerun with: -v ==15035== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1504== Memcheck, a memory error detector ==1504== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1504== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1504== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==1504== Parent PID: 1401 ==1504== ==1509== Memcheck, a memory error detector ==1509== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1509== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1509== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==1509== Parent PID: 114 ==1509== ==1509== ==1509== HEAP SUMMARY: ==1509== in use at exit: 6,996,977 bytes in 57,820 blocks ==1509== total heap usage: 2,186,878 allocs, 2,129,003 frees, 323,251,663 bytes allocated ==1509== ==1509== LEAK SUMMARY: ==1509== definitely lost: 0 bytes in 0 blocks ==1509== indirectly lost: 0 bytes in 0 blocks ==1509== possibly lost: 960 bytes in 3 blocks ==1509== still reachable: 6,232,707 bytes in 48,032 blocks ==1509== of which reachable via heuristic: ==1509== length64 : 6,024 bytes in 99 blocks ==1509== newarray : 6,408 bytes in 55 blocks ==1509== suppressed: 675,302 bytes in 9,114 blocks ==1509== Reachable blocks (those to which a pointer was found) are not shown. ==1509== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1509== ==1509== For counts of detected and suppressed errors, rerun with: -v ==1509== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15135== Memcheck, a memory error detector ==15135== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15135== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15135== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==15135== Parent PID: 15035 ==15135== ==15171== Memcheck, a memory error detector ==15171== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15171== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15171== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==15171== Parent PID: 15035 ==15171== ==15175== Memcheck, a memory error detector ==15175== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15175== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15175== Command: ./client-test Client::Sync::eds_contact::testMerge ==15175== Parent PID: 114 ==15175== ==15175== ==15175== HEAP SUMMARY: ==15175== in use at exit: 7,051,713 bytes in 58,129 blocks ==15175== total heap usage: 3,653,349 allocs, 3,595,161 frees, 544,472,225 bytes allocated ==15175== ==15175== LEAK SUMMARY: ==15175== definitely lost: 0 bytes in 0 blocks ==15175== indirectly lost: 0 bytes in 0 blocks ==15175== possibly lost: 960 bytes in 3 blocks ==15175== still reachable: 6,304,014 bytes in 47,995 blocks ==15175== of which reachable via heuristic: ==15175== length64 : 6,000 bytes in 99 blocks ==15175== newarray : 6,392 bytes in 54 blocks ==15175== suppressed: 638,883 bytes in 9,335 blocks ==15175== Reachable blocks (those to which a pointer was found) are not shown. ==15175== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15175== ==15175== For counts of detected and suppressed errors, rerun with: -v ==15175== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15274== Memcheck, a memory error detector ==15274== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15274== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15274== Command: ./client-test Client::Sync::eds_contact::testMerge ==15274== Parent PID: 15175 ==15274== ==15327== Memcheck, a memory error detector ==15327== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15327== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15327== Command: ./client-test Client::Sync::eds_contact::testMerge ==15327== Parent PID: 15175 ==15327== ==15332== Memcheck, a memory error detector ==15332== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15332== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15332== Command: ./client-test Client::Sync::eds_contact::testTwinning ==15332== Parent PID: 114 ==15332== ==15332== ==15332== HEAP SUMMARY: ==15332== in use at exit: 7,052,620 bytes in 58,137 blocks ==15332== total heap usage: 3,056,963 allocs, 2,998,770 frees, 431,721,080 bytes allocated ==15332== ==15332== LEAK SUMMARY: ==15332== definitely lost: 0 bytes in 0 blocks ==15332== indirectly lost: 0 bytes in 0 blocks ==15332== possibly lost: 960 bytes in 3 blocks ==15332== still reachable: 6,303,933 bytes in 48,002 blocks ==15332== of which reachable via heuristic: ==15332== length64 : 6,000 bytes in 99 blocks ==15332== newarray : 6,392 bytes in 54 blocks ==15332== suppressed: 639,871 bytes in 9,336 blocks ==15332== Reachable blocks (those to which a pointer was found) are not shown. ==15332== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15332== ==15332== For counts of detected and suppressed errors, rerun with: -v ==15332== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15395== Memcheck, a memory error detector ==15395== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15395== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15395== Command: ./client-test Client::Sync::eds_contact::testTwinning ==15395== Parent PID: 15332 ==15395== ==15435== Memcheck, a memory error detector ==15435== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15435== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15435== Command: ./client-test Client::Sync::eds_contact::testTwinning ==15435== Parent PID: 15332 ==15435== ==15440== Memcheck, a memory error detector ==15440== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15440== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15440== Command: ./client-test Client::Sync::eds_contact::testItems ==15440== Parent PID: 114 ==15440== ==15440== ==15440== HEAP SUMMARY: ==15440== in use at exit: 7,053,263 bytes in 58,153 blocks ==15440== total heap usage: 2,378,724 allocs, 2,320,517 frees, 322,528,968 bytes allocated ==15440== ==15440== LEAK SUMMARY: ==15440== definitely lost: 0 bytes in 0 blocks ==15440== indirectly lost: 0 bytes in 0 blocks ==15440== possibly lost: 960 bytes in 3 blocks ==15440== still reachable: 6,304,589 bytes in 48,006 blocks ==15440== of which reachable via heuristic: ==15440== length64 : 6,000 bytes in 99 blocks ==15440== newarray : 6,392 bytes in 54 blocks ==15440== suppressed: 639,690 bytes in 9,346 blocks ==15440== Reachable blocks (those to which a pointer was found) are not shown. ==15440== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15440== ==15440== For counts of detected and suppressed errors, rerun with: -v ==15440== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15503== Memcheck, a memory error detector ==15503== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15503== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15503== Command: ./client-test Client::Sync::eds_contact::testItems ==15503== Parent PID: 15440 ==15503== ==15534== Memcheck, a memory error detector ==15534== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15534== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15534== Command: ./client-test Client::Sync::eds_contact::testItems ==15534== Parent PID: 15440 ==15534== ==15539== Memcheck, a memory error detector ==15539== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15539== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15539== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==15539== Parent PID: 114 ==15539== ==15539== ==15539== HEAP SUMMARY: ==15539== in use at exit: 7,058,567 bytes in 58,247 blocks ==15539== total heap usage: 2,391,478 allocs, 2,333,177 frees, 322,949,717 bytes allocated ==15539== ==15539== LEAK SUMMARY: ==15539== definitely lost: 0 bytes in 0 blocks ==15539== indirectly lost: 0 bytes in 0 blocks ==15539== possibly lost: 960 bytes in 3 blocks ==15539== still reachable: 6,310,116 bytes in 48,098 blocks ==15539== of which reachable via heuristic: ==15539== length64 : 6,000 bytes in 99 blocks ==15539== newarray : 6,392 bytes in 54 blocks ==15539== suppressed: 639,635 bytes in 9,350 blocks ==15539== Reachable blocks (those to which a pointer was found) are not shown. ==15539== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15539== ==15539== For counts of detected and suppressed errors, rerun with: -v ==15539== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15602== Memcheck, a memory error detector ==15602== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15602== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15602== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==15602== Parent PID: 15539 ==15602== ==15633== Memcheck, a memory error detector ==15633== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15633== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15633== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==15633== Parent PID: 15539 ==15633== ==15637== Memcheck, a memory error detector ==15637== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15637== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15637== Command: ./client-test Client::Sync::eds_contact::testExtensions ==15637== Parent PID: 114 ==15637== ==15637== ==15637== HEAP SUMMARY: ==15637== in use at exit: 7,052,612 bytes in 58,137 blocks ==15637== total heap usage: 3,365,099 allocs, 3,306,906 frees, 459,868,517 bytes allocated ==15637== ==15637== LEAK SUMMARY: ==15637== definitely lost: 0 bytes in 0 blocks ==15637== indirectly lost: 0 bytes in 0 blocks ==15637== possibly lost: 960 bytes in 3 blocks ==15637== still reachable: 6,304,369 bytes in 48,003 blocks ==15637== of which reachable via heuristic: ==15637== length64 : 6,000 bytes in 99 blocks ==15637== newarray : 6,392 bytes in 54 blocks ==15637== suppressed: 639,427 bytes in 9,335 blocks ==15637== Reachable blocks (those to which a pointer was found) are not shown. ==15637== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15637== ==15637== For counts of detected and suppressed errors, rerun with: -v ==15637== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15700== Memcheck, a memory error detector ==15700== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15700== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15700== Command: ./client-test Client::Sync::eds_contact::testExtensions ==15700== Parent PID: 15637 ==15700== ==15741== Memcheck, a memory error detector ==15741== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15741== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15741== Command: ./client-test Client::Sync::eds_contact::testExtensions ==15741== Parent PID: 15637 ==15741== ==15746== Memcheck, a memory error detector ==15746== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15746== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15746== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==15746== Parent PID: 114 ==15746== ==15746== ==15746== HEAP SUMMARY: ==15746== in use at exit: 7,053,810 bytes in 58,157 blocks ==15746== total heap usage: 2,472,680 allocs, 2,414,469 frees, 362,347,555 bytes allocated ==15746== ==15746== LEAK SUMMARY: ==15746== definitely lost: 0 bytes in 0 blocks ==15746== indirectly lost: 0 bytes in 0 blocks ==15746== possibly lost: 960 bytes in 3 blocks ==15746== still reachable: 6,304,430 bytes in 47,995 blocks ==15746== of which reachable via heuristic: ==15746== length64 : 6,000 bytes in 99 blocks ==15746== newarray : 6,392 bytes in 54 blocks ==15746== suppressed: 640,564 bytes in 9,363 blocks ==15746== Reachable blocks (those to which a pointer was found) are not shown. ==15746== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15746== ==15746== For counts of detected and suppressed errors, rerun with: -v ==15746== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==15816== Memcheck, a memory error detector ==15816== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15816== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15816== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==15816== Parent PID: 15746 ==15816== ==15821== Memcheck, a memory error detector ==15821== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15821== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15821== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==15821== Parent PID: 114 ==15821== ==15821== ==15821== HEAP SUMMARY: ==15821== in use at exit: 7,055,479 bytes in 58,183 blocks ==15821== total heap usage: 2,638,438 allocs, 2,580,201 frees, 353,482,986 bytes allocated ==15821== ==15821== LEAK SUMMARY: ==15821== definitely lost: 0 bytes in 0 blocks ==15821== indirectly lost: 0 bytes in 0 blocks ==15821== possibly lost: 960 bytes in 3 blocks ==15821== still reachable: 6,306,027 bytes in 48,021 blocks ==15821== of which reachable via heuristic: ==15821== length64 : 6,000 bytes in 99 blocks ==15821== newarray : 6,392 bytes in 54 blocks ==15821== suppressed: 640,636 bytes in 9,363 blocks ==15821== Reachable blocks (those to which a pointer was found) are not shown. ==15821== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15821== ==15821== For counts of detected and suppressed errors, rerun with: -v ==15821== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1587== Memcheck, a memory error detector ==1587== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1587== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1587== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==1587== Parent PID: 1509 ==1587== ==15891== Memcheck, a memory error detector ==15891== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15891== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15891== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==15891== Parent PID: 15821 ==15891== ==15895== Memcheck, a memory error detector ==15895== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15895== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15895== Command: ./client-test Client::Sync::eds_contact::testOneWayFromServer ==15895== Parent PID: 114 ==15895== ==15895== ==15895== HEAP SUMMARY: ==15895== in use at exit: 7,054,230 bytes in 58,204 blocks ==15895== total heap usage: 3,620,154 allocs, 3,561,892 frees, 522,533,820 bytes allocated ==15895== ==15895== LEAK SUMMARY: ==15895== definitely lost: 0 bytes in 0 blocks ==15895== indirectly lost: 0 bytes in 0 blocks ==15895== possibly lost: 960 bytes in 3 blocks ==15895== still reachable: 6,304,218 bytes in 47,997 blocks ==15895== of which reachable via heuristic: ==15895== length64 : 6,000 bytes in 99 blocks ==15895== newarray : 6,392 bytes in 54 blocks ==15895== suppressed: 641,196 bytes in 9,408 blocks ==15895== Reachable blocks (those to which a pointer was found) are not shown. ==15895== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15895== ==15895== For counts of detected and suppressed errors, rerun with: -v ==15895== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1591== Memcheck, a memory error detector ==1591== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1591== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1591== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==1591== Parent PID: 114 ==1591== ==1591== ==1591== HEAP SUMMARY: ==1591== in use at exit: 6,995,403 bytes in 57,792 blocks ==1591== total heap usage: 2,839,613 allocs, 2,781,764 frees, 427,538,067 bytes allocated ==1591== ==1591== LEAK SUMMARY: ==1591== definitely lost: 0 bytes in 0 blocks ==1591== indirectly lost: 0 bytes in 0 blocks ==1591== possibly lost: 960 bytes in 3 blocks ==1591== still reachable: 6,229,724 bytes in 47,984 blocks ==1591== of which reachable via heuristic: ==1591== length64 : 6,024 bytes in 99 blocks ==1591== newarray : 6,408 bytes in 55 blocks ==1591== suppressed: 676,711 bytes in 9,134 blocks ==1591== Reachable blocks (those to which a pointer was found) are not shown. ==1591== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1591== ==1591== For counts of detected and suppressed errors, rerun with: -v ==1591== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16019== Memcheck, a memory error detector ==16019== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16019== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16019== Command: ./client-test Client::Sync::eds_contact::testOneWayFromClient ==16019== Parent PID: 114 ==16019== ==16019== ==16019== HEAP SUMMARY: ==16019== in use at exit: 7,053,562 bytes in 58,157 blocks ==16019== total heap usage: 3,645,408 allocs, 3,587,192 frees, 543,476,569 bytes allocated ==16019== ==16019== LEAK SUMMARY: ==16019== definitely lost: 0 bytes in 0 blocks ==16019== indirectly lost: 0 bytes in 0 blocks ==16019== possibly lost: 960 bytes in 3 blocks ==16019== still reachable: 6,303,918 bytes in 47,994 blocks ==16019== of which reachable via heuristic: ==16019== length64 : 6,000 bytes in 99 blocks ==16019== newarray : 6,392 bytes in 54 blocks ==16019== suppressed: 640,828 bytes in 9,364 blocks ==16019== Reachable blocks (those to which a pointer was found) are not shown. ==16019== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16019== ==16019== For counts of detected and suppressed errors, rerun with: -v ==16019== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16163== Memcheck, a memory error detector ==16163== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16163== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16163== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemote ==16163== Parent PID: 114 ==16163== ==16163== ==16163== HEAP SUMMARY: ==16163== in use at exit: 7,050,528 bytes in 58,100 blocks ==16163== total heap usage: 3,257,398 allocs, 3,199,240 frees, 487,587,368 bytes allocated ==16163== ==16163== LEAK SUMMARY: ==16163== definitely lost: 0 bytes in 0 blocks ==16163== indirectly lost: 0 bytes in 0 blocks ==16163== possibly lost: 960 bytes in 3 blocks ==16163== still reachable: 6,303,050 bytes in 47,987 blocks ==16163== of which reachable via heuristic: ==16163== length64 : 6,000 bytes in 99 blocks ==16163== newarray : 6,392 bytes in 54 blocks ==16163== suppressed: 638,662 bytes in 9,314 blocks ==16163== Reachable blocks (those to which a pointer was found) are not shown. ==16163== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16163== ==16163== For counts of detected and suppressed errors, rerun with: -v ==16163== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16288== Memcheck, a memory error detector ==16288== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16288== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16288== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocal ==16288== Parent PID: 114 ==16288== ==16288== ==16288== HEAP SUMMARY: ==16288== in use at exit: 7,050,472 bytes in 58,099 blocks ==16288== total heap usage: 3,645,858 allocs, 3,587,700 frees, 543,499,864 bytes allocated ==16288== ==16288== LEAK SUMMARY: ==16288== definitely lost: 0 bytes in 0 blocks ==16288== indirectly lost: 0 bytes in 0 blocks ==16288== possibly lost: 960 bytes in 3 blocks ==16288== still reachable: 6,303,050 bytes in 47,987 blocks ==16288== of which reachable via heuristic: ==16288== length64 : 6,000 bytes in 99 blocks ==16288== newarray : 6,392 bytes in 54 blocks ==16288== suppressed: 638,606 bytes in 9,313 blocks ==16288== Reachable blocks (those to which a pointer was found) are not shown. ==16288== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16288== ==16288== For counts of detected and suppressed errors, rerun with: -v ==16288== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16432== Memcheck, a memory error detector ==16432== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16432== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16432== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteAllRefresh ==16432== Parent PID: 114 ==16432== ==16432== ==16432== HEAP SUMMARY: ==16432== in use at exit: 261,640 bytes in 3,725 blocks ==16432== total heap usage: 108,449 allocs, 104,724 frees, 15,489,308 bytes allocated ==16432== ==16432== LEAK SUMMARY: ==16432== definitely lost: 0 bytes in 0 blocks ==16432== indirectly lost: 0 bytes in 0 blocks ==16432== possibly lost: 96 bytes in 1 blocks ==16432== still reachable: 44,695 bytes in 277 blocks ==16432== of which reachable via heuristic: ==16432== newarray : 5,800 bytes in 17 blocks ==16432== suppressed: 216,849 bytes in 3,447 blocks ==16432== Reachable blocks (those to which a pointer was found) are not shown. ==16432== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16432== ==16432== For counts of detected and suppressed errors, rerun with: -v ==16432== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==16433== Memcheck, a memory error detector ==16433== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16433== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16433== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwoWaySync ==16433== Parent PID: 114 ==16433== ==16433== ==16433== HEAP SUMMARY: ==16433== in use at exit: 7,090,815 bytes in 58,722 blocks ==16433== total heap usage: 795,164 allocs, 736,391 frees, 108,379,340 bytes allocated ==16433== ==16433== LEAK SUMMARY: ==16433== definitely lost: 0 bytes in 0 blocks ==16433== indirectly lost: 0 bytes in 0 blocks ==16433== possibly lost: 1,392 bytes in 4 blocks ==16433== still reachable: 6,231,106 bytes in 48,006 blocks ==16433== of which reachable via heuristic: ==16433== length64 : 6,688 bytes in 106 blocks ==16433== newarray : 6,456 bytes in 58 blocks ==16433== suppressed: 744,365 bytes in 9,856 blocks ==16433== Reachable blocks (those to which a pointer was found) are not shown. ==16433== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16433== ==16433== For counts of detected and suppressed errors, rerun with: -v ==16433== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16483== Memcheck, a memory error detector ==16483== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16483== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16483== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSync ==16483== Parent PID: 114 ==16483== ==16483== ==16483== HEAP SUMMARY: ==16483== in use at exit: 7,099,825 bytes in 58,845 blocks ==16483== total heap usage: 808,494 allocs, 749,598 frees, 109,816,727 bytes allocated ==16483== ==16483== LEAK SUMMARY: ==16483== definitely lost: 0 bytes in 0 blocks ==16483== indirectly lost: 0 bytes in 0 blocks ==16483== possibly lost: 1,392 bytes in 4 blocks ==16483== still reachable: 6,241,229 bytes in 48,182 blocks ==16483== of which reachable via heuristic: ==16483== length64 : 6,688 bytes in 106 blocks ==16483== newarray : 6,456 bytes in 58 blocks ==16483== suppressed: 743,252 bytes in 9,803 blocks ==16483== Reachable blocks (those to which a pointer was found) are not shown. ==16483== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16483== ==16483== For counts of detected and suppressed errors, rerun with: -v ==16483== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16533== Memcheck, a memory error detector ==16533== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16533== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16533== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromServerSync ==16533== Parent PID: 114 ==16533== ==16533== ==16533== HEAP SUMMARY: ==16533== in use at exit: 7,091,106 bytes in 58,713 blocks ==16533== total heap usage: 832,308 allocs, 773,544 frees, 111,684,308 bytes allocated ==16533== ==16533== LEAK SUMMARY: ==16533== definitely lost: 0 bytes in 0 blocks ==16533== indirectly lost: 0 bytes in 0 blocks ==16533== possibly lost: 1,392 bytes in 4 blocks ==16533== still reachable: 6,232,267 bytes in 48,025 blocks ==16533== of which reachable via heuristic: ==16533== length64 : 6,688 bytes in 106 blocks ==16533== newarray : 6,456 bytes in 58 blocks ==16533== suppressed: 743,495 bytes in 9,828 blocks ==16533== Reachable blocks (those to which a pointer was found) are not shown. ==16533== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16533== ==16533== For counts of detected and suppressed errors, rerun with: -v ==16533== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16581== Memcheck, a memory error detector ==16581== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16581== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16581== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSync ==16581== Parent PID: 114 ==16581== ==16581== ==16581== HEAP SUMMARY: ==16581== in use at exit: 261,632 bytes in 3,725 blocks ==16581== total heap usage: 108,453 allocs, 104,728 frees, 15,489,406 bytes allocated ==16581== ==16581== LEAK SUMMARY: ==16581== definitely lost: 0 bytes in 0 blocks ==16581== indirectly lost: 0 bytes in 0 blocks ==16581== possibly lost: 96 bytes in 1 blocks ==16581== still reachable: 44,695 bytes in 277 blocks ==16581== of which reachable via heuristic: ==16581== newarray : 5,800 bytes in 17 blocks ==16581== suppressed: 216,841 bytes in 3,447 blocks ==16581== Reachable blocks (those to which a pointer was found) are not shown. ==16581== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16581== ==16581== For counts of detected and suppressed errors, rerun with: -v ==16581== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==16582== Memcheck, a memory error detector ==16582== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16582== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16582== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromRemoteSync ==16582== Parent PID: 114 ==16582== ==16582== ==16582== HEAP SUMMARY: ==16582== in use at exit: 7,088,736 bytes in 58,658 blocks ==16582== total heap usage: 831,832 allocs, 773,123 frees, 111,663,518 bytes allocated ==16582== ==16582== LEAK SUMMARY: ==16582== definitely lost: 0 bytes in 0 blocks ==16582== indirectly lost: 0 bytes in 0 blocks ==16582== possibly lost: 1,392 bytes in 4 blocks ==16582== still reachable: 6,233,437 bytes in 48,045 blocks ==16582== of which reachable via heuristic: ==16582== length64 : 6,688 bytes in 106 blocks ==16582== newarray : 6,456 bytes in 58 blocks ==16582== suppressed: 739,955 bytes in 9,753 blocks ==16582== Reachable blocks (those to which a pointer was found) are not shown. ==16582== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16582== ==16582== For counts of detected and suppressed errors, rerun with: -v ==16582== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16632== Memcheck, a memory error detector ==16632== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16632== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16632== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromLocalSync ==16632== Parent PID: 114 ==16632== ==16632== ==16632== HEAP SUMMARY: ==16632== in use at exit: 7,091,264 bytes in 58,752 blocks ==16632== total heap usage: 809,398 allocs, 750,595 frees, 109,856,102 bytes allocated ==16632== ==16632== LEAK SUMMARY: ==16632== definitely lost: 0 bytes in 0 blocks ==16632== indirectly lost: 0 bytes in 0 blocks ==16632== possibly lost: 1,392 bytes in 4 blocks ==16632== still reachable: 6,231,786 bytes in 48,015 blocks ==16632== of which reachable via heuristic: ==16632== length64 : 6,688 bytes in 106 blocks ==16632== newarray : 6,456 bytes in 58 blocks ==16632== suppressed: 744,134 bytes in 9,877 blocks ==16632== Reachable blocks (those to which a pointer was found) are not shown. ==16632== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16632== ==16632== For counts of detected and suppressed errors, rerun with: -v ==16632== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16681== Memcheck, a memory error detector ==16681== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16681== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16681== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion ==16681== Parent PID: 114 ==16681== ==16681== ==16681== HEAP SUMMARY: ==16681== in use at exit: 2,920,656 bytes in 30,388 blocks ==16681== total heap usage: 507,797 allocs, 477,358 frees, 63,977,097 bytes allocated ==16681== ==16681== LEAK SUMMARY: ==16681== definitely lost: 0 bytes in 0 blocks ==16681== indirectly lost: 0 bytes in 0 blocks ==16681== possibly lost: 1,392 bytes in 4 blocks ==16681== still reachable: 2,223,789 bytes in 21,496 blocks ==16681== of which reachable via heuristic: ==16681== length64 : 5,560 bytes in 88 blocks ==16681== newarray : 6,360 bytes in 52 blocks ==16681== suppressed: 619,483 bytes in 8,312 blocks ==16681== Reachable blocks (those to which a pointer was found) are not shown. ==16681== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16681== ==16681== For counts of detected and suppressed errors, rerun with: -v ==16681== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==16719== Memcheck, a memory error detector ==16719== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16719== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16719== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion ==16719== Parent PID: 16681 ==16719== ==16723== Memcheck, a memory error detector ==16723== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16723== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16723== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion ==16723== Parent PID: 16681 ==16723== ==16727== Memcheck, a memory error detector ==16727== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16727== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16727== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion ==16727== Parent PID: 16681 ==16727== ==16731== Memcheck, a memory error detector ==16731== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16731== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16731== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testConversion ==16731== Parent PID: 16681 ==16731== ==16736== Memcheck, a memory error detector ==16736== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16736== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16736== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromServerSemantic ==16736== Parent PID: 114 ==16736== ==16736== ==16736== HEAP SUMMARY: ==16736== in use at exit: 7,092,477 bytes in 58,718 blocks ==16736== total heap usage: 2,617,793 allocs, 2,559,021 frees, 316,871,565 bytes allocated ==16736== ==16736== LEAK SUMMARY: ==16736== definitely lost: 0 bytes in 0 blocks ==16736== indirectly lost: 0 bytes in 0 blocks ==16736== possibly lost: 1,392 bytes in 4 blocks ==16736== still reachable: 6,234,889 bytes in 48,069 blocks ==16736== of which reachable via heuristic: ==16736== length64 : 6,728 bytes in 107 blocks ==16736== newarray : 6,456 bytes in 58 blocks ==16736== suppressed: 742,244 bytes in 9,789 blocks ==16736== Reachable blocks (those to which a pointer was found) are not shown. ==16736== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16736== ==16736== For counts of detected and suppressed errors, rerun with: -v ==16736== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1681== Memcheck, a memory error detector ==1681== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1681== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1681== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==1681== Parent PID: 1591 ==1681== ==1685== Memcheck, a memory error detector ==1685== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1685== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1685== Command: ./client-test Client::Sync::eds_event::testUpdate ==1685== Parent PID: 114 ==1685== ==1685== ==1685== HEAP SUMMARY: ==1685== in use at exit: 7,000,320 bytes in 57,873 blocks ==1685== total heap usage: 3,319,740 allocs, 3,261,809 frees, 488,966,047 bytes allocated ==1685== ==1685== LEAK SUMMARY: ==1685== definitely lost: 0 bytes in 0 blocks ==1685== indirectly lost: 0 bytes in 0 blocks ==1685== possibly lost: 960 bytes in 3 blocks ==1685== still reachable: 6,234,129 bytes in 48,055 blocks ==1685== of which reachable via heuristic: ==1685== length64 : 6,024 bytes in 99 blocks ==1685== newarray : 6,408 bytes in 55 blocks ==1685== suppressed: 677,223 bytes in 9,144 blocks ==1685== Reachable blocks (those to which a pointer was found) are not shown. ==1685== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1685== ==1685== For counts of detected and suppressed errors, rerun with: -v ==1685== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==16953== Memcheck, a memory error detector ==16953== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16953== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16953== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshFromClientSemantic ==16953== Parent PID: 114 ==16953== ==16953== ==16953== HEAP SUMMARY: ==16953== in use at exit: 261,640 bytes in 3,725 blocks ==16953== total heap usage: 108,434 allocs, 104,709 frees, 15,488,704 bytes allocated ==16953== ==16953== LEAK SUMMARY: ==16953== definitely lost: 0 bytes in 0 blocks ==16953== indirectly lost: 0 bytes in 0 blocks ==16953== possibly lost: 96 bytes in 1 blocks ==16953== still reachable: 44,695 bytes in 277 blocks ==16953== of which reachable via heuristic: ==16953== newarray : 5,800 bytes in 17 blocks ==16953== suppressed: 216,849 bytes in 3,447 blocks ==16953== Reachable blocks (those to which a pointer was found) are not shown. ==16953== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16953== ==16953== For counts of detected and suppressed errors, rerun with: -v ==16953== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==16954== Memcheck, a memory error detector ==16954== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==16954== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==16954== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testRefreshStatus ==16954== Parent PID: 114 ==16954== ==16954== ==16954== HEAP SUMMARY: ==16954== in use at exit: 7,091,400 bytes in 58,743 blocks ==16954== total heap usage: 1,721,191 allocs, 1,662,396 frees, 197,597,184 bytes allocated ==16954== ==16954== LEAK SUMMARY: ==16954== definitely lost: 0 bytes in 0 blocks ==16954== indirectly lost: 0 bytes in 0 blocks ==16954== possibly lost: 1,392 bytes in 4 blocks ==16954== still reachable: 6,231,034 bytes in 48,008 blocks ==16954== of which reachable via heuristic: ==16954== length64 : 6,728 bytes in 107 blocks ==16954== newarray : 6,456 bytes in 58 blocks ==16954== suppressed: 745,022 bytes in 9,875 blocks ==16954== Reachable blocks (those to which a pointer was found) are not shown. ==16954== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==16954== ==16954== For counts of detected and suppressed errors, rerun with: -v ==16954== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==17116== Memcheck, a memory error detector ==17116== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17116== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17116== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwoWayRestart ==17116== Parent PID: 114 ==17116== ==17116== ==17116== HEAP SUMMARY: ==17116== in use at exit: 7,095,358 bytes in 58,773 blocks ==17116== total heap usage: 2,203,978 allocs, 2,145,152 frees, 259,249,318 bytes allocated ==17116== ==17116== LEAK SUMMARY: ==17116== definitely lost: 0 bytes in 0 blocks ==17116== indirectly lost: 0 bytes in 0 blocks ==17116== possibly lost: 1,392 bytes in 4 blocks ==17116== still reachable: 6,238,891 bytes in 48,140 blocks ==17116== of which reachable via heuristic: ==17116== length64 : 6,728 bytes in 107 blocks ==17116== newarray : 6,456 bytes in 58 blocks ==17116== suppressed: 741,123 bytes in 9,773 blocks ==17116== Reachable blocks (those to which a pointer was found) are not shown. ==17116== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17116== ==17116== For counts of detected and suppressed errors, rerun with: -v ==17116== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==172== Memcheck, a memory error detector ==172== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==172== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==172== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSync ==172== Parent PID: 114 ==172== ==172== ==172== HEAP SUMMARY: ==172== in use at exit: 6,994,059 bytes in 57,776 blocks ==172== total heap usage: 702,987 allocs, 645,160 frees, 103,279,961 bytes allocated ==172== ==172== LEAK SUMMARY: ==172== definitely lost: 0 bytes in 0 blocks ==172== indirectly lost: 0 bytes in 0 blocks ==172== possibly lost: 960 bytes in 3 blocks ==172== still reachable: 6,230,023 bytes in 47,988 blocks ==172== of which reachable via heuristic: ==172== length64 : 5,984 bytes in 98 blocks ==172== newarray : 6,408 bytes in 55 blocks ==172== suppressed: 674,900 bytes in 9,112 blocks ==172== Reachable blocks (those to which a pointer was found) are not shown. ==172== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==172== ==172== For counts of detected and suppressed errors, rerun with: -v ==172== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==17312== Memcheck, a memory error detector ==17312== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17312== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17312== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17312== Parent PID: 114 ==17312== ==17312== ==17312== HEAP SUMMARY: ==17312== in use at exit: 7,095,561 bytes in 58,771 blocks ==17312== total heap usage: 4,072,937 allocs, 4,014,110 frees, 468,872,381 bytes allocated ==17312== ==17312== LEAK SUMMARY: ==17312== definitely lost: 0 bytes in 0 blocks ==17312== indirectly lost: 0 bytes in 0 blocks ==17312== possibly lost: 1,392 bytes in 4 blocks ==17312== still reachable: 6,237,317 bytes in 48,114 blocks ==17312== of which reachable via heuristic: ==17312== length64 : 6,728 bytes in 107 blocks ==17312== newarray : 6,456 bytes in 58 blocks ==17312== suppressed: 742,900 bytes in 9,797 blocks ==17312== Reachable blocks (those to which a pointer was found) are not shown. ==17312== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17312== ==17312== For counts of detected and suppressed errors, rerun with: -v ==17312== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==17627== Memcheck, a memory error detector ==17627== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17627== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17627== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17627== Parent PID: 17312 ==17627== ==17643== Memcheck, a memory error detector ==17643== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17643== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17643== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17643== Parent PID: 17312 ==17643== ==17659== Memcheck, a memory error detector ==17659== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17659== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17659== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17659== Parent PID: 17312 ==17659== ==17677== Memcheck, a memory error detector ==17677== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17677== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17677== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17677== Parent PID: 17312 ==17677== ==17693== Memcheck, a memory error detector ==17693== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17693== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17693== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17693== Parent PID: 17312 ==17693== ==17709== Memcheck, a memory error detector ==17709== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17709== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17709== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17709== Parent PID: 17312 ==17709== ==17725== Memcheck, a memory error detector ==17725== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17725== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17725== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17725== Parent PID: 17312 ==17725== ==17743== Memcheck, a memory error detector ==17743== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17743== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17743== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testCopy ==17743== Parent PID: 17312 ==17743== ==17749== Memcheck, a memory error detector ==17749== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==17749== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==17749== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete ==17749== Parent PID: 114 ==17749== ==17749== ==17749== HEAP SUMMARY: ==17749== in use at exit: 7,092,532 bytes in 58,717 blocks ==17749== total heap usage: 4,973,873 allocs, 4,915,098 frees, 589,340,831 bytes allocated ==17749== ==17749== LEAK SUMMARY: ==17749== definitely lost: 0 bytes in 0 blocks ==17749== indirectly lost: 0 bytes in 0 blocks ==17749== possibly lost: 1,392 bytes in 4 blocks ==17749== still reachable: 6,236,617 bytes in 48,095 blocks ==17749== of which reachable via heuristic: ==17749== length64 : 6,728 bytes in 107 blocks ==17749== newarray : 6,456 bytes in 58 blocks ==17749== suppressed: 740,571 bytes in 9,762 blocks ==17749== Reachable blocks (those to which a pointer was found) are not shown. ==17749== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==17749== ==17749== For counts of detected and suppressed errors, rerun with: -v ==17749== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1783== Memcheck, a memory error detector ==1783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1783== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1783== Command: ./client-test Client::Sync::eds_event::testUpdate ==1783== Parent PID: 1685 ==1783== ==18062== Memcheck, a memory error detector ==18062== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18062== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18062== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete ==18062== Parent PID: 17749 ==18062== ==18078== Memcheck, a memory error detector ==18078== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18078== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18078== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete ==18078== Parent PID: 17749 ==18078== ==18094== Memcheck, a memory error detector ==18094== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18094== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18094== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete ==18094== Parent PID: 17749 ==18094== ==18112== Memcheck, a memory error detector ==18112== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18112== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18112== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDelete ==18112== Parent PID: 17749 ==18112== ==1816== Memcheck, a memory error detector ==1816== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1816== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1816== Command: ./client-test Client::Sync::eds_event::testUpdate ==1816== Parent PID: 1685 ==1816== ==18202== Memcheck, a memory error detector ==18202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18202== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate ==18202== Parent PID: 114 ==18202== ==18202== ==18202== HEAP SUMMARY: ==18202== in use at exit: 7,090,054 bytes in 58,719 blocks ==18202== total heap usage: 3,721,459 allocs, 3,662,684 frees, 448,611,702 bytes allocated ==18202== ==18202== LEAK SUMMARY: ==18202== definitely lost: 0 bytes in 0 blocks ==18202== indirectly lost: 0 bytes in 0 blocks ==18202== possibly lost: 1,392 bytes in 4 blocks ==18202== still reachable: 6,231,426 bytes in 48,008 blocks ==18202== of which reachable via heuristic: ==18202== length64 : 6,728 bytes in 107 blocks ==18202== newarray : 6,456 bytes in 58 blocks ==18202== suppressed: 743,284 bytes in 9,851 blocks ==18202== Reachable blocks (those to which a pointer was found) are not shown. ==18202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18202== ==18202== For counts of detected and suppressed errors, rerun with: -v ==18202== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1821== Memcheck, a memory error detector ==1821== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1821== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1821== Command: ./client-test Client::Sync::eds_event::testMerge ==1821== Parent PID: 114 ==1821== ==1821== ==1821== HEAP SUMMARY: ==1821== in use at exit: 6,998,494 bytes in 57,844 blocks ==1821== total heap usage: 4,073,639 allocs, 4,015,735 frees, 599,320,840 bytes allocated ==1821== ==1821== LEAK SUMMARY: ==1821== definitely lost: 0 bytes in 0 blocks ==1821== indirectly lost: 0 bytes in 0 blocks ==1821== possibly lost: 960 bytes in 3 blocks ==1821== still reachable: 6,232,451 bytes in 48,028 blocks ==1821== of which reachable via heuristic: ==1821== length64 : 6,024 bytes in 99 blocks ==1821== newarray : 6,408 bytes in 55 blocks ==1821== suppressed: 677,075 bytes in 9,142 blocks ==1821== Reachable blocks (those to which a pointer was found) are not shown. ==1821== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1821== ==1821== For counts of detected and suppressed errors, rerun with: -v ==1821== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==18481== Memcheck, a memory error detector ==18481== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18481== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18481== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate ==18481== Parent PID: 18202 ==18481== ==18497== Memcheck, a memory error detector ==18497== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18497== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18497== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate ==18497== Parent PID: 18202 ==18497== ==18513== Memcheck, a memory error detector ==18513== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18513== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18513== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate ==18513== Parent PID: 18202 ==18513== ==18531== Memcheck, a memory error detector ==18531== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18531== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18531== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testAddUpdate ==18531== Parent PID: 18202 ==18531== ==18540== Memcheck, a memory error detector ==18540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18540== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems ==18540== Parent PID: 114 ==18540== ==18540== ==18540== HEAP SUMMARY: ==18540== in use at exit: 7,090,166 bytes in 58,700 blocks ==18540== total heap usage: 4,571,893 allocs, 4,513,137 frees, 564,265,021 bytes allocated ==18540== ==18540== LEAK SUMMARY: ==18540== definitely lost: 0 bytes in 0 blocks ==18540== indirectly lost: 0 bytes in 0 blocks ==18540== possibly lost: 1,392 bytes in 4 blocks ==18540== still reachable: 6,231,406 bytes in 48,007 blocks ==18540== of which reachable via heuristic: ==18540== length64 : 6,728 bytes in 107 blocks ==18540== newarray : 6,456 bytes in 58 blocks ==18540== suppressed: 743,416 bytes in 9,833 blocks ==18540== Reachable blocks (those to which a pointer was found) are not shown. ==18540== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18540== ==18540== For counts of detected and suppressed errors, rerun with: -v ==18540== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==18777== Memcheck, a memory error detector ==18777== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18777== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18777== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems ==18777== Parent PID: 18540 ==18777== ==18793== Memcheck, a memory error detector ==18793== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18793== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18793== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems ==18793== Parent PID: 18540 ==18793== ==18809== Memcheck, a memory error detector ==18809== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18809== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18809== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems ==18809== Parent PID: 18540 ==18809== ==18827== Memcheck, a memory error detector ==18827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18827== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyItems ==18827== Parent PID: 18540 ==18827== ==18833== Memcheck, a memory error detector ==18833== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==18833== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==18833== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes ==18833== Parent PID: 114 ==18833== ==18833== ==18833== HEAP SUMMARY: ==18833== in use at exit: 7,092,829 bytes in 58,715 blocks ==18833== total heap usage: 6,028,081 allocs, 5,969,308 frees, 687,198,349 bytes allocated ==18833== ==18833== LEAK SUMMARY: ==18833== definitely lost: 0 bytes in 0 blocks ==18833== indirectly lost: 0 bytes in 0 blocks ==18833== possibly lost: 1,392 bytes in 4 blocks ==18833== still reachable: 6,235,529 bytes in 48,072 blocks ==18833== of which reachable via heuristic: ==18833== length64 : 6,728 bytes in 107 blocks ==18833== newarray : 6,456 bytes in 58 blocks ==18833== suppressed: 741,956 bytes in 9,783 blocks ==18833== Reachable blocks (those to which a pointer was found) are not shown. ==18833== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==18833== ==18833== For counts of detected and suppressed errors, rerun with: -v ==18833== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==19069== Memcheck, a memory error detector ==19069== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19069== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19069== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes ==19069== Parent PID: 18833 ==19069== ==19085== Memcheck, a memory error detector ==19085== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19085== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19085== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes ==19085== Parent PID: 18833 ==19085== ==19101== Memcheck, a memory error detector ==19101== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19101== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19101== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes ==19101== Parent PID: 18833 ==19101== ==19119== Memcheck, a memory error detector ==19119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19119== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testManyDeletes ==19119== Parent PID: 18833 ==19119== ==1918== Memcheck, a memory error detector ==1918== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1918== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1918== Command: ./client-test Client::Sync::eds_event::testMerge ==1918== Parent PID: 1821 ==1918== ==19194== Memcheck, a memory error detector ==19194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19194== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic ==19194== Parent PID: 114 ==19194== ==19194== ==19194== HEAP SUMMARY: ==19194== in use at exit: 7,092,282 bytes in 58,742 blocks ==19194== total heap usage: 6,077,710 allocs, 6,018,907 frees, 752,026,146 bytes allocated ==19194== ==19194== LEAK SUMMARY: ==19194== definitely lost: 0 bytes in 0 blocks ==19194== indirectly lost: 0 bytes in 0 blocks ==19194== possibly lost: 1,392 bytes in 4 blocks ==19194== still reachable: 6,231,890 bytes in 48,012 blocks ==19194== of which reachable via heuristic: ==19194== length64 : 6,728 bytes in 107 blocks ==19194== newarray : 6,456 bytes in 58 blocks ==19194== suppressed: 744,880 bytes in 9,868 blocks ==19194== Reachable blocks (those to which a pointer was found) are not shown. ==19194== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==19194== ==19194== For counts of detected and suppressed errors, rerun with: -v ==19194== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==195== Memcheck, a memory error detector ==195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==195== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSync ==195== Parent PID: 114 ==195== ==195== ==195== HEAP SUMMARY: ==195== in use at exit: 261,640 bytes in 3,725 blocks ==195== total heap usage: 108,260 allocs, 104,535 frees, 15,423,665 bytes allocated ==195== ==195== LEAK SUMMARY: ==195== definitely lost: 0 bytes in 0 blocks ==195== indirectly lost: 0 bytes in 0 blocks ==195== possibly lost: 96 bytes in 1 blocks ==195== still reachable: 44,695 bytes in 277 blocks ==195== of which reachable via heuristic: ==195== newarray : 5,800 bytes in 17 blocks ==195== suppressed: 216,849 bytes in 3,447 blocks ==195== Reachable blocks (those to which a pointer was found) are not shown. ==195== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==195== ==195== For counts of detected and suppressed errors, rerun with: -v ==195== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==19515== Memcheck, a memory error detector ==19515== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19515== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19515== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic ==19515== Parent PID: 19194 ==19515== ==19531== Memcheck, a memory error detector ==19531== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19531== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19531== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic ==19531== Parent PID: 19194 ==19531== ==19547== Memcheck, a memory error detector ==19547== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19547== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19547== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic ==19547== Parent PID: 19194 ==19547== ==19565== Memcheck, a memory error detector ==19565== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19565== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19565== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testSlowSyncSemantic ==19565== Parent PID: 19194 ==19565== ==196== Memcheck, a memory error detector ==196== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==196== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==196== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteSync ==196== Parent PID: 114 ==196== ==196== ==196== HEAP SUMMARY: ==196== in use at exit: 6,996,299 bytes in 57,832 blocks ==196== total heap usage: 702,449 allocs, 644,566 frees, 103,261,904 bytes allocated ==196== ==196== LEAK SUMMARY: ==196== definitely lost: 0 bytes in 0 blocks ==196== indirectly lost: 0 bytes in 0 blocks ==196== possibly lost: 960 bytes in 3 blocks ==196== still reachable: 6,230,623 bytes in 47,993 blocks ==196== of which reachable via heuristic: ==196== length64 : 5,984 bytes in 98 blocks ==196== newarray : 6,408 bytes in 55 blocks ==196== suppressed: 676,708 bytes in 9,165 blocks ==196== Reachable blocks (those to which a pointer was found) are not shown. ==196== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==196== ==196== For counts of detected and suppressed errors, rerun with: -v ==196== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1967== Memcheck, a memory error detector ==1967== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1967== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1967== Command: ./client-test Client::Sync::eds_event::testMerge ==1967== Parent PID: 1821 ==1967== ==19696== Memcheck, a memory error detector ==19696== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==19696== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==19696== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==19696== Parent PID: 114 ==19696== ==19696== ==19696== HEAP SUMMARY: ==19696== in use at exit: 7,093,861 bytes in 58,744 blocks ==19696== total heap usage: 5,479,453 allocs, 5,420,650 frees, 651,363,581 bytes allocated ==19696== ==19696== LEAK SUMMARY: ==19696== definitely lost: 0 bytes in 0 blocks ==19696== indirectly lost: 0 bytes in 0 blocks ==19696== possibly lost: 1,392 bytes in 4 blocks ==19696== still reachable: 6,235,881 bytes in 48,091 blocks ==19696== of which reachable via heuristic: ==19696== length64 : 6,728 bytes in 107 blocks ==19696== newarray : 6,456 bytes in 58 blocks ==19696== suppressed: 742,636 bytes in 9,793 blocks ==19696== Reachable blocks (those to which a pointer was found) are not shown. ==19696== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==19696== ==19696== For counts of detected and suppressed errors, rerun with: -v ==19696== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1988== Memcheck, a memory error detector ==1988== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1988== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1988== Command: ./client-test Client::Sync::eds_event::testMerge ==1988== Parent PID: 1821 ==1988== ==1992== Memcheck, a memory error detector ==1992== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1992== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1992== Command: ./client-test Client::Sync::eds_event::testTwinning ==1992== Parent PID: 114 ==1992== ==1992== ==1992== HEAP SUMMARY: ==1992== in use at exit: 6,997,082 bytes in 57,819 blocks ==1992== total heap usage: 3,075,440 allocs, 3,017,565 frees, 426,012,031 bytes allocated ==1992== ==1992== LEAK SUMMARY: ==1992== definitely lost: 0 bytes in 0 blocks ==1992== indirectly lost: 0 bytes in 0 blocks ==1992== possibly lost: 960 bytes in 3 blocks ==1992== still reachable: 6,231,159 bytes in 48,007 blocks ==1992== of which reachable via heuristic: ==1992== length64 : 6,024 bytes in 99 blocks ==1992== newarray : 6,408 bytes in 55 blocks ==1992== suppressed: 676,955 bytes in 9,138 blocks ==1992== Reachable blocks (those to which a pointer was found) are not shown. ==1992== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1992== ==1992== For counts of detected and suppressed errors, rerun with: -v ==1992== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==20011== Memcheck, a memory error detector ==20011== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20011== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20011== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20011== Parent PID: 19696 ==20011== ==20027== Memcheck, a memory error detector ==20027== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20027== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20027== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20027== Parent PID: 19696 ==20027== ==20043== Memcheck, a memory error detector ==20043== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20043== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20043== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20043== Parent PID: 19696 ==20043== ==20061== Memcheck, a memory error detector ==20061== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20061== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20061== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20061== Parent PID: 19696 ==20061== ==20077== Memcheck, a memory error detector ==20077== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20077== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20077== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20077== Parent PID: 19696 ==20077== ==20093== Memcheck, a memory error detector ==20093== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20093== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20093== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20093== Parent PID: 19696 ==20093== ==20109== Memcheck, a memory error detector ==20109== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20109== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20109== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20109== Parent PID: 19696 ==20109== ==20127== Memcheck, a memory error detector ==20127== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20127== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20127== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testComplexRefreshFromServerSemantic ==20127== Parent PID: 19696 ==20127== ==20217== Memcheck, a memory error detector ==20217== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20217== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20217== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20217== Parent PID: 114 ==20217== ==20217== ==20217== HEAP SUMMARY: ==20217== in use at exit: 7,096,001 bytes in 58,795 blocks ==20217== total heap usage: 5,374,334 allocs, 5,315,481 frees, 612,512,455 bytes allocated ==20217== ==20217== LEAK SUMMARY: ==20217== definitely lost: 0 bytes in 0 blocks ==20217== indirectly lost: 0 bytes in 0 blocks ==20217== possibly lost: 1,392 bytes in 4 blocks ==20217== still reachable: 6,236,218 bytes in 48,094 blocks ==20217== of which reachable via heuristic: ==20217== length64 : 6,728 bytes in 107 blocks ==20217== newarray : 6,456 bytes in 58 blocks ==20217== suppressed: 744,439 bytes in 9,841 blocks ==20217== Reachable blocks (those to which a pointer was found) are not shown. ==20217== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==20217== ==20217== For counts of detected and suppressed errors, rerun with: -v ==20217== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==20529== Memcheck, a memory error detector ==20529== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20529== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20529== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20529== Parent PID: 20217 ==20529== ==2053== Memcheck, a memory error detector ==2053== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2053== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2053== Command: ./client-test Client::Sync::eds_event::testTwinning ==2053== Parent PID: 1992 ==2053== ==20545== Memcheck, a memory error detector ==20545== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20545== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20545== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20545== Parent PID: 20217 ==20545== ==20561== Memcheck, a memory error detector ==20561== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20561== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20561== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20561== Parent PID: 20217 ==20561== ==20579== Memcheck, a memory error detector ==20579== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20579== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20579== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20579== Parent PID: 20217 ==20579== ==20595== Memcheck, a memory error detector ==20595== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20595== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20595== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20595== Parent PID: 20217 ==20595== ==20611== Memcheck, a memory error detector ==20611== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20611== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20611== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20611== Parent PID: 20217 ==20611== ==20627== Memcheck, a memory error detector ==20627== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20627== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20627== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20627== Parent PID: 20217 ==20627== ==20645== Memcheck, a memory error detector ==20645== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20645== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20645== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testDeleteBothSides ==20645== Parent PID: 20217 ==20645== ==20782== Memcheck, a memory error detector ==20782== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==20782== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==20782== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==20782== Parent PID: 114 ==20782== ==20782== ==20782== HEAP SUMMARY: ==20782== in use at exit: 7,093,525 bytes in 58,744 blocks ==20782== total heap usage: 5,092,912 allocs, 5,034,110 frees, 596,959,737 bytes allocated ==20782== ==20782== LEAK SUMMARY: ==20782== definitely lost: 0 bytes in 0 blocks ==20782== indirectly lost: 0 bytes in 0 blocks ==20782== possibly lost: 1,392 bytes in 4 blocks ==20782== still reachable: 6,234,366 bytes in 48,052 blocks ==20782== of which reachable via heuristic: ==20782== length64 : 6,728 bytes in 107 blocks ==20782== newarray : 6,456 bytes in 58 blocks ==20782== suppressed: 743,815 bytes in 9,832 blocks ==20782== Reachable blocks (those to which a pointer was found) are not shown. ==20782== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==20782== ==20782== For counts of detected and suppressed errors, rerun with: -v ==20782== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2091== Memcheck, a memory error detector ==2091== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2091== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2091== Command: ./client-test Client::Sync::eds_event::testTwinning ==2091== Parent PID: 1992 ==2091== ==2096== Memcheck, a memory error detector ==2096== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2096== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2096== Command: ./client-test Client::Sync::eds_event::testItems ==2096== Parent PID: 114 ==2096== ==2096== ==2096== HEAP SUMMARY: ==2096== in use at exit: 6,991,957 bytes in 57,734 blocks ==2096== total heap usage: 2,400,049 allocs, 2,342,261 frees, 317,777,469 bytes allocated ==2096== ==2096== LEAK SUMMARY: ==2096== definitely lost: 0 bytes in 0 blocks ==2096== indirectly lost: 0 bytes in 0 blocks ==2096== possibly lost: 960 bytes in 3 blocks ==2096== still reachable: 6,229,556 bytes in 47,983 blocks ==2096== of which reachable via heuristic: ==2096== length64 : 6,024 bytes in 99 blocks ==2096== newarray : 6,408 bytes in 55 blocks ==2096== suppressed: 673,433 bytes in 9,077 blocks ==2096== Reachable blocks (those to which a pointer was found) are not shown. ==2096== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2096== ==2096== For counts of detected and suppressed errors, rerun with: -v ==2096== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==21099== Memcheck, a memory error detector ==21099== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21099== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21099== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21099== Parent PID: 20782 ==21099== ==21115== Memcheck, a memory error detector ==21115== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21115== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21115== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21115== Parent PID: 20782 ==21115== ==21131== Memcheck, a memory error detector ==21131== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21131== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21131== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21131== Parent PID: 20782 ==21131== ==21149== Memcheck, a memory error detector ==21149== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21149== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21149== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21149== Parent PID: 20782 ==21149== ==21231== Memcheck, a memory error detector ==21231== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21231== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21231== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21231== Parent PID: 20782 ==21231== ==21247== Memcheck, a memory error detector ==21247== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21247== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21247== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21247== Parent PID: 20782 ==21247== ==21263== Memcheck, a memory error detector ==21263== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21263== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21263== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21263== Parent PID: 20782 ==21263== ==21281== Memcheck, a memory error detector ==21281== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21281== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21281== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testUpdate ==21281== Parent PID: 20782 ==21281== ==21289== Memcheck, a memory error detector ==21289== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21289== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21289== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21289== Parent PID: 114 ==21289== ==21289== ==21289== HEAP SUMMARY: ==21289== in use at exit: 7,089,572 bytes in 58,662 blocks ==21289== total heap usage: 5,815,209 allocs, 5,756,488 frees, 674,741,597 bytes allocated ==21289== ==21289== LEAK SUMMARY: ==21289== definitely lost: 0 bytes in 0 blocks ==21289== indirectly lost: 0 bytes in 0 blocks ==21289== possibly lost: 1,392 bytes in 4 blocks ==21289== still reachable: 6,232,548 bytes in 48,024 blocks ==21289== of which reachable via heuristic: ==21289== length64 : 6,728 bytes in 107 blocks ==21289== newarray : 6,456 bytes in 58 blocks ==21289== suppressed: 741,680 bytes in 9,778 blocks ==21289== Reachable blocks (those to which a pointer was found) are not shown. ==21289== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==21289== ==21289== For counts of detected and suppressed errors, rerun with: -v ==21289== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2157== Memcheck, a memory error detector ==2157== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2157== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2157== Command: ./client-test Client::Sync::eds_event::testItems ==2157== Parent PID: 2096 ==2157== ==21604== Memcheck, a memory error detector ==21604== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21604== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21604== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21604== Parent PID: 21289 ==21604== ==21620== Memcheck, a memory error detector ==21620== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21620== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21620== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21620== Parent PID: 21289 ==21620== ==21636== Memcheck, a memory error detector ==21636== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21636== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21636== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21636== Parent PID: 21289 ==21636== ==21654== Memcheck, a memory error detector ==21654== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21654== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21654== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21654== Parent PID: 21289 ==21654== ==21803== Memcheck, a memory error detector ==21803== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21803== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21803== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21803== Parent PID: 21289 ==21803== ==21819== Memcheck, a memory error detector ==21819== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21819== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21819== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21819== Parent PID: 21289 ==21819== ==21835== Memcheck, a memory error detector ==21835== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21835== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21835== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21835== Parent PID: 21289 ==21835== ==21853== Memcheck, a memory error detector ==21853== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21853== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21853== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMerge ==21853== Parent PID: 21289 ==21853== ==21861== Memcheck, a memory error detector ==21861== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==21861== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==21861== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==21861== Parent PID: 114 ==21861== ==21861== ==21861== HEAP SUMMARY: ==21861== in use at exit: 7,096,225 bytes in 58,782 blocks ==21861== total heap usage: 5,020,313 allocs, 4,961,475 frees, 573,438,811 bytes allocated ==21861== ==21861== LEAK SUMMARY: ==21861== definitely lost: 0 bytes in 0 blocks ==21861== indirectly lost: 0 bytes in 0 blocks ==21861== possibly lost: 1,392 bytes in 4 blocks ==21861== still reachable: 6,238,161 bytes in 48,127 blocks ==21861== of which reachable via heuristic: ==21861== length64 : 6,728 bytes in 107 blocks ==21861== newarray : 6,456 bytes in 58 blocks ==21861== suppressed: 742,720 bytes in 9,795 blocks ==21861== Reachable blocks (those to which a pointer was found) are not shown. ==21861== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==21861== ==21861== For counts of detected and suppressed errors, rerun with: -v ==21861== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2187== Memcheck, a memory error detector ==2187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2187== Command: ./client-test Client::Sync::eds_event::testItems ==2187== Parent PID: 2096 ==2187== ==2191== Memcheck, a memory error detector ==2191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2191== Command: ./client-test Client::Sync::eds_event::testItemsXML ==2191== Parent PID: 114 ==2191== ==2191== ==2191== HEAP SUMMARY: ==2191== in use at exit: 6,993,558 bytes in 57,765 blocks ==2191== total heap usage: 2,413,758 allocs, 2,355,939 frees, 317,278,522 bytes allocated ==2191== ==2191== LEAK SUMMARY: ==2191== definitely lost: 0 bytes in 0 blocks ==2191== indirectly lost: 0 bytes in 0 blocks ==2191== possibly lost: 960 bytes in 3 blocks ==2191== still reachable: 6,229,660 bytes in 47,982 blocks ==2191== of which reachable via heuristic: ==2191== length64 : 6,024 bytes in 99 blocks ==2191== newarray : 6,408 bytes in 55 blocks ==2191== suppressed: 674,930 bytes in 9,109 blocks ==2191== Reachable blocks (those to which a pointer was found) are not shown. ==2191== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2191== ==2191== For counts of detected and suppressed errors, rerun with: -v ==2191== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==220== Memcheck, a memory error detector ==220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==220== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalSync ==220== Parent PID: 114 ==220== ==220== ==220== HEAP SUMMARY: ==220== in use at exit: 6,999,129 bytes in 57,871 blocks ==220== total heap usage: 697,448 allocs, 639,526 frees, 102,853,009 bytes allocated ==220== ==220== LEAK SUMMARY: ==220== definitely lost: 0 bytes in 0 blocks ==220== indirectly lost: 0 bytes in 0 blocks ==220== possibly lost: 960 bytes in 3 blocks ==220== still reachable: 6,230,671 bytes in 47,995 blocks ==220== of which reachable via heuristic: ==220== length64 : 5,984 bytes in 98 blocks ==220== newarray : 6,408 bytes in 55 blocks ==220== suppressed: 679,322 bytes in 9,200 blocks ==220== Reachable blocks (those to which a pointer was found) are not shown. ==220== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==220== ==220== For counts of detected and suppressed errors, rerun with: -v ==220== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==22011== Memcheck, a memory error detector ==22011== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22011== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22011== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22011== Parent PID: 21861 ==22011== ==22037== Memcheck, a memory error detector ==22037== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22037== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22037== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22037== Parent PID: 21861 ==22037== ==22063== Memcheck, a memory error detector ==22063== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22063== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22063== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22063== Parent PID: 21861 ==22063== ==22093== Memcheck, a memory error detector ==22093== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22093== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22093== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22093== Parent PID: 21861 ==22093== ==22190== Memcheck, a memory error detector ==22190== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22190== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22190== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22190== Parent PID: 21861 ==22190== ==22206== Memcheck, a memory error detector ==22206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22206== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22206== Parent PID: 21861 ==22206== ==22222== Memcheck, a memory error detector ==22222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22222== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22222== Parent PID: 21861 ==22222== ==22240== Memcheck, a memory error detector ==22240== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22240== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22240== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testTwinning ==22240== Parent PID: 21861 ==22240== ==22247== Memcheck, a memory error detector ==22247== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22247== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22247== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22247== Parent PID: 114 ==22247== ==22247== ==22247== HEAP SUMMARY: ==22247== in use at exit: 7,094,573 bytes in 58,756 blocks ==22247== total heap usage: 4,102,796 allocs, 4,043,986 frees, 445,707,024 bytes allocated ==22247== ==22247== LEAK SUMMARY: ==22247== definitely lost: 0 bytes in 0 blocks ==22247== indirectly lost: 0 bytes in 0 blocks ==22247== possibly lost: 1,392 bytes in 4 blocks ==22247== still reachable: 6,236,725 bytes in 48,104 blocks ==22247== of which reachable via heuristic: ==22247== length64 : 6,728 bytes in 107 blocks ==22247== newarray : 6,456 bytes in 58 blocks ==22247== suppressed: 742,504 bytes in 9,792 blocks ==22247== Reachable blocks (those to which a pointer was found) are not shown. ==22247== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==22247== ==22247== For counts of detected and suppressed errors, rerun with: -v ==22247== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==22400== Memcheck, a memory error detector ==22400== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22400== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22400== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22400== Parent PID: 22247 ==22400== ==22426== Memcheck, a memory error detector ==22426== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22426== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22426== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22426== Parent PID: 22247 ==22426== ==22452== Memcheck, a memory error detector ==22452== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22452== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22452== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22452== Parent PID: 22247 ==22452== ==22481== Memcheck, a memory error detector ==22481== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22481== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22481== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22481== Parent PID: 22247 ==22481== ==2253== Memcheck, a memory error detector ==2253== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2253== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2253== Command: ./client-test Client::Sync::eds_event::testItemsXML ==2253== Parent PID: 2191 ==2253== ==22539== Memcheck, a memory error detector ==22539== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22539== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22539== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22539== Parent PID: 22247 ==22539== ==22555== Memcheck, a memory error detector ==22555== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22555== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22555== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22555== Parent PID: 22247 ==22555== ==22571== Memcheck, a memory error detector ==22571== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22571== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22571== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22571== Parent PID: 22247 ==22571== ==22589== Memcheck, a memory error detector ==22589== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22589== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22589== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItems ==22589== Parent PID: 22247 ==22589== ==22598== Memcheck, a memory error detector ==22598== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22598== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22598== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22598== Parent PID: 114 ==22598== ==22598== ==22598== HEAP SUMMARY: ==22598== in use at exit: 7,091,545 bytes in 58,702 blocks ==22598== total heap usage: 4,134,079 allocs, 4,075,323 frees, 445,845,851 bytes allocated ==22598== ==22598== LEAK SUMMARY: ==22598== definitely lost: 0 bytes in 0 blocks ==22598== indirectly lost: 0 bytes in 0 blocks ==22598== possibly lost: 1,392 bytes in 4 blocks ==22598== still reachable: 6,234,209 bytes in 48,058 blocks ==22598== of which reachable via heuristic: ==22598== length64 : 6,728 bytes in 107 blocks ==22598== newarray : 6,456 bytes in 58 blocks ==22598== suppressed: 741,992 bytes in 9,784 blocks ==22598== Reachable blocks (those to which a pointer was found) are not shown. ==22598== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==22598== ==22598== For counts of detected and suppressed errors, rerun with: -v ==22598== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==22746== Memcheck, a memory error detector ==22746== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22746== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22746== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22746== Parent PID: 22598 ==22746== ==22772== Memcheck, a memory error detector ==22772== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22772== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22772== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22772== Parent PID: 22598 ==22772== ==22798== Memcheck, a memory error detector ==22798== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22798== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22798== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22798== Parent PID: 22598 ==22798== ==22827== Memcheck, a memory error detector ==22827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22827== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22827== Parent PID: 22598 ==22827== ==2283== Memcheck, a memory error detector ==2283== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2283== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2283== Command: ./client-test Client::Sync::eds_event::testItemsXML ==2283== Parent PID: 2191 ==2283== ==2288== Memcheck, a memory error detector ==2288== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2288== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2288== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==2288== Parent PID: 114 ==2288== ==2288== ==2288== HEAP SUMMARY: ==2288== in use at exit: 6,996,946 bytes in 57,815 blocks ==2288== total heap usage: 2,445,045 allocs, 2,387,176 frees, 355,899,388 bytes allocated ==2288== ==2288== LEAK SUMMARY: ==2288== definitely lost: 0 bytes in 0 blocks ==2288== indirectly lost: 0 bytes in 0 blocks ==2288== possibly lost: 960 bytes in 3 blocks ==2288== still reachable: 6,230,999 bytes in 48,004 blocks ==2288== of which reachable via heuristic: ==2288== length64 : 6,024 bytes in 99 blocks ==2288== newarray : 6,408 bytes in 55 blocks ==2288== suppressed: 676,979 bytes in 9,137 blocks ==2288== Reachable blocks (those to which a pointer was found) are not shown. ==2288== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2288== ==2288== For counts of detected and suppressed errors, rerun with: -v ==2288== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==22886== Memcheck, a memory error detector ==22886== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22886== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22886== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22886== Parent PID: 22598 ==22886== ==22902== Memcheck, a memory error detector ==22902== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22902== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22902== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22902== Parent PID: 22598 ==22902== ==22918== Memcheck, a memory error detector ==22918== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22918== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22918== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22918== Parent PID: 22598 ==22918== ==22936== Memcheck, a memory error detector ==22936== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22936== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22936== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testItemsXML ==22936== Parent PID: 22598 ==22936== ==22943== Memcheck, a memory error detector ==22943== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==22943== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==22943== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg ==22943== Parent PID: 114 ==22943== ==22943== ==22943== HEAP SUMMARY: ==22943== in use at exit: 7,091,767 bytes in 58,715 blocks ==22943== total heap usage: 4,772,734 allocs, 4,713,965 frees, 573,142,582 bytes allocated ==22943== ==22943== LEAK SUMMARY: ==22943== definitely lost: 0 bytes in 0 blocks ==22943== indirectly lost: 0 bytes in 0 blocks ==22943== possibly lost: 1,392 bytes in 4 blocks ==22943== still reachable: 6,232,852 bytes in 48,026 blocks ==22943== of which reachable via heuristic: ==22943== length64 : 6,728 bytes in 107 blocks ==22943== newarray : 6,456 bytes in 58 blocks ==22943== suppressed: 743,571 bytes in 9,829 blocks ==22943== Reachable blocks (those to which a pointer was found) are not shown. ==22943== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==22943== ==22943== For counts of detected and suppressed errors, rerun with: -v ==22943== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==23150== Memcheck, a memory error detector ==23150== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23150== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23150== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg ==23150== Parent PID: 22943 ==23150== ==23166== Memcheck, a memory error detector ==23166== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23166== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23166== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg ==23166== Parent PID: 22943 ==23166== ==23182== Memcheck, a memory error detector ==23182== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23182== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23182== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg ==23182== Parent PID: 22943 ==23182== ==23201== Memcheck, a memory error detector ==23201== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23201== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23201== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testMaxMsg ==23201== Parent PID: 22943 ==23201== ==23209== Memcheck, a memory error detector ==23209== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23209== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23209== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject ==23209== Parent PID: 114 ==23209== ==23209== ==23209== HEAP SUMMARY: ==23209== in use at exit: 7,093,163 bytes in 58,780 blocks ==23209== total heap usage: 5,624,811 allocs, 5,565,977 frees, 636,600,488 bytes allocated ==23209== ==23209== LEAK SUMMARY: ==23209== definitely lost: 0 bytes in 0 blocks ==23209== indirectly lost: 0 bytes in 0 blocks ==23209== possibly lost: 960 bytes in 3 blocks ==23209== still reachable: 6,231,475 bytes in 48,007 blocks ==23209== of which reachable via heuristic: ==23209== length64 : 6,728 bytes in 107 blocks ==23209== newarray : 6,456 bytes in 58 blocks ==23209== suppressed: 746,776 bytes in 9,914 blocks ==23209== Reachable blocks (those to which a pointer was found) are not shown. ==23209== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==23209== ==23209== For counts of detected and suppressed errors, rerun with: -v ==23209== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 71 from 71) ==23421== Memcheck, a memory error detector ==23421== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23421== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23421== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject ==23421== Parent PID: 23209 ==23421== ==23437== Memcheck, a memory error detector ==23437== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23437== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23437== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject ==23437== Parent PID: 23209 ==23437== ==23453== Memcheck, a memory error detector ==23453== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23453== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23453== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject ==23453== Parent PID: 23209 ==23453== ==23472== Memcheck, a memory error detector ==23472== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23472== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23472== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testLargeObject ==23472== Parent PID: 23209 ==23472== ==23478== Memcheck, a memory error detector ==23478== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23478== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23478== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromServer ==23478== Parent PID: 114 ==23478== ==23478== ==23478== HEAP SUMMARY: ==23478== in use at exit: 261,640 bytes in 3,725 blocks ==23478== total heap usage: 109,580 allocs, 105,855 frees, 15,543,307 bytes allocated ==23478== ==23478== LEAK SUMMARY: ==23478== definitely lost: 0 bytes in 0 blocks ==23478== indirectly lost: 0 bytes in 0 blocks ==23478== possibly lost: 96 bytes in 1 blocks ==23478== still reachable: 44,695 bytes in 277 blocks ==23478== of which reachable via heuristic: ==23478== newarray : 5,800 bytes in 17 blocks ==23478== suppressed: 216,849 bytes in 3,447 blocks ==23478== Reachable blocks (those to which a pointer was found) are not shown. ==23478== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==23478== ==23478== For counts of detected and suppressed errors, rerun with: -v ==23478== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==23479== Memcheck, a memory error detector ==23479== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23479== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23479== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromClient ==23479== Parent PID: 114 ==23479== ==23479== ==23479== HEAP SUMMARY: ==23479== in use at exit: 7,091,110 bytes in 58,697 blocks ==23479== total heap usage: 7,085,885 allocs, 7,027,129 frees, 796,068,573 bytes allocated ==23479== ==23479== LEAK SUMMARY: ==23479== definitely lost: 0 bytes in 0 blocks ==23479== indirectly lost: 0 bytes in 0 blocks ==23479== possibly lost: 1,392 bytes in 4 blocks ==23479== still reachable: 6,234,102 bytes in 48,049 blocks ==23479== of which reachable via heuristic: ==23479== length64 : 6,728 bytes in 107 blocks ==23479== newarray : 6,456 bytes in 58 blocks ==23479== suppressed: 741,664 bytes in 9,788 blocks ==23479== Reachable blocks (those to which a pointer was found) are not shown. ==23479== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==23479== ==23479== For counts of detected and suppressed errors, rerun with: -v ==23479== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2357== Memcheck, a memory error detector ==2357== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2357== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2357== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==2357== Parent PID: 2288 ==2357== ==2361== Memcheck, a memory error detector ==2361== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2361== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2361== Command: ./client-test Client::Sync::eds_event::testLargeObject ==2361== Parent PID: 114 ==2361== ==2361== ==2361== HEAP SUMMARY: ==2361== in use at exit: 6,998,330 bytes in 57,886 blocks ==2361== total heap usage: 2,560,310 allocs, 2,502,370 frees, 343,867,700 bytes allocated ==2361== ==2361== LEAK SUMMARY: ==2361== definitely lost: 0 bytes in 0 blocks ==2361== indirectly lost: 0 bytes in 0 blocks ==2361== possibly lost: 960 bytes in 3 blocks ==2361== still reachable: 6,230,984 bytes in 48,000 blocks ==2361== of which reachable via heuristic: ==2361== length64 : 6,024 bytes in 99 blocks ==2361== newarray : 6,408 bytes in 55 blocks ==2361== suppressed: 678,210 bytes in 9,210 blocks ==2361== Reachable blocks (those to which a pointer was found) are not shown. ==2361== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2361== ==2361== For counts of detected and suppressed errors, rerun with: -v ==2361== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==24015== Memcheck, a memory error detector ==24015== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==24015== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==24015== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromRemote ==24015== Parent PID: 114 ==24015== ==24015== ==24015== HEAP SUMMARY: ==24015== in use at exit: 7,092,469 bytes in 58,714 blocks ==24015== total heap usage: 5,117,604 allocs, 5,058,832 frees, 599,370,673 bytes allocated ==24015== ==24015== LEAK SUMMARY: ==24015== definitely lost: 0 bytes in 0 blocks ==24015== indirectly lost: 0 bytes in 0 blocks ==24015== possibly lost: 1,392 bytes in 4 blocks ==24015== still reachable: 6,236,618 bytes in 48,095 blocks ==24015== of which reachable via heuristic: ==24015== length64 : 6,728 bytes in 107 blocks ==24015== newarray : 6,456 bytes in 58 blocks ==24015== suppressed: 740,507 bytes in 9,759 blocks ==24015== Reachable blocks (those to which a pointer was found) are not shown. ==24015== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==24015== ==24015== For counts of detected and suppressed errors, rerun with: -v ==24015== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==242== Memcheck, a memory error detector ==242== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==242== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==242== Command: ./client-test Client::Sync::eds_event::testTimeout ==242== Parent PID: 114 ==242== ==242== ==242== HEAP SUMMARY: ==242== in use at exit: 6,972,354 bytes in 57,463 blocks ==242== total heap usage: 677,388 allocs, 619,925 frees, 97,760,485 bytes allocated ==242== ==242== LEAK SUMMARY: ==242== definitely lost: 0 bytes in 0 blocks ==242== indirectly lost: 0 bytes in 0 blocks ==242== possibly lost: 528 bytes in 2 blocks ==242== still reachable: 6,221,443 bytes in 47,892 blocks ==242== of which reachable via heuristic: ==242== length64 : 5,416 bytes in 91 blocks ==242== newarray : 6,376 bytes in 53 blocks ==242== suppressed: 664,751 bytes in 8,919 blocks ==242== Reachable blocks (those to which a pointer was found) are not shown. ==242== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==242== ==242== For counts of detected and suppressed errors, rerun with: -v ==242== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==2430== Memcheck, a memory error detector ==2430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2430== Command: ./client-test Client::Sync::eds_event::testLargeObject ==2430== Parent PID: 2361 ==2430== ==2434== Memcheck, a memory error detector ==2434== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2434== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2434== Command: ./client-test Client::Sync::eds_event::testOneWayFromServer ==2434== Parent PID: 114 ==2434== ==2434== ==2434== HEAP SUMMARY: ==2434== in use at exit: 261,624 bytes in 3,723 blocks ==2434== total heap usage: 108,570 allocs, 104,847 frees, 15,446,822 bytes allocated ==2434== ==2434== LEAK SUMMARY: ==2434== definitely lost: 0 bytes in 0 blocks ==2434== indirectly lost: 0 bytes in 0 blocks ==2434== possibly lost: 96 bytes in 1 blocks ==2434== still reachable: 44,695 bytes in 277 blocks ==2434== of which reachable via heuristic: ==2434== newarray : 5,800 bytes in 17 blocks ==2434== suppressed: 216,833 bytes in 3,445 blocks ==2434== Reachable blocks (those to which a pointer was found) are not shown. ==2434== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2434== ==2434== For counts of detected and suppressed errors, rerun with: -v ==2434== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==2435== Memcheck, a memory error detector ==2435== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2435== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2435== Command: ./client-test Client::Sync::eds_event::testOneWayFromClient ==2435== Parent PID: 114 ==2435== ==2435== ==2435== HEAP SUMMARY: ==2435== in use at exit: 6,994,042 bytes in 57,764 blocks ==2435== total heap usage: 4,020,629 allocs, 3,962,806 frees, 574,362,284 bytes allocated ==2435== ==2435== LEAK SUMMARY: ==2435== definitely lost: 0 bytes in 0 blocks ==2435== indirectly lost: 0 bytes in 0 blocks ==2435== possibly lost: 960 bytes in 3 blocks ==2435== still reachable: 6,229,216 bytes in 47,976 blocks ==2435== of which reachable via heuristic: ==2435== length64 : 6,024 bytes in 99 blocks ==2435== newarray : 6,408 bytes in 55 blocks ==2435== suppressed: 675,858 bytes in 9,114 blocks ==2435== Reachable blocks (those to which a pointer was found) are not shown. ==2435== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2435== ==2435== For counts of detected and suppressed errors, rerun with: -v ==2435== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==24464== Memcheck, a memory error detector ==24464== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==24464== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==24464== Command: ./client-test Client::Sync::eds_event_eds_task_eds_memo_eds_contact::testOneWayFromLocal ==24464== Parent PID: 114 ==24464== ==24464== ==24464== HEAP SUMMARY: ==24464== in use at exit: 7,097,672 bytes in 58,797 blocks ==24464== total heap usage: 5,833,092 allocs, 5,774,236 frees, 674,212,787 bytes allocated ==24464== ==24464== LEAK SUMMARY: ==24464== definitely lost: 0 bytes in 0 blocks ==24464== indirectly lost: 0 bytes in 0 blocks ==24464== possibly lost: 1,392 bytes in 4 blocks ==24464== still reachable: 6,239,412 bytes in 48,141 blocks ==24464== of which reachable via heuristic: ==24464== length64 : 6,728 bytes in 107 blocks ==24464== newarray : 6,456 bytes in 58 blocks ==24464== suppressed: 742,916 bytes in 9,796 blocks ==24464== Reachable blocks (those to which a pointer was found) are not shown. ==24464== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==24464== ==24464== For counts of detected and suppressed errors, rerun with: -v ==24464== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==2580== Memcheck, a memory error detector ==2580== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2580== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2580== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemote ==2580== Parent PID: 114 ==2580== ==2580== ==2580== HEAP SUMMARY: ==2580== in use at exit: 7,000,536 bytes in 57,874 blocks ==2580== total heap usage: 3,302,904 allocs, 3,244,972 frees, 487,659,874 bytes allocated ==2580== ==2580== LEAK SUMMARY: ==2580== definitely lost: 0 bytes in 0 blocks ==2580== indirectly lost: 0 bytes in 0 blocks ==2580== possibly lost: 960 bytes in 3 blocks ==2580== still reachable: 6,234,105 bytes in 48,054 blocks ==2580== of which reachable via heuristic: ==2580== length64 : 6,024 bytes in 99 blocks ==2580== newarray : 6,408 bytes in 55 blocks ==2580== suppressed: 677,463 bytes in 9,146 blocks ==2580== Reachable blocks (those to which a pointer was found) are not shown. ==2580== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2580== ==2580== For counts of detected and suppressed errors, rerun with: -v ==2580== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==264== Memcheck, a memory error detector ==264== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==264== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==264== Command: ./client-test Client::Sync::eds_event::testConversion ==264== Parent PID: 114 ==264== ==264== ==264== HEAP SUMMARY: ==264== in use at exit: 2,886,915 bytes in 29,860 blocks ==264== total heap usage: 374,885 allocs, 344,974 frees, 52,363,484 bytes allocated ==264== ==264== LEAK SUMMARY: ==264== definitely lost: 0 bytes in 0 blocks ==264== indirectly lost: 0 bytes in 0 blocks ==264== possibly lost: 960 bytes in 3 blocks ==264== still reachable: 2,209,206 bytes in 21,246 blocks ==264== of which reachable via heuristic: ==264== length64 : 5,096 bytes in 83 blocks ==264== newarray : 6,328 bytes in 50 blocks ==264== suppressed: 604,261 bytes in 8,066 blocks ==264== Reachable blocks (those to which a pointer was found) are not shown. ==264== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==264== ==264== For counts of detected and suppressed errors, rerun with: -v ==264== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2704== Memcheck, a memory error detector ==2704== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2704== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2704== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocal ==2704== Parent PID: 114 ==2704== ==2704== ==2704== HEAP SUMMARY: ==2704== in use at exit: 6,998,394 bytes in 57,888 blocks ==2704== total heap usage: 3,704,317 allocs, 3,646,370 frees, 544,028,463 bytes allocated ==2704== ==2704== LEAK SUMMARY: ==2704== definitely lost: 0 bytes in 0 blocks ==2704== indirectly lost: 0 bytes in 0 blocks ==2704== possibly lost: 960 bytes in 3 blocks ==2704== still reachable: 6,230,984 bytes in 48,000 blocks ==2704== of which reachable via heuristic: ==2704== length64 : 6,024 bytes in 99 blocks ==2704== newarray : 6,408 bytes in 55 blocks ==2704== suppressed: 678,274 bytes in 9,212 blocks ==2704== Reachable blocks (those to which a pointer was found) are not shown. ==2704== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2704== ==2704== For counts of detected and suppressed errors, rerun with: -v ==2704== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==284== Memcheck, a memory error detector ==284== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==284== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==284== Command: ./client-test Client::Sync::eds_event::testConversion ==284== Parent PID: 264 ==284== ==2857== Memcheck, a memory error detector ==2857== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2857== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2857== Command: ./client-test Client::Sync::eds_task::testDeleteAllRefresh ==2857== Parent PID: 114 ==2857== ==2857== ==2857== HEAP SUMMARY: ==2857== in use at exit: 261,672 bytes in 3,725 blocks ==2857== total heap usage: 108,301 allocs, 104,576 frees, 15,433,669 bytes allocated ==2857== ==2857== LEAK SUMMARY: ==2857== definitely lost: 0 bytes in 0 blocks ==2857== indirectly lost: 0 bytes in 0 blocks ==2857== possibly lost: 96 bytes in 1 blocks ==2857== still reachable: 44,695 bytes in 277 blocks ==2857== of which reachable via heuristic: ==2857== newarray : 5,800 bytes in 17 blocks ==2857== suppressed: 216,881 bytes in 3,447 blocks ==2857== Reachable blocks (those to which a pointer was found) are not shown. ==2857== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2857== ==2857== For counts of detected and suppressed errors, rerun with: -v ==2857== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==2858== Memcheck, a memory error detector ==2858== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2858== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2858== Command: ./client-test Client::Sync::eds_task::testTwoWaySync ==2858== Parent PID: 114 ==2858== ==2858== ==2858== HEAP SUMMARY: ==2858== in use at exit: 6,984,352 bytes in 57,612 blocks ==2858== total heap usage: 678,329 allocs, 620,666 frees, 101,706,150 bytes allocated ==2858== ==2858== LEAK SUMMARY: ==2858== definitely lost: 0 bytes in 0 blocks ==2858== indirectly lost: 0 bytes in 0 blocks ==2858== possibly lost: 1,824 bytes in 5 blocks ==2858== still reachable: 6,329,456 bytes in 48,132 blocks ==2858== of which reachable via heuristic: ==2858== length64 : 5,984 bytes in 98 blocks ==2858== newarray : 6,376 bytes in 53 blocks ==2858== suppressed: 564,896 bytes in 8,802 blocks ==2858== Reachable blocks (those to which a pointer was found) are not shown. ==2858== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2858== ==2858== For counts of detected and suppressed errors, rerun with: -v ==2858== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==2878== Memcheck, a memory error detector ==2878== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2878== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2878== Command: ./client-test Client::Sync::eds_task::testSlowSync ==2878== Parent PID: 114 ==2878== ==2878== ==2878== HEAP SUMMARY: ==2878== in use at exit: 6,984,621 bytes in 57,614 blocks ==2878== total heap usage: 676,804 allocs, 619,139 frees, 101,481,444 bytes allocated ==2878== ==2878== LEAK SUMMARY: ==2878== definitely lost: 0 bytes in 0 blocks ==2878== indirectly lost: 0 bytes in 0 blocks ==2878== possibly lost: 1,824 bytes in 5 blocks ==2878== still reachable: 6,329,112 bytes in 48,125 blocks ==2878== of which reachable via heuristic: ==2878== length64 : 5,984 bytes in 98 blocks ==2878== newarray : 6,376 bytes in 53 blocks ==2878== suppressed: 565,677 bytes in 8,813 blocks ==2878== Reachable blocks (those to which a pointer was found) are not shown. ==2878== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2878== ==2878== For counts of detected and suppressed errors, rerun with: -v ==2878== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==2898== Memcheck, a memory error detector ==2898== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2898== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2898== Command: ./client-test Client::Sync::eds_task::testRefreshFromServerSync ==2898== Parent PID: 114 ==2898== ==2898== ==2898== HEAP SUMMARY: ==2898== in use at exit: 6,984,304 bytes in 57,610 blocks ==2898== total heap usage: 677,292 allocs, 619,631 frees, 101,512,900 bytes allocated ==2898== ==2898== LEAK SUMMARY: ==2898== definitely lost: 0 bytes in 0 blocks ==2898== indirectly lost: 0 bytes in 0 blocks ==2898== possibly lost: 1,824 bytes in 5 blocks ==2898== still reachable: 6,329,464 bytes in 48,132 blocks ==2898== of which reachable via heuristic: ==2898== length64 : 5,984 bytes in 98 blocks ==2898== newarray : 6,376 bytes in 53 blocks ==2898== suppressed: 564,840 bytes in 8,800 blocks ==2898== Reachable blocks (those to which a pointer was found) are not shown. ==2898== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2898== ==2898== For counts of detected and suppressed errors, rerun with: -v ==2898== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==2918== Memcheck, a memory error detector ==2918== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2918== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2918== Command: ./client-test Client::Sync::eds_task::testRefreshFromClientSync ==2918== Parent PID: 114 ==2918== ==2918== ==2918== HEAP SUMMARY: ==2918== in use at exit: 261,640 bytes in 3,725 blocks ==2918== total heap usage: 108,310 allocs, 104,585 frees, 15,442,199 bytes allocated ==2918== ==2918== LEAK SUMMARY: ==2918== definitely lost: 0 bytes in 0 blocks ==2918== indirectly lost: 0 bytes in 0 blocks ==2918== possibly lost: 96 bytes in 1 blocks ==2918== still reachable: 44,695 bytes in 277 blocks ==2918== of which reachable via heuristic: ==2918== newarray : 5,800 bytes in 17 blocks ==2918== suppressed: 216,849 bytes in 3,447 blocks ==2918== Reachable blocks (those to which a pointer was found) are not shown. ==2918== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2918== ==2918== For counts of detected and suppressed errors, rerun with: -v ==2918== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==2919== Memcheck, a memory error detector ==2919== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2919== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2919== Command: ./client-test Client::Sync::eds_task::testRefreshFromRemoteSync ==2919== Parent PID: 114 ==2919== ==2919== ==2919== HEAP SUMMARY: ==2919== in use at exit: 6,994,029 bytes in 57,784 blocks ==2919== total heap usage: 676,903 allocs, 619,068 frees, 101,499,298 bytes allocated ==2919== ==2919== LEAK SUMMARY: ==2919== definitely lost: 0 bytes in 0 blocks ==2919== indirectly lost: 0 bytes in 0 blocks ==2919== possibly lost: 1,824 bytes in 5 blocks ==2919== still reachable: 6,332,400 bytes in 48,149 blocks ==2919== of which reachable via heuristic: ==2919== length64 : 5,984 bytes in 98 blocks ==2919== newarray : 6,376 bytes in 53 blocks ==2919== suppressed: 571,629 bytes in 8,957 blocks ==2919== Reachable blocks (those to which a pointer was found) are not shown. ==2919== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2919== ==2919== For counts of detected and suppressed errors, rerun with: -v ==2919== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==292== Memcheck, a memory error detector ==292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==292== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSemantic ==292== Parent PID: 114 ==292== ==292== ==292== HEAP SUMMARY: ==292== in use at exit: 6,996,694 bytes in 57,845 blocks ==292== total heap usage: 1,803,700 allocs, 1,745,801 frees, 267,047,591 bytes allocated ==292== ==292== LEAK SUMMARY: ==292== definitely lost: 0 bytes in 0 blocks ==292== indirectly lost: 0 bytes in 0 blocks ==292== possibly lost: 960 bytes in 3 blocks ==292== still reachable: 6,230,767 bytes in 47,996 blocks ==292== of which reachable via heuristic: ==292== length64 : 6,024 bytes in 99 blocks ==292== newarray : 6,408 bytes in 55 blocks ==292== suppressed: 676,791 bytes in 9,173 blocks ==292== Reachable blocks (those to which a pointer was found) are not shown. ==292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==292== ==292== For counts of detected and suppressed errors, rerun with: -v ==292== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2940== Memcheck, a memory error detector ==2940== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2940== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2940== Command: ./client-test Client::Sync::eds_task::testRefreshFromLocalSync ==2940== Parent PID: 114 ==2940== ==2940== ==2940== HEAP SUMMARY: ==2940== in use at exit: 6,991,881 bytes in 57,728 blocks ==2940== total heap usage: 676,865 allocs, 619,086 frees, 101,498,129 bytes allocated ==2940== ==2940== LEAK SUMMARY: ==2940== definitely lost: 0 bytes in 0 blocks ==2940== indirectly lost: 0 bytes in 0 blocks ==2940== possibly lost: 1,824 bytes in 5 blocks ==2940== still reachable: 6,330,672 bytes in 48,131 blocks ==2940== of which reachable via heuristic: ==2940== length64 : 5,984 bytes in 98 blocks ==2940== newarray : 6,376 bytes in 53 blocks ==2940== suppressed: 571,377 bytes in 8,921 blocks ==2940== Reachable blocks (those to which a pointer was found) are not shown. ==2940== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2940== ==2940== For counts of detected and suppressed errors, rerun with: -v ==2940== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==2960== Memcheck, a memory error detector ==2960== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2960== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2960== Command: ./client-test Client::Sync::eds_task::testConversion ==2960== Parent PID: 114 ==2960== ==2960== ==2960== HEAP SUMMARY: ==2960== in use at exit: 2,905,934 bytes in 30,206 blocks ==2960== total heap usage: 321,323 allocs, 291,066 frees, 46,939,449 bytes allocated ==2960== ==2960== LEAK SUMMARY: ==2960== definitely lost: 0 bytes in 0 blocks ==2960== indirectly lost: 0 bytes in 0 blocks ==2960== possibly lost: 1,824 bytes in 5 blocks ==2960== still reachable: 2,322,481 bytes in 21,567 blocks ==2960== of which reachable via heuristic: ==2960== length64 : 5,096 bytes in 83 blocks ==2960== newarray : 6,328 bytes in 50 blocks ==2960== suppressed: 508,973 bytes in 8,087 blocks ==2960== Reachable blocks (those to which a pointer was found) are not shown. ==2960== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2960== ==2960== For counts of detected and suppressed errors, rerun with: -v ==2960== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==2978== Memcheck, a memory error detector ==2978== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2978== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2978== Command: ./client-test Client::Sync::eds_task::testConversion ==2978== Parent PID: 2960 ==2978== ==2982== Memcheck, a memory error detector ==2982== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2982== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2982== Command: ./client-test Client::Sync::eds_task::testRefreshFromServerSemantic ==2982== Parent PID: 114 ==2982== ==2982== ==2982== HEAP SUMMARY: ==2982== in use at exit: 6,994,397 bytes in 57,790 blocks ==2982== total heap usage: 1,794,264 allocs, 1,736,420 frees, 265,690,060 bytes allocated ==2982== ==2982== LEAK SUMMARY: ==2982== definitely lost: 0 bytes in 0 blocks ==2982== indirectly lost: 0 bytes in 0 blocks ==2982== possibly lost: 960 bytes in 3 blocks ==2982== still reachable: 6,230,368 bytes in 47,990 blocks ==2982== of which reachable via heuristic: ==2982== length64 : 6,024 bytes in 99 blocks ==2982== newarray : 6,408 bytes in 55 blocks ==2982== suppressed: 674,893 bytes in 9,124 blocks ==2982== Reachable blocks (those to which a pointer was found) are not shown. ==2982== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2982== ==2982== For counts of detected and suppressed errors, rerun with: -v ==2982== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3124== Memcheck, a memory error detector ==3124== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3124== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3124== Command: ./client-test Client::Sync::eds_task::testRefreshFromClientSemantic ==3124== Parent PID: 114 ==3124== ==3124== ==3124== HEAP SUMMARY: ==3124== in use at exit: 261,632 bytes in 3,725 blocks ==3124== total heap usage: 108,315 allocs, 104,590 frees, 15,442,473 bytes allocated ==3124== ==3124== LEAK SUMMARY: ==3124== definitely lost: 0 bytes in 0 blocks ==3124== indirectly lost: 0 bytes in 0 blocks ==3124== possibly lost: 96 bytes in 1 blocks ==3124== still reachable: 44,695 bytes in 277 blocks ==3124== of which reachable via heuristic: ==3124== newarray : 5,800 bytes in 17 blocks ==3124== suppressed: 216,841 bytes in 3,447 blocks ==3124== Reachable blocks (those to which a pointer was found) are not shown. ==3124== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3124== ==3124== For counts of detected and suppressed errors, rerun with: -v ==3124== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==3125== Memcheck, a memory error detector ==3125== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3125== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3125== Command: ./client-test Client::Sync::eds_task::testRefreshStatus ==3125== Parent PID: 114 ==3125== ==3125== ==3125== HEAP SUMMARY: ==3125== in use at exit: 6,994,133 bytes in 57,775 blocks ==3125== total heap usage: 1,141,576 allocs, 1,083,749 frees, 161,782,588 bytes allocated ==3125== ==3125== LEAK SUMMARY: ==3125== definitely lost: 0 bytes in 0 blocks ==3125== indirectly lost: 0 bytes in 0 blocks ==3125== possibly lost: 960 bytes in 3 blocks ==3125== still reachable: 6,229,784 bytes in 47,986 blocks ==3125== of which reachable via heuristic: ==3125== length64 : 6,024 bytes in 99 blocks ==3125== newarray : 6,408 bytes in 55 blocks ==3125== suppressed: 675,213 bytes in 9,113 blocks ==3125== Reachable blocks (those to which a pointer was found) are not shown. ==3125== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3125== ==3125== For counts of detected and suppressed errors, rerun with: -v ==3125== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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_task::testTwoWayRestart ==3230== Parent PID: 114 ==3230== ==3230== ==3230== HEAP SUMMARY: ==3230== in use at exit: 6,994,286 bytes in 57,792 blocks ==3230== total heap usage: 1,478,949 allocs, 1,421,104 frees, 214,565,539 bytes allocated ==3230== ==3230== LEAK SUMMARY: ==3230== definitely lost: 0 bytes in 0 blocks ==3230== indirectly lost: 0 bytes in 0 blocks ==3230== possibly lost: 960 bytes in 3 blocks ==3230== still reachable: 6,230,529 bytes in 47,993 blocks ==3230== of which reachable via heuristic: ==3230== length64 : 6,024 bytes in 99 blocks ==3230== newarray : 6,408 bytes in 55 blocks ==3230== suppressed: 674,621 bytes in 9,123 blocks ==3230== Reachable blocks (those to which a pointer was found) are not shown. ==3230== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3230== ==3230== For counts of detected and suppressed errors, rerun with: -v ==3230== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3348== Memcheck, a memory error detector ==3348== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3348== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3348== Command: ./client-test Client::Sync::eds_task::testCopy ==3348== Parent PID: 114 ==3348== ==3348== ==3348== HEAP SUMMARY: ==3348== in use at exit: 6,996,730 bytes in 57,820 blocks ==3348== total heap usage: 2,615,886 allocs, 2,558,010 frees, 380,024,306 bytes allocated ==3348== ==3348== LEAK SUMMARY: ==3348== definitely lost: 0 bytes in 0 blocks ==3348== indirectly lost: 0 bytes in 0 blocks ==3348== possibly lost: 960 bytes in 3 blocks ==3348== still reachable: 6,232,972 bytes in 48,036 blocks ==3348== of which reachable via heuristic: ==3348== length64 : 6,024 bytes in 99 blocks ==3348== newarray : 6,408 bytes in 55 blocks ==3348== suppressed: 674,790 bytes in 9,110 blocks ==3348== Reachable blocks (those to which a pointer was found) are not shown. ==3348== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3348== ==3348== For counts of detected and suppressed errors, rerun with: -v ==3348== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==357== Memcheck, a memory error detector ==357== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==357== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==357== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSemantic ==357== Parent PID: 114 ==357== ==357== ==357== HEAP SUMMARY: ==357== in use at exit: 261,584 bytes in 3,723 blocks ==357== total heap usage: 108,258 allocs, 104,535 frees, 15,423,640 bytes allocated ==357== ==357== LEAK SUMMARY: ==357== definitely lost: 0 bytes in 0 blocks ==357== indirectly lost: 0 bytes in 0 blocks ==357== possibly lost: 96 bytes in 1 blocks ==357== still reachable: 44,695 bytes in 277 blocks ==357== of which reachable via heuristic: ==357== newarray : 5,800 bytes in 17 blocks ==357== suppressed: 216,793 bytes in 3,445 blocks ==357== Reachable blocks (those to which a pointer was found) are not shown. ==357== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==357== ==357== For counts of detected and suppressed errors, rerun with: -v ==357== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==3576== Memcheck, a memory error detector ==3576== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3576== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3576== Command: ./client-test Client::Sync::eds_task::testCopy ==3576== Parent PID: 3348 ==3576== ==358== Memcheck, a memory error detector ==358== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==358== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==358== Command: ./client-test Client::Sync::eds_event::testRefreshStatus ==358== Parent PID: 114 ==358== ==358== ==358== HEAP SUMMARY: ==358== in use at exit: 6,996,310 bytes in 57,830 blocks ==358== total heap usage: 1,145,161 allocs, 1,087,279 frees, 162,390,074 bytes allocated ==358== ==358== LEAK SUMMARY: ==358== definitely lost: 0 bytes in 0 blocks ==358== indirectly lost: 0 bytes in 0 blocks ==358== possibly lost: 960 bytes in 3 blocks ==358== still reachable: 6,230,543 bytes in 47,995 blocks ==358== of which reachable via heuristic: ==358== length64 : 6,024 bytes in 99 blocks ==358== newarray : 6,408 bytes in 55 blocks ==358== suppressed: 676,631 bytes in 9,159 blocks ==358== Reachable blocks (those to which a pointer was found) are not shown. ==358== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==358== ==358== For counts of detected and suppressed errors, rerun with: -v ==358== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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_task::testCopy ==3601== Parent PID: 3348 ==3601== ==3605== Memcheck, a memory error detector ==3605== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3605== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3605== Command: ./client-test Client::Sync::eds_task::testDelete ==3605== Parent PID: 114 ==3605== ==3605== ==3605== HEAP SUMMARY: ==3605== in use at exit: 6,998,005 bytes in 57,875 blocks ==3605== total heap usage: 3,280,603 allocs, 3,222,670 frees, 484,965,013 bytes allocated ==3605== ==3605== LEAK SUMMARY: ==3605== definitely lost: 0 bytes in 0 blocks ==3605== indirectly lost: 0 bytes in 0 blocks ==3605== possibly lost: 960 bytes in 3 blocks ==3605== still reachable: 6,230,905 bytes in 47,997 blocks ==3605== of which reachable via heuristic: ==3605== length64 : 6,024 bytes in 99 blocks ==3605== newarray : 6,408 bytes in 55 blocks ==3605== suppressed: 677,964 bytes in 9,202 blocks ==3605== Reachable blocks (those to which a pointer was found) are not shown. ==3605== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3605== ==3605== For counts of detected and suppressed errors, rerun with: -v ==3605== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3832== Memcheck, a memory error detector ==3832== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3832== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3832== Command: ./client-test Client::Sync::eds_task::testDelete ==3832== Parent PID: 3605 ==3832== ==3899== Memcheck, a memory error detector ==3899== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3899== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3899== Command: ./client-test Client::Sync::eds_task::testAddUpdate ==3899== Parent PID: 114 ==3899== ==3899== ==3899== HEAP SUMMARY: ==3899== in use at exit: 6,990,457 bytes in 57,708 blocks ==3899== total heap usage: 2,521,906 allocs, 2,464,142 frees, 374,578,086 bytes allocated ==3899== ==3899== LEAK SUMMARY: ==3899== definitely lost: 0 bytes in 0 blocks ==3899== indirectly lost: 0 bytes in 0 blocks ==3899== possibly lost: 960 bytes in 3 blocks ==3899== still reachable: 6,228,457 bytes in 47,976 blocks ==3899== of which reachable via heuristic: ==3899== length64 : 6,024 bytes in 99 blocks ==3899== newarray : 6,408 bytes in 55 blocks ==3899== suppressed: 673,032 bytes in 9,058 blocks ==3899== Reachable blocks (those to which a pointer was found) are not shown. ==3899== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3899== ==3899== For counts of detected and suppressed errors, rerun with: -v ==3899== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==409== Memcheck, a memory error detector ==409== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==409== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==409== Command: ./client-test Client::Sync::eds_event::testTwoWayRestart ==409== Parent PID: 114 ==409== ==409== ==409== HEAP SUMMARY: ==409== in use at exit: 6,996,332 bytes in 57,833 blocks ==409== total heap usage: 1,483,852 allocs, 1,425,966 frees, 215,235,379 bytes allocated ==409== ==409== LEAK SUMMARY: ==409== definitely lost: 0 bytes in 0 blocks ==409== indirectly lost: 0 bytes in 0 blocks ==409== possibly lost: 960 bytes in 3 blocks ==409== still reachable: 6,230,464 bytes in 47,990 blocks ==409== of which reachable via heuristic: ==409== length64 : 6,024 bytes in 99 blocks ==409== newarray : 6,408 bytes in 55 blocks ==409== suppressed: 676,900 bytes in 9,169 blocks ==409== Reachable blocks (those to which a pointer was found) are not shown. ==409== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==409== ==409== For counts of detected and suppressed errors, rerun with: -v ==409== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4103== Memcheck, a memory error detector ==4103== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4103== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4103== Command: ./client-test Client::Sync::eds_task::testAddUpdate ==4103== Parent PID: 3899 ==4103== ==4107== Memcheck, a memory error detector ==4107== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4107== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4107== Command: ./client-test Client::Sync::eds_task::testManyItems ==4107== Parent PID: 114 ==4107== ==4107== ==4107== HEAP SUMMARY: ==4107== in use at exit: 6,994,486 bytes in 57,792 blocks ==4107== total heap usage: 2,698,636 allocs, 2,640,788 frees, 400,880,335 bytes allocated ==4107== ==4107== LEAK SUMMARY: ==4107== definitely lost: 0 bytes in 0 blocks ==4107== indirectly lost: 0 bytes in 0 blocks ==4107== possibly lost: 960 bytes in 3 blocks ==4107== still reachable: 6,230,705 bytes in 47,996 blocks ==4107== of which reachable via heuristic: ==4107== length64 : 6,024 bytes in 99 blocks ==4107== newarray : 6,408 bytes in 55 blocks ==4107== suppressed: 674,645 bytes in 9,120 blocks ==4107== Reachable blocks (those to which a pointer was found) are not shown. ==4107== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4107== ==4107== For counts of detected and suppressed errors, rerun with: -v ==4107== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4275== Memcheck, a memory error detector ==4275== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4275== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4275== Command: ./client-test Client::Sync::eds_task::testManyItems ==4275== Parent PID: 4107 ==4275== ==4279== Memcheck, a memory error detector ==4279== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4279== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4279== Command: ./client-test Client::Sync::eds_task::testManyDeletes ==4279== Parent PID: 114 ==4279== ==4279== ==4279== HEAP SUMMARY: ==4279== in use at exit: 6,984,937 bytes in 57,617 blocks ==4279== total heap usage: 3,495,160 allocs, 3,437,485 frees, 496,183,293 bytes allocated ==4279== ==4279== LEAK SUMMARY: ==4279== definitely lost: 0 bytes in 0 blocks ==4279== indirectly lost: 0 bytes in 0 blocks ==4279== possibly lost: 960 bytes in 3 blocks ==4279== still reachable: 6,227,473 bytes in 47,973 blocks ==4279== of which reachable via heuristic: ==4279== length64 : 6,024 bytes in 99 blocks ==4279== newarray : 6,408 bytes in 55 blocks ==4279== suppressed: 668,496 bytes in 8,970 blocks ==4279== Reachable blocks (those to which a pointer was found) are not shown. ==4279== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4279== ==4279== For counts of detected and suppressed errors, rerun with: -v ==4279== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4447== Memcheck, a memory error detector ==4447== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4447== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4447== Command: ./client-test Client::Sync::eds_task::testManyDeletes ==4447== Parent PID: 4279 ==4447== ==4505== Memcheck, a memory error detector ==4505== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4505== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4505== Command: ./client-test Client::Sync::eds_task::testSlowSyncSemantic ==4505== Parent PID: 114 ==4505== ==4505== ==4505== HEAP SUMMARY: ==4505== in use at exit: 6,987,292 bytes in 57,665 blocks ==4505== total heap usage: 4,206,000 allocs, 4,148,274 frees, 637,815,429 bytes allocated ==4505== ==4505== LEAK SUMMARY: ==4505== definitely lost: 0 bytes in 0 blocks ==4505== indirectly lost: 0 bytes in 0 blocks ==4505== possibly lost: 960 bytes in 3 blocks ==4505== still reachable: 6,227,561 bytes in 47,975 blocks ==4505== of which reachable via heuristic: ==4505== length64 : 6,024 bytes in 99 blocks ==4505== newarray : 6,408 bytes in 55 blocks ==4505== suppressed: 670,595 bytes in 9,014 blocks ==4505== Reachable blocks (those to which a pointer was found) are not shown. ==4505== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4505== ==4505== For counts of detected and suppressed errors, rerun with: -v ==4505== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==468== Memcheck, a memory error detector ==468== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==468== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==468== Command: ./client-test Client::Sync::eds_event::testCopy ==468== Parent PID: 114 ==468== ==468== ==468== HEAP SUMMARY: ==468== in use at exit: 6,998,776 bytes in 57,848 blocks ==468== total heap usage: 2,607,755 allocs, 2,549,851 frees, 380,297,089 bytes allocated ==468== ==468== LEAK SUMMARY: ==468== definitely lost: 0 bytes in 0 blocks ==468== indirectly lost: 0 bytes in 0 blocks ==468== possibly lost: 960 bytes in 3 blocks ==468== still reachable: 6,232,434 bytes in 48,028 blocks ==468== of which reachable via heuristic: ==468== length64 : 6,024 bytes in 99 blocks ==468== newarray : 6,408 bytes in 55 blocks ==468== suppressed: 677,374 bytes in 9,146 blocks ==468== Reachable blocks (those to which a pointer was found) are not shown. ==468== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==468== ==468== For counts of detected and suppressed errors, rerun with: -v ==468== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4730== Memcheck, a memory error detector ==4730== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4730== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4730== Command: ./client-test Client::Sync::eds_task::testSlowSyncSemantic ==4730== Parent PID: 4505 ==4730== ==4824== Memcheck, a memory error detector ==4824== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4824== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4824== Command: ./client-test Client::Sync::eds_task::testComplexRefreshFromServerSemantic ==4824== Parent PID: 114 ==4824== ==4824== ==4824== HEAP SUMMARY: ==4824== in use at exit: 6,994,310 bytes in 57,792 blocks ==4824== total heap usage: 3,625,808 allocs, 3,567,957 frees, 538,025,707 bytes allocated ==4824== ==4824== LEAK SUMMARY: ==4824== definitely lost: 0 bytes in 0 blocks ==4824== indirectly lost: 0 bytes in 0 blocks ==4824== possibly lost: 960 bytes in 3 blocks ==4824== still reachable: 6,230,705 bytes in 47,996 blocks ==4824== of which reachable via heuristic: ==4824== length64 : 6,024 bytes in 99 blocks ==4824== newarray : 6,408 bytes in 55 blocks ==4824== suppressed: 674,469 bytes in 9,120 blocks ==4824== Reachable blocks (those to which a pointer was found) are not shown. ==4824== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4824== ==4824== For counts of detected and suppressed errors, rerun with: -v ==4824== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5049== Memcheck, a memory error detector ==5049== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5049== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5049== Command: ./client-test Client::Sync::eds_task::testComplexRefreshFromServerSemantic ==5049== Parent PID: 4824 ==5049== ==5074== Memcheck, a memory error detector ==5074== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5074== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5074== Command: ./client-test Client::Sync::eds_task::testComplexRefreshFromServerSemantic ==5074== Parent PID: 4824 ==5074== ==5143== Memcheck, a memory error detector ==5143== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5143== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5143== Command: ./client-test Client::Sync::eds_task::testDeleteBothSides ==5143== Parent PID: 114 ==5143== ==5143== ==5143== HEAP SUMMARY: ==5143== in use at exit: 6,994,286 bytes in 57,790 blocks ==5143== total heap usage: 3,390,385 allocs, 3,332,537 frees, 491,193,297 bytes allocated ==5143== ==5143== LEAK SUMMARY: ==5143== definitely lost: 0 bytes in 0 blocks ==5143== indirectly lost: 0 bytes in 0 blocks ==5143== possibly lost: 960 bytes in 3 blocks ==5143== still reachable: 6,230,545 bytes in 47,993 blocks ==5143== of which reachable via heuristic: ==5143== length64 : 6,024 bytes in 99 blocks ==5143== newarray : 6,408 bytes in 55 blocks ==5143== suppressed: 674,605 bytes in 9,121 blocks ==5143== Reachable blocks (those to which a pointer was found) are not shown. ==5143== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5143== ==5143== For counts of detected and suppressed errors, rerun with: -v ==5143== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5368== Memcheck, a memory error detector ==5368== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5368== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5368== Command: ./client-test Client::Sync::eds_task::testDeleteBothSides ==5368== Parent PID: 5143 ==5368== ==5393== Memcheck, a memory error detector ==5393== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5393== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5393== Command: ./client-test Client::Sync::eds_task::testDeleteBothSides ==5393== Parent PID: 5143 ==5393== ==5495== Memcheck, a memory error detector ==5495== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5495== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5495== Command: ./client-test Client::Sync::eds_task::testAddBothSides ==5495== Parent PID: 114 ==5495== ==5495== ==5495== HEAP SUMMARY: ==5495== in use at exit: 261,656 bytes in 3,725 blocks ==5495== total heap usage: 108,331 allocs, 104,606 frees, 15,451,237 bytes allocated ==5495== ==5495== LEAK SUMMARY: ==5495== definitely lost: 0 bytes in 0 blocks ==5495== indirectly lost: 0 bytes in 0 blocks ==5495== possibly lost: 96 bytes in 1 blocks ==5495== still reachable: 44,695 bytes in 277 blocks ==5495== of which reachable via heuristic: ==5495== newarray : 5,800 bytes in 17 blocks ==5495== suppressed: 216,865 bytes in 3,447 blocks ==5495== Reachable blocks (those to which a pointer was found) are not shown. ==5495== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5495== ==5495== For counts of detected and suppressed errors, rerun with: -v ==5495== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==5496== Memcheck, a memory error detector ==5496== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5496== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5496== Command: ./client-test Client::Sync::eds_task::testAddBothSidesRefresh ==5496== Parent PID: 114 ==5496== ==5496== ==5496== HEAP SUMMARY: ==5496== in use at exit: 261,648 bytes in 3,725 blocks ==5496== total heap usage: 108,332 allocs, 104,607 frees, 15,451,312 bytes allocated ==5496== ==5496== LEAK SUMMARY: ==5496== definitely lost: 0 bytes in 0 blocks ==5496== indirectly lost: 0 bytes in 0 blocks ==5496== possibly lost: 96 bytes in 1 blocks ==5496== still reachable: 44,695 bytes in 277 blocks ==5496== of which reachable via heuristic: ==5496== newarray : 5,800 bytes in 17 blocks ==5496== suppressed: 216,857 bytes in 3,447 blocks ==5496== Reachable blocks (those to which a pointer was found) are not shown. ==5496== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5496== ==5496== For counts of detected and suppressed errors, rerun with: -v ==5496== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==5497== Memcheck, a memory error detector ==5497== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5497== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5497== Command: ./client-test Client::Sync::eds_task::testUpdate ==5497== Parent PID: 114 ==5497== ==5497== ==5497== HEAP SUMMARY: ==5497== in use at exit: 6,993,851 bytes in 57,777 blocks ==5497== total heap usage: 3,310,296 allocs, 3,252,461 frees, 486,857,237 bytes allocated ==5497== ==5497== LEAK SUMMARY: ==5497== definitely lost: 0 bytes in 0 blocks ==5497== indirectly lost: 0 bytes in 0 blocks ==5497== possibly lost: 960 bytes in 3 blocks ==5497== still reachable: 6,230,241 bytes in 47,987 blocks ==5497== of which reachable via heuristic: ==5497== length64 : 6,024 bytes in 99 blocks ==5497== newarray : 6,408 bytes in 55 blocks ==5497== suppressed: 674,642 bytes in 9,116 blocks ==5497== Reachable blocks (those to which a pointer was found) are not shown. ==5497== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5497== ==5497== For counts of detected and suppressed errors, rerun with: -v ==5497== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==564== Memcheck, a memory error detector ==564== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==564== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==564== Command: ./client-test Client::Sync::eds_event::testCopy ==564== Parent PID: 468 ==564== ==5726== Memcheck, a memory error detector ==5726== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5726== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5726== Command: ./client-test Client::Sync::eds_task::testUpdate ==5726== Parent PID: 5497 ==5726== ==580== Memcheck, a memory error detector ==580== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==580== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==580== Command: ./client-test Client::Sync::eds_event::testCopy ==580== Parent PID: 468 ==580== ==5803== Memcheck, a memory error detector ==5803== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5803== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5803== Command: ./client-test Client::Sync::eds_task::testUpdate ==5803== Parent PID: 5497 ==5803== ==5807== Memcheck, a memory error detector ==5807== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5807== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5807== Command: ./client-test Client::Sync::eds_task::testMerge ==5807== Parent PID: 114 ==5807== ==5807== ==5807== HEAP SUMMARY: ==5807== in use at exit: 6,993,339 bytes in 57,764 blocks ==5807== total heap usage: 4,093,761 allocs, 4,035,937 frees, 599,152,429 bytes allocated ==5807== ==5807== LEAK SUMMARY: ==5807== definitely lost: 0 bytes in 0 blocks ==5807== indirectly lost: 0 bytes in 0 blocks ==5807== possibly lost: 960 bytes in 3 blocks ==5807== still reachable: 6,229,697 bytes in 47,980 blocks ==5807== of which reachable via heuristic: ==5807== length64 : 6,024 bytes in 99 blocks ==5807== newarray : 6,408 bytes in 55 blocks ==5807== suppressed: 674,674 bytes in 9,110 blocks ==5807== Reachable blocks (those to which a pointer was found) are not shown. ==5807== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5807== ==5807== For counts of detected and suppressed errors, rerun with: -v ==5807== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==584== Memcheck, a memory error detector ==584== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==584== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==584== Command: ./client-test Client::Sync::eds_event::testDelete ==584== Parent PID: 114 ==584== ==584== ==584== HEAP SUMMARY: ==584== in use at exit: 6,995,004 bytes in 57,789 blocks ==584== total heap usage: 3,266,618 allocs, 3,208,771 frees, 485,075,218 bytes allocated ==584== ==584== LEAK SUMMARY: ==584== definitely lost: 0 bytes in 0 blocks ==584== indirectly lost: 0 bytes in 0 blocks ==584== possibly lost: 960 bytes in 3 blocks ==584== still reachable: 6,231,255 bytes in 48,008 blocks ==584== of which reachable via heuristic: ==584== length64 : 6,024 bytes in 99 blocks ==584== newarray : 6,408 bytes in 55 blocks ==584== suppressed: 674,781 bytes in 9,107 blocks ==584== Reachable blocks (those to which a pointer was found) are not shown. ==584== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==584== ==584== For counts of detected and suppressed errors, rerun with: -v ==584== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6034== Memcheck, a memory error detector ==6034== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6034== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6034== Command: ./client-test Client::Sync::eds_task::testMerge ==6034== Parent PID: 5807 ==6034== ==6160== Memcheck, a memory error detector ==6160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6160== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6160== Command: ./client-test Client::Sync::eds_task::testMerge ==6160== Parent PID: 5807 ==6160== ==6198== Memcheck, a memory error detector ==6198== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6198== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6198== Command: ./client-test Client::Sync::eds_task::testMerge ==6198== Parent PID: 5807 ==6198== ==6202== Memcheck, a memory error detector ==6202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6202== Command: ./client-test Client::Sync::eds_task::testTwinning ==6202== Parent PID: 114 ==6202== ==6202== ==6202== HEAP SUMMARY: ==6202== in use at exit: 6,996,311 bytes in 57,820 blocks ==6202== total heap usage: 2,544,718 allocs, 2,486,842 frees, 376,625,447 bytes allocated ==6202== ==6202== LEAK SUMMARY: ==6202== definitely lost: 0 bytes in 0 blocks ==6202== indirectly lost: 0 bytes in 0 blocks ==6202== possibly lost: 960 bytes in 3 blocks ==6202== still reachable: 6,230,449 bytes in 47,992 blocks ==6202== of which reachable via heuristic: ==6202== length64 : 6,024 bytes in 99 blocks ==6202== newarray : 6,408 bytes in 55 blocks ==6202== suppressed: 676,726 bytes in 9,152 blocks ==6202== Reachable blocks (those to which a pointer was found) are not shown. ==6202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6202== ==6202== For counts of detected and suppressed errors, rerun with: -v ==6202== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6333== Memcheck, a memory error detector ==6333== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6333== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6333== Command: ./client-test Client::Sync::eds_task::testTwinning ==6333== Parent PID: 6202 ==6333== ==6415== Memcheck, a memory error detector ==6415== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6415== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6415== Command: ./client-test Client::Sync::eds_task::testTwinning ==6415== Parent PID: 6202 ==6415== ==6419== Memcheck, a memory error detector ==6419== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6419== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6419== Command: ./client-test Client::Sync::eds_task::testItems ==6419== Parent PID: 114 ==6419== ==6419== ==6419== HEAP SUMMARY: ==6419== in use at exit: 6,998,275 bytes in 57,845 blocks ==6419== total heap usage: 1,895,492 allocs, 1,837,593 frees, 272,443,855 bytes allocated ==6419== ==6419== LEAK SUMMARY: ==6419== definitely lost: 0 bytes in 0 blocks ==6419== indirectly lost: 0 bytes in 0 blocks ==6419== possibly lost: 960 bytes in 3 blocks ==6419== still reachable: 6,234,189 bytes in 48,054 blocks ==6419== of which reachable via heuristic: ==6419== length64 : 6,024 bytes in 99 blocks ==6419== newarray : 6,408 bytes in 55 blocks ==6419== suppressed: 675,118 bytes in 9,117 blocks ==6419== Reachable blocks (those to which a pointer was found) are not shown. ==6419== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6419== ==6419== For counts of detected and suppressed errors, rerun with: -v ==6419== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6551== Memcheck, a memory error detector ==6551== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6551== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6551== Command: ./client-test Client::Sync::eds_task::testItems ==6551== Parent PID: 6419 ==6551== ==6606== Memcheck, a memory error detector ==6606== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6606== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6606== Command: ./client-test Client::Sync::eds_task::testItems ==6606== Parent PID: 6419 ==6606== ==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_task::testItemsXML ==6610== Parent PID: 114 ==6610== ==6610== ==6610== HEAP SUMMARY: ==6610== in use at exit: 6,994,126 bytes in 57,774 blocks ==6610== total heap usage: 1,903,956 allocs, 1,846,128 frees, 271,669,553 bytes allocated ==6610== ==6610== LEAK SUMMARY: ==6610== definitely lost: 0 bytes in 0 blocks ==6610== indirectly lost: 0 bytes in 0 blocks ==6610== possibly lost: 960 bytes in 3 blocks ==6610== still reachable: 6,229,801 bytes in 47,986 blocks ==6610== of which reachable via heuristic: ==6610== length64 : 6,024 bytes in 99 blocks ==6610== newarray : 6,408 bytes in 55 blocks ==6610== suppressed: 675,189 bytes in 9,112 blocks ==6610== Reachable blocks (those to which a pointer was found) are not shown. ==6610== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6610== ==6610== For counts of detected and suppressed errors, rerun with: -v ==6610== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6741== Memcheck, a memory error detector ==6741== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6741== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6741== Command: ./client-test Client::Sync::eds_task::testItemsXML ==6741== Parent PID: 6610 ==6741== ==6797== Memcheck, a memory error detector ==6797== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6797== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6797== Command: ./client-test Client::Sync::eds_task::testItemsXML ==6797== Parent PID: 6610 ==6797== ==6801== Memcheck, a memory error detector ==6801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6801== Command: ./client-test Client::Sync::eds_task::testMaxMsg ==6801== Parent PID: 114 ==6801== ==6801== ==6801== HEAP SUMMARY: ==6801== in use at exit: 6,995,519 bytes in 57,804 blocks ==6801== total heap usage: 2,182,257 allocs, 2,124,399 frees, 333,500,578 bytes allocated ==6801== ==6801== LEAK SUMMARY: ==6801== definitely lost: 0 bytes in 0 blocks ==6801== indirectly lost: 0 bytes in 0 blocks ==6801== possibly lost: 960 bytes in 3 blocks ==6801== still reachable: 6,230,065 bytes in 47,988 blocks ==6801== of which reachable via heuristic: ==6801== length64 : 6,024 bytes in 99 blocks ==6801== newarray : 6,408 bytes in 55 blocks ==6801== suppressed: 676,318 bytes in 9,140 blocks ==6801== Reachable blocks (those to which a pointer was found) are not shown. ==6801== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6801== ==6801== For counts of detected and suppressed errors, rerun with: -v ==6801== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==682== Memcheck, a memory error detector ==682== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==682== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==682== Command: ./client-test Client::Sync::eds_event::testDelete ==682== Parent PID: 584 ==682== ==6943== Memcheck, a memory error detector ==6943== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6943== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6943== Command: ./client-test Client::Sync::eds_task::testMaxMsg ==6943== Parent PID: 6801 ==6943== ==6947== Memcheck, a memory error detector ==6947== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6947== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6947== Command: ./client-test Client::Sync::eds_task::testLargeObject ==6947== Parent PID: 114 ==6947== ==6947== ==6947== HEAP SUMMARY: ==6947== in use at exit: 6,994,126 bytes in 57,774 blocks ==6947== total heap usage: 2,474,451 allocs, 2,416,623 frees, 335,650,012 bytes allocated ==6947== ==6947== LEAK SUMMARY: ==6947== definitely lost: 0 bytes in 0 blocks ==6947== indirectly lost: 0 bytes in 0 blocks ==6947== possibly lost: 960 bytes in 3 blocks ==6947== still reachable: 6,229,801 bytes in 47,986 blocks ==6947== of which reachable via heuristic: ==6947== length64 : 6,024 bytes in 99 blocks ==6947== newarray : 6,408 bytes in 55 blocks ==6947== suppressed: 675,189 bytes in 9,112 blocks ==6947== Reachable blocks (those to which a pointer was found) are not shown. ==6947== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6947== ==6947== For counts of detected and suppressed errors, rerun with: -v ==6947== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==707== Memcheck, a memory error detector ==707== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==707== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==707== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==707== Parent PID: 114 ==707== ==707== ==707== HEAP SUMMARY: ==707== in use at exit: 6,998,752 bytes in 57,846 blocks ==707== total heap usage: 2,515,608 allocs, 2,457,706 frees, 374,892,451 bytes allocated ==707== ==707== LEAK SUMMARY: ==707== definitely lost: 0 bytes in 0 blocks ==707== indirectly lost: 0 bytes in 0 blocks ==707== possibly lost: 960 bytes in 3 blocks ==707== still reachable: 6,232,610 bytes in 48,031 blocks ==707== of which reachable via heuristic: ==707== length64 : 6,024 bytes in 99 blocks ==707== newarray : 6,408 bytes in 55 blocks ==707== suppressed: 677,174 bytes in 9,141 blocks ==707== Reachable blocks (those to which a pointer was found) are not shown. ==707== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==707== ==707== For counts of detected and suppressed errors, rerun with: -v ==707== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7091== Memcheck, a memory error detector ==7091== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7091== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7091== Command: ./client-test Client::Sync::eds_task::testLargeObject ==7091== Parent PID: 6947 ==7091== ==7096== Memcheck, a memory error detector ==7096== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7096== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7096== Command: ./client-test Client::Sync::eds_task::testOneWayFromServer ==7096== Parent PID: 114 ==7096== ==7096== ==7096== HEAP SUMMARY: ==7096== in use at exit: 261,640 bytes in 3,725 blocks ==7096== total heap usage: 108,622 allocs, 104,897 frees, 15,464,493 bytes allocated ==7096== ==7096== LEAK SUMMARY: ==7096== definitely lost: 0 bytes in 0 blocks ==7096== indirectly lost: 0 bytes in 0 blocks ==7096== possibly lost: 96 bytes in 1 blocks ==7096== still reachable: 44,695 bytes in 277 blocks ==7096== of which reachable via heuristic: ==7096== newarray : 5,800 bytes in 17 blocks ==7096== suppressed: 216,849 bytes in 3,447 blocks ==7096== Reachable blocks (those to which a pointer was found) are not shown. ==7096== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7096== ==7096== For counts of detected and suppressed errors, rerun with: -v ==7096== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==7097== Memcheck, a memory error detector ==7097== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7097== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7097== Command: ./client-test Client::Sync::eds_task::testOneWayFromClient ==7097== Parent PID: 114 ==7097== ==7097== ==7097== HEAP SUMMARY: ==7097== in use at exit: 6,993,499 bytes in 57,759 blocks ==7097== total heap usage: 4,003,612 allocs, 3,945,794 frees, 571,147,877 bytes allocated ==7097== ==7097== LEAK SUMMARY: ==7097== definitely lost: 0 bytes in 0 blocks ==7097== indirectly lost: 0 bytes in 0 blocks ==7097== possibly lost: 960 bytes in 3 blocks ==7097== still reachable: 6,229,337 bytes in 47,977 blocks ==7097== of which reachable via heuristic: ==7097== length64 : 6,024 bytes in 99 blocks ==7097== newarray : 6,408 bytes in 55 blocks ==7097== suppressed: 675,194 bytes in 9,108 blocks ==7097== Reachable blocks (those to which a pointer was found) are not shown. ==7097== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7097== ==7097== For counts of detected and suppressed errors, rerun with: -v ==7097== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7475== Memcheck, a memory error detector ==7475== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7475== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7475== Command: ./client-test Client::Sync::eds_task::testOneWayFromRemote ==7475== Parent PID: 114 ==7475== ==7475== ==7475== HEAP SUMMARY: ==7475== in use at exit: 6,994,358 bytes in 57,776 blocks ==7475== total heap usage: 3,322,536 allocs, 3,264,702 frees, 487,729,545 bytes allocated ==7475== ==7475== LEAK SUMMARY: ==7475== definitely lost: 0 bytes in 0 blocks ==7475== indirectly lost: 0 bytes in 0 blocks ==7475== possibly lost: 960 bytes in 3 blocks ==7475== still reachable: 6,229,801 bytes in 47,986 blocks ==7475== of which reachable via heuristic: ==7475== length64 : 6,024 bytes in 99 blocks ==7475== newarray : 6,408 bytes in 55 blocks ==7475== suppressed: 675,421 bytes in 9,114 blocks ==7475== Reachable blocks (those to which a pointer was found) are not shown. ==7475== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7475== ==7475== For counts of detected and suppressed errors, rerun with: -v ==7475== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7791== Memcheck, a memory error detector ==7791== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7791== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7791== Command: ./client-test Client::Sync::eds_task::testOneWayFromLocal ==7791== Parent PID: 114 ==7791== ==7791== ==7791== HEAP SUMMARY: ==7791== in use at exit: 6,995,116 bytes in 57,790 blocks ==7791== total heap usage: 3,728,757 allocs, 3,670,908 frees, 544,285,628 bytes allocated ==7791== ==7791== LEAK SUMMARY: ==7791== definitely lost: 0 bytes in 0 blocks ==7791== indirectly lost: 0 bytes in 0 blocks ==7791== possibly lost: 960 bytes in 3 blocks ==7791== still reachable: 6,229,685 bytes in 47,982 blocks ==7791== of which reachable via heuristic: ==7791== length64 : 6,024 bytes in 99 blocks ==7791== newarray : 6,408 bytes in 55 blocks ==7791== suppressed: 676,463 bytes in 9,134 blocks ==7791== Reachable blocks (those to which a pointer was found) are not shown. ==7791== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7791== ==7791== For counts of detected and suppressed errors, rerun with: -v ==7791== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==795== Memcheck, a memory error detector ==795== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==795== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==795== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==795== Parent PID: 707 ==795== ==800== Memcheck, a memory error detector ==800== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==800== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==800== Command: ./client-test Client::Sync::eds_event::testManyItems ==800== Parent PID: 114 ==800== ==800== ==800== HEAP SUMMARY: ==800== in use at exit: 7,000,525 bytes in 57,874 blocks ==800== total heap usage: 2,726,739 allocs, 2,668,809 frees, 403,839,749 bytes allocated ==800== ==800== LEAK SUMMARY: ==800== definitely lost: 0 bytes in 0 blocks ==800== indirectly lost: 0 bytes in 0 blocks ==800== possibly lost: 960 bytes in 3 blocks ==800== still reachable: 6,234,103 bytes in 48,054 blocks ==800== of which reachable via heuristic: ==800== length64 : 6,024 bytes in 99 blocks ==800== newarray : 6,408 bytes in 55 blocks ==800== suppressed: 677,454 bytes in 9,146 blocks ==800== Reachable blocks (those to which a pointer was found) are not shown. ==800== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==800== ==800== For counts of detected and suppressed errors, rerun with: -v ==800== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8164== Memcheck, a memory error detector ==8164== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8164== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8164== Command: ./client-test Client::Sync::eds_memo::testDeleteAllRefresh ==8164== Parent PID: 114 ==8164== ==8164== ==8164== HEAP SUMMARY: ==8164== in use at exit: 261,640 bytes in 3,725 blocks ==8164== total heap usage: 108,351 allocs, 104,626 frees, 15,452,114 bytes allocated ==8164== ==8164== LEAK SUMMARY: ==8164== definitely lost: 0 bytes in 0 blocks ==8164== indirectly lost: 0 bytes in 0 blocks ==8164== possibly lost: 96 bytes in 1 blocks ==8164== still reachable: 44,695 bytes in 277 blocks ==8164== of which reachable via heuristic: ==8164== newarray : 5,800 bytes in 17 blocks ==8164== suppressed: 216,849 bytes in 3,447 blocks ==8164== Reachable blocks (those to which a pointer was found) are not shown. ==8164== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8164== ==8164== For counts of detected and suppressed errors, rerun with: -v ==8164== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==8165== Memcheck, a memory error detector ==8165== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8165== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8165== Command: ./client-test Client::Sync::eds_memo::testTwoWaySync ==8165== Parent PID: 114 ==8165== ==8165== ==8165== HEAP SUMMARY: ==8165== in use at exit: 6,994,110 bytes in 57,786 blocks ==8165== total heap usage: 676,601 allocs, 618,764 frees, 101,667,740 bytes allocated ==8165== ==8165== LEAK SUMMARY: ==8165== definitely lost: 0 bytes in 0 blocks ==8165== indirectly lost: 0 bytes in 0 blocks ==8165== possibly lost: 1,824 bytes in 5 blocks ==8165== still reachable: 6,332,417 bytes in 48,149 blocks ==8165== of which reachable via heuristic: ==8165== length64 : 5,984 bytes in 98 blocks ==8165== newarray : 6,376 bytes in 53 blocks ==8165== suppressed: 571,693 bytes in 8,959 blocks ==8165== Reachable blocks (those to which a pointer was found) are not shown. ==8165== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8165== ==8165== For counts of detected and suppressed errors, rerun with: -v ==8165== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8186== Memcheck, a memory error detector ==8186== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8186== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8186== Command: ./client-test Client::Sync::eds_memo::testSlowSync ==8186== Parent PID: 114 ==8186== ==8186== ==8186== HEAP SUMMARY: ==8186== in use at exit: 6,993,563 bytes in 57,756 blocks ==8186== total heap usage: 676,009 allocs, 618,202 frees, 101,478,964 bytes allocated ==8186== ==8186== LEAK SUMMARY: ==8186== definitely lost: 0 bytes in 0 blocks ==8186== indirectly lost: 0 bytes in 0 blocks ==8186== possibly lost: 1,824 bytes in 5 blocks ==8186== still reachable: 6,331,225 bytes in 48,133 blocks ==8186== of which reachable via heuristic: ==8186== length64 : 5,984 bytes in 98 blocks ==8186== newarray : 6,376 bytes in 53 blocks ==8186== suppressed: 572,506 bytes in 8,947 blocks ==8186== Reachable blocks (those to which a pointer was found) are not shown. ==8186== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8186== ==8186== For counts of detected and suppressed errors, rerun with: -v ==8186== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8207== Memcheck, a memory error detector ==8207== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8207== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8207== Command: ./client-test Client::Sync::eds_memo::testRefreshFromServerSync ==8207== Parent PID: 114 ==8207== ==8207== ==8207== HEAP SUMMARY: ==8207== in use at exit: 6,993,603 bytes in 57,756 blocks ==8207== total heap usage: 675,693 allocs, 617,886 frees, 101,466,766 bytes allocated ==8207== ==8207== LEAK SUMMARY: ==8207== definitely lost: 0 bytes in 0 blocks ==8207== indirectly lost: 0 bytes in 0 blocks ==8207== possibly lost: 1,824 bytes in 5 blocks ==8207== still reachable: 6,331,225 bytes in 48,133 blocks ==8207== of which reachable via heuristic: ==8207== length64 : 5,984 bytes in 98 blocks ==8207== newarray : 6,376 bytes in 53 blocks ==8207== suppressed: 572,546 bytes in 8,947 blocks ==8207== Reachable blocks (those to which a pointer was found) are not shown. ==8207== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8207== ==8207== For counts of detected and suppressed errors, rerun with: -v ==8207== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8227== Memcheck, a memory error detector ==8227== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8227== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8227== Command: ./client-test Client::Sync::eds_memo::testRefreshFromClientSync ==8227== Parent PID: 114 ==8227== ==8227== ==8227== HEAP SUMMARY: ==8227== in use at exit: 261,648 bytes in 3,725 blocks ==8227== total heap usage: 108,360 allocs, 104,635 frees, 15,460,682 bytes allocated ==8227== ==8227== LEAK SUMMARY: ==8227== definitely lost: 0 bytes in 0 blocks ==8227== indirectly lost: 0 bytes in 0 blocks ==8227== possibly lost: 96 bytes in 1 blocks ==8227== still reachable: 44,695 bytes in 277 blocks ==8227== of which reachable via heuristic: ==8227== newarray : 5,800 bytes in 17 blocks ==8227== suppressed: 216,857 bytes in 3,447 blocks ==8227== Reachable blocks (those to which a pointer was found) are not shown. ==8227== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8227== ==8227== For counts of detected and suppressed errors, rerun with: -v ==8227== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==8228== Memcheck, a memory error detector ==8228== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8228== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8228== Command: ./client-test Client::Sync::eds_memo::testRefreshFromRemoteSync ==8228== Parent PID: 114 ==8228== ==8228== ==8228== HEAP SUMMARY: ==8228== in use at exit: 6,996,553 bytes in 57,816 blocks ==8228== total heap usage: 675,977 allocs, 618,110 frees, 101,486,400 bytes allocated ==8228== ==8228== LEAK SUMMARY: ==8228== definitely lost: 0 bytes in 0 blocks ==8228== indirectly lost: 0 bytes in 0 blocks ==8228== possibly lost: 1,824 bytes in 5 blocks ==8228== still reachable: 6,332,009 bytes in 48,142 blocks ==8228== of which reachable via heuristic: ==8228== length64 : 5,984 bytes in 98 blocks ==8228== newarray : 6,376 bytes in 53 blocks ==8228== suppressed: 574,544 bytes in 8,996 blocks ==8228== Reachable blocks (those to which a pointer was found) are not shown. ==8228== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8228== ==8228== For counts of detected and suppressed errors, rerun with: -v ==8228== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8248== Memcheck, a memory error detector ==8248== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8248== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8248== Command: ./client-test Client::Sync::eds_memo::testRefreshFromLocalSync ==8248== Parent PID: 114 ==8248== ==8248== ==8248== HEAP SUMMARY: ==8248== in use at exit: 6,996,617 bytes in 57,818 blocks ==8248== total heap usage: 675,699 allocs, 617,830 frees, 101,469,081 bytes allocated ==8248== ==8248== LEAK SUMMARY: ==8248== definitely lost: 0 bytes in 0 blocks ==8248== indirectly lost: 0 bytes in 0 blocks ==8248== possibly lost: 1,824 bytes in 5 blocks ==8248== still reachable: 6,332,177 bytes in 48,145 blocks ==8248== of which reachable via heuristic: ==8248== length64 : 5,984 bytes in 98 blocks ==8248== newarray : 6,376 bytes in 53 blocks ==8248== suppressed: 574,440 bytes in 8,995 blocks ==8248== Reachable blocks (those to which a pointer was found) are not shown. ==8248== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8248== ==8248== For counts of detected and suppressed errors, rerun with: -v ==8248== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8268== Memcheck, a memory error detector ==8268== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8268== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8268== Command: ./client-test Client::Sync::eds_memo::testConversion ==8268== Parent PID: 114 ==8268== ==8268== ==8268== HEAP SUMMARY: ==8268== in use at exit: 2,890,505 bytes in 29,922 blocks ==8268== total heap usage: 322,313 allocs, 292,340 frees, 47,126,606 bytes allocated ==8268== ==8268== LEAK SUMMARY: ==8268== definitely lost: 0 bytes in 0 blocks ==8268== indirectly lost: 0 bytes in 0 blocks ==8268== possibly lost: 1,824 bytes in 5 blocks ==8268== still reachable: 2,313,071 bytes in 21,437 blocks ==8268== of which reachable via heuristic: ==8268== length64 : 5,096 bytes in 83 blocks ==8268== newarray : 6,328 bytes in 50 blocks ==8268== suppressed: 503,122 bytes in 7,935 blocks ==8268== Reachable blocks (those to which a pointer was found) are not shown. ==8268== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8268== ==8268== For counts of detected and suppressed errors, rerun with: -v ==8268== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 68 from 68) ==8286== Memcheck, a memory error detector ==8286== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8286== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8286== Command: ./client-test Client::Sync::eds_memo::testConversion ==8286== Parent PID: 8268 ==8286== ==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_memo::testRefreshFromServerSemantic ==8292== Parent PID: 114 ==8292== ==8292== ==8292== HEAP SUMMARY: ==8292== in use at exit: 6,994,254 bytes in 57,790 blocks ==8292== total heap usage: 1,790,590 allocs, 1,732,746 frees, 265,577,037 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: 6,230,561 bytes in 47,993 blocks ==8292== of which reachable via heuristic: ==8292== length64 : 6,024 bytes in 99 blocks ==8292== newarray : 6,408 bytes in 55 blocks ==8292== suppressed: 674,557 bytes in 9,121 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) ==8436== Memcheck, a memory error detector ==8436== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8436== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8436== Command: ./client-test Client::Sync::eds_memo::testRefreshFromClientSemantic ==8436== Parent PID: 114 ==8436== ==8436== ==8436== HEAP SUMMARY: ==8436== in use at exit: 261,584 bytes in 3,723 blocks ==8436== total heap usage: 108,363 allocs, 104,640 frees, 15,460,884 bytes allocated ==8436== ==8436== LEAK SUMMARY: ==8436== definitely lost: 0 bytes in 0 blocks ==8436== indirectly lost: 0 bytes in 0 blocks ==8436== possibly lost: 96 bytes in 1 blocks ==8436== still reachable: 44,695 bytes in 277 blocks ==8436== of which reachable via heuristic: ==8436== newarray : 5,800 bytes in 17 blocks ==8436== suppressed: 216,793 bytes in 3,445 blocks ==8436== Reachable blocks (those to which a pointer was found) are not shown. ==8436== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8436== ==8436== For counts of detected and suppressed errors, rerun with: -v ==8436== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==8437== Memcheck, a memory error detector ==8437== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8437== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8437== Command: ./client-test Client::Sync::eds_memo::testRefreshStatus ==8437== Parent PID: 114 ==8437== ==8437== ==8437== HEAP SUMMARY: ==8437== in use at exit: 6,984,945 bytes in 57,617 blocks ==8437== total heap usage: 1,138,790 allocs, 1,081,121 frees, 161,677,424 bytes allocated ==8437== ==8437== LEAK SUMMARY: ==8437== definitely lost: 0 bytes in 0 blocks ==8437== indirectly lost: 0 bytes in 0 blocks ==8437== possibly lost: 960 bytes in 3 blocks ==8437== still reachable: 6,227,169 bytes in 47,967 blocks ==8437== of which reachable via heuristic: ==8437== length64 : 6,024 bytes in 99 blocks ==8437== newarray : 6,408 bytes in 55 blocks ==8437== suppressed: 668,808 bytes in 8,976 blocks ==8437== Reachable blocks (those to which a pointer was found) are not shown. ==8437== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8437== ==8437== For counts of detected and suppressed errors, rerun with: -v ==8437== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8544== Memcheck, a memory error detector ==8544== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8544== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8544== Command: ./client-test Client::Sync::eds_memo::testTwoWayRestart ==8544== Parent PID: 114 ==8544== ==8544== ==8544== HEAP SUMMARY: ==8544== in use at exit: 6,994,374 bytes in 57,776 blocks ==8544== total heap usage: 1,476,128 allocs, 1,418,299 frees, 214,524,463 bytes allocated ==8544== ==8544== LEAK SUMMARY: ==8544== definitely lost: 0 bytes in 0 blocks ==8544== indirectly lost: 0 bytes in 0 blocks ==8544== possibly lost: 960 bytes in 3 blocks ==8544== still reachable: 6,229,657 bytes in 47,983 blocks ==8544== of which reachable via heuristic: ==8544== length64 : 6,024 bytes in 99 blocks ==8544== newarray : 6,408 bytes in 55 blocks ==8544== suppressed: 675,581 bytes in 9,117 blocks ==8544== Reachable blocks (those to which a pointer was found) are not shown. ==8544== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8544== ==8544== For counts of detected and suppressed errors, rerun with: -v ==8544== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8661== Memcheck, a memory error detector ==8661== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8661== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8661== Command: ./client-test Client::Sync::eds_memo::testCopy ==8661== Parent PID: 114 ==8661== ==8661== ==8661== HEAP SUMMARY: ==8661== in use at exit: 6,994,518 bytes in 57,792 blocks ==8661== total heap usage: 2,610,366 allocs, 2,552,518 frees, 379,844,945 bytes allocated ==8661== ==8661== LEAK SUMMARY: ==8661== definitely lost: 0 bytes in 0 blocks ==8661== indirectly lost: 0 bytes in 0 blocks ==8661== possibly lost: 960 bytes in 3 blocks ==8661== still reachable: 6,230,561 bytes in 47,993 blocks ==8661== of which reachable via heuristic: ==8661== length64 : 6,024 bytes in 99 blocks ==8661== newarray : 6,408 bytes in 55 blocks ==8661== suppressed: 674,821 bytes in 9,123 blocks ==8661== Reachable blocks (those to which a pointer was found) are not shown. ==8661== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8661== ==8661== For counts of detected and suppressed errors, rerun with: -v ==8661== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==877== Memcheck, a memory error detector ==877== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==877== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==877== Command: ./client-test Client::Sync::eds_event::testManyItems ==877== Parent PID: 800 ==877== ==881== Memcheck, a memory error detector ==881== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==881== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==881== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==881== Parent PID: 114 ==881== ==881== ==881== HEAP SUMMARY: ==881== in use at exit: 7,000,296 bytes in 57,884 blocks ==881== total heap usage: 3,529,104 allocs, 3,471,162 frees, 499,994,811 bytes allocated ==881== ==881== LEAK SUMMARY: ==881== definitely lost: 0 bytes in 0 blocks ==881== indirectly lost: 0 bytes in 0 blocks ==881== possibly lost: 960 bytes in 3 blocks ==881== still reachable: 6,235,512 bytes in 48,084 blocks ==881== of which reachable via heuristic: ==881== length64 : 6,024 bytes in 99 blocks ==881== newarray : 6,408 bytes in 55 blocks ==881== suppressed: 675,648 bytes in 9,124 blocks ==881== Reachable blocks (those to which a pointer was found) are not shown. ==881== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==881== ==881== For counts of detected and suppressed errors, rerun with: -v ==881== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8884== Memcheck, a memory error detector ==8884== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8884== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8884== Command: ./client-test Client::Sync::eds_memo::testCopy ==8884== Parent PID: 8661 ==8884== ==8909== Memcheck, a memory error detector ==8909== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8909== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8909== Command: ./client-test Client::Sync::eds_memo::testCopy ==8909== Parent PID: 8661 ==8909== ==8914== Memcheck, a memory error detector ==8914== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8914== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8914== Command: ./client-test Client::Sync::eds_memo::testDelete ==8914== Parent PID: 114 ==8914== ==8914== ==8914== HEAP SUMMARY: ==8914== in use at exit: 6,994,317 bytes in 57,787 blocks ==8914== total heap usage: 3,274,494 allocs, 3,216,649 frees, 484,839,925 bytes allocated ==8914== ==8914== LEAK SUMMARY: ==8914== definitely lost: 0 bytes in 0 blocks ==8914== indirectly lost: 0 bytes in 0 blocks ==8914== possibly lost: 960 bytes in 3 blocks ==8914== still reachable: 6,229,369 bytes in 47,982 blocks ==8914== of which reachable via heuristic: ==8914== length64 : 6,024 bytes in 99 blocks ==8914== newarray : 6,408 bytes in 55 blocks ==8914== suppressed: 675,980 bytes in 9,131 blocks ==8914== Reachable blocks (those to which a pointer was found) are not shown. ==8914== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8914== ==8914== For counts of detected and suppressed errors, rerun with: -v ==8914== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9142== Memcheck, a memory error detector ==9142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9142== Command: ./client-test Client::Sync::eds_memo::testDelete ==9142== Parent PID: 8914 ==9142== ==9209== Memcheck, a memory error detector ==9209== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9209== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9209== Command: ./client-test Client::Sync::eds_memo::testAddUpdate ==9209== Parent PID: 114 ==9209== ==9209== ==9209== HEAP SUMMARY: ==9209== in use at exit: 6,994,390 bytes in 57,776 blocks ==9209== total heap usage: 2,515,777 allocs, 2,457,945 frees, 374,397,626 bytes allocated ==9209== ==9209== LEAK SUMMARY: ==9209== definitely lost: 0 bytes in 0 blocks ==9209== indirectly lost: 0 bytes in 0 blocks ==9209== possibly lost: 960 bytes in 3 blocks ==9209== still reachable: 6,229,513 bytes in 47,980 blocks ==9209== of which reachable via heuristic: ==9209== length64 : 6,024 bytes in 99 blocks ==9209== newarray : 6,408 bytes in 55 blocks ==9209== suppressed: 675,741 bytes in 9,120 blocks ==9209== Reachable blocks (those to which a pointer was found) are not shown. ==9209== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9209== ==9209== For counts of detected and suppressed errors, rerun with: -v ==9209== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9412== Memcheck, a memory error detector ==9412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9412== Command: ./client-test Client::Sync::eds_memo::testAddUpdate ==9412== Parent PID: 9209 ==9412== ==9416== Memcheck, a memory error detector ==9416== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9416== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9416== Command: ./client-test Client::Sync::eds_memo::testManyItems ==9416== Parent PID: 114 ==9416== ==9416== ==9416== HEAP SUMMARY: ==9416== in use at exit: 6,994,286 bytes in 57,790 blocks ==9416== total heap usage: 2,710,616 allocs, 2,652,770 frees, 402,168,726 bytes allocated ==9416== ==9416== LEAK SUMMARY: ==9416== definitely lost: 0 bytes in 0 blocks ==9416== indirectly lost: 0 bytes in 0 blocks ==9416== possibly lost: 960 bytes in 3 blocks ==9416== still reachable: 6,230,737 bytes in 47,996 blocks ==9416== of which reachable via heuristic: ==9416== length64 : 6,024 bytes in 99 blocks ==9416== newarray : 6,408 bytes in 55 blocks ==9416== suppressed: 674,413 bytes in 9,118 blocks ==9416== Reachable blocks (those to which a pointer was found) are not shown. ==9416== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9416== ==9416== For counts of detected and suppressed errors, rerun with: -v ==9416== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==957== Memcheck, a memory error detector ==957== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==957== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==957== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==957== Parent PID: 881 ==957== ==9586== Memcheck, a memory error detector ==9586== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9586== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9586== Command: ./client-test Client::Sync::eds_memo::testManyItems ==9586== Parent PID: 9416 ==9586== ==9590== Memcheck, a memory error detector ==9590== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9590== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9590== Command: ./client-test Client::Sync::eds_memo::testManyDeletes ==9590== Parent PID: 114 ==9590== ==9590== ==9590== HEAP SUMMARY: ==9590== in use at exit: 6,994,278 bytes in 57,790 blocks ==9590== total heap usage: 3,510,872 allocs, 3,453,024 frees, 497,855,378 bytes allocated ==9590== ==9590== LEAK SUMMARY: ==9590== definitely lost: 0 bytes in 0 blocks ==9590== indirectly lost: 0 bytes in 0 blocks ==9590== possibly lost: 960 bytes in 3 blocks ==9590== still reachable: 6,230,737 bytes in 47,996 blocks ==9590== of which reachable via heuristic: ==9590== length64 : 6,024 bytes in 99 blocks ==9590== newarray : 6,408 bytes in 55 blocks ==9590== suppressed: 674,405 bytes in 9,118 blocks ==9590== Reachable blocks (those to which a pointer was found) are not shown. ==9590== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9590== ==9590== For counts of detected and suppressed errors, rerun with: -v ==9590== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9759== Memcheck, a memory error detector ==9759== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9759== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9759== Command: ./client-test Client::Sync::eds_memo::testManyDeletes ==9759== Parent PID: 9590 ==9759== ==980== Memcheck, a memory error detector ==980== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==980== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==980== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==980== Parent PID: 114 ==980== ==980== ==980== HEAP SUMMARY: ==980== in use at exit: 6,995,090 bytes in 57,787 blocks ==980== total heap usage: 4,191,821 allocs, 4,133,973 frees, 637,819,032 bytes allocated ==980== ==980== LEAK SUMMARY: ==980== definitely lost: 0 bytes in 0 blocks ==980== indirectly lost: 0 bytes in 0 blocks ==980== possibly lost: 960 bytes in 3 blocks ==980== still reachable: 6,229,480 bytes in 47,978 blocks ==980== of which reachable via heuristic: ==980== length64 : 6,024 bytes in 99 blocks ==980== newarray : 6,408 bytes in 55 blocks ==980== suppressed: 676,642 bytes in 9,135 blocks ==980== Reachable blocks (those to which a pointer was found) are not shown. ==980== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==980== ==980== For counts of detected and suppressed errors, rerun with: -v ==980== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==9814== Memcheck, a memory error detector ==9814== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9814== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9814== Command: ./client-test Client::Sync::eds_memo::testSlowSyncSemantic ==9814== Parent PID: 114 ==9814== ==9814== ==9814== HEAP SUMMARY: ==9814== in use at exit: 6,996,777 bytes in 57,821 blocks ==9814== total heap usage: 4,197,300 allocs, 4,139,418 frees, 637,561,910 bytes allocated ==9814== ==9814== LEAK SUMMARY: ==9814== definitely lost: 0 bytes in 0 blocks ==9814== indirectly lost: 0 bytes in 0 blocks ==9814== possibly lost: 960 bytes in 3 blocks ==9814== still reachable: 6,230,409 bytes in 47,990 blocks ==9814== of which reachable via heuristic: ==9814== length64 : 6,024 bytes in 99 blocks ==9814== newarray : 6,408 bytes in 55 blocks ==9814== suppressed: 677,232 bytes in 9,155 blocks ==9814== Reachable blocks (those to which a pointer was found) are not shown. ==9814== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9814== ==9814== For counts of detected and suppressed errors, rerun with: -v ==9814== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) valgrindcheck: ./client-test Client::Sync: final result 0 wrappercheck-105 line 100: RET=0 wrappercheck-105 line 101: set -e wrappercheck-105 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-105 line 108: kill -INT -107 wrappercheck-105 line 108: kill -TERM -107 wrappercheck-105 line 108: kill -TERM 107 wrappercheck-105 line 110: KILL_PID=29802 wrappercheck-105 line 115: set +e wrappercheck-105 line 109: perl -e 'sleep(60); kill(9, -107);' wrappercheck-105 line 116: wait 107 wrappercheck-105 line 117: SUBRET=143 wrappercheck-105 line 118: case $SUBRET in wrappercheck-105 line 118: SUBRET=0 wrappercheck-105 line 120: SUBRET=0 wrappercheck-105 line 121: '[' 29802 ']' wwrappercheck-105 line 122: LC_ALL=C wwrappercheck-105 line 122: kill -KILL 29802 wrappercheck-105 line 122: msg= wrappercheck-105 line 123: echo '' wrappercheck-105 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 29802 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-105 line 127: echo '' wrappercheck-105 line 129: wait 29802 wrappercheck-105 line 131: set -e wrappercheck-105 line 132: '[' 0 = 0 ']' wrappercheck-105 line 133: RET=0 wrappercheck-105 line 136: exit 0 wrappercheck-85 line 100: RET=0 wrappercheck-85 line 101: set -e wrappercheck-85 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-85 line 108: kill -INT -87 wrappercheck-85 line 108: kill -TERM -87 wrappercheck-85 line 108: kill -TERM 87 wrappercheck-85 line 110: KILL_PID=29807 wrappercheck-85 line 109: perl -e 'sleep(60); kill(9, -87);' wrappercheck-85 line 115: set +e wrappercheck-85 line 116: wait 87 wrappercheck-85 line 117: SUBRET=143 wrappercheck-85 line 118: case $SUBRET in wrappercheck-85 line 118: SUBRET=0 wrappercheck-85 line 120: SUBRET=0 wrappercheck-85 line 121: '[' 29807 ']' wwrappercheck-85 line 122: LC_ALL=C wwrappercheck-85 line 122: kill -KILL 29807 wrappercheck-85 line 122: msg= wrappercheck-85 line 123: echo '' wrappercheck-85 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 29807 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-85 line 127: echo '' wrappercheck-85 line 129: wait 29807 wrappercheck-85 line 131: set -e wrappercheck-85 line 132: '[' 0 = 0 ']' wrappercheck-85 line 133: RET=0 wrappercheck-85 line 136: exit 0 wrappercheck-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=29812 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 30 wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wrappercheck-25 line 117: SUBRET=143 wrappercheck-25 line 118: case $SUBRET in wrappercheck-25 line 118: SUBRET=0 wrappercheck-25 line 120: SUBRET=0 wrappercheck-25 line 121: '[' 29812 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 29812 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 29812 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 29812 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=29817 wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 22 wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 29817 ']' wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 29817 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: echo '' wrappercheck-18 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 29817 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 29817 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 0 = 0 ']' wrappercheck-18 line 133: RET=0 wrappercheck-18 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.7a7qkwnbR3 Fri Jan 5 21:18:19 2018 UTC (+ 18056.9s / 18158.5s) === cleaning up ===