runtests.py-17082 Fri Jan 5 15:56:19 2018 UTC (+ 1.1s / 1633.0s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/edsfile/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17082 Fri Jan 5 15:56:20 2018 UTC (+ 0.5s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/.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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/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/edsfile/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/edsfile/data runtests.py-17082 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.5s) === starting edsfile === runtests.py-17082 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/23-edsfile, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/23-edsfile runtests.py-17082 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/edsfile (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edsfile) runtests.py-17082 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/edsfile; 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/edsfile' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edsfile/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edsfile/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edsfile/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsfile -- env CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_ADD_BOTH_SIDES_SERVER_IS_DUMB=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale schroot -d /data/runtests/work/testing-amd64/tests/edsfile -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 edsfile ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsfile'] === Fri Jan 5 17:11:55 2018 UTC (+ 4535.2s / 4535.3s) property changed: status = acquired Fri Jan 5 17:11:55 2018 UTC (+ 0.0s / 4535.3s) using jobserver Fri Jan 5 17:11:55 2018 UTC (+ 0.0s / 4535.3s) === allocating 1 job slot(s) === Fri Jan 5 17:12:59 2018 UTC (+ 63.4s / 4598.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 32 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 70: exec wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used 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 edsfile ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.fSVenLgNGC/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-20 line 16: PIDS= wrappercheck-20 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-20 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-20 line 21: DAEMON_LOG= wrappercheck-20 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-20 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-20 line 25: declare -a BACKGROUND wrappercheck-20 line 26: declare -a ENV wrappercheck-20 line 28: '[' 26 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 31: shift wrappercheck-20 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 24 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 43: shift wrappercheck-20 line 44: DAEMON_SLEEP=5 wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 22 -gt 1 ']' wrappercheck-20 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 35: shift wrappercheck-20 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 20 -gt 1 ']' wrappercheck-20 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 50: break wrappercheck-20 line 56: '[' 20 -gt 1 ']' wrappercheck-20 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-20 line 58: shift wrappercheck-20 line 56: '[' 19 -gt 1 ']' wrappercheck-20 line 56: '[' -- '!=' -- ']' wrappercheck-20 line 60: shift wrappercheck-20 line 62: '[' evolution-source-registry.log ']' wrappercheck-20 line 62: '[' '' ']' wrappercheck-20 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-20 line 72: BACKGROUND_PID=25 wrappercheck-20 line 73: PIDS+=25 wrappercheck-20 line 70: set -x wrappercheck-20 line 75: '[' evolution-source-registry.log ']' wrappercheck-20 line 75: '[' '' ']' wrappercheck-20 line 70: exec wrappercheck-20 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-20 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/7, but it's already registered wrappercheck-20 line 93: kill -0 25 wrappercheck-20 line 94: set +e wrappercheck-20 line 95: '[' 5 ']' wrappercheck-20 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-20 line 97: sleep 5 wrappercheck-20 line 99: set -x wrappercheck-20 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-80 line 16: PIDS= wrappercheck-80 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-80 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-80 line 21: DAEMON_LOG= wrappercheck-80 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-80 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-80 line 25: declare -a BACKGROUND wrappercheck-80 line 26: declare -a ENV wrappercheck-80 line 28: '[' 17 -gt 1 ']' wrappercheck-80 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 31: shift wrappercheck-80 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 15 -gt 1 ']' wrappercheck-80 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 35: shift wrappercheck-80 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 13 -gt 1 ']' wrappercheck-80 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 50: break wrappercheck-80 line 56: '[' 13 -gt 1 ']' wrappercheck-80 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 12 -gt 1 ']' wrappercheck-80 line 56: '[' --keep-running '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 11 -gt 1 ']' wrappercheck-80 line 56: '[' -- '!=' -- ']' wrappercheck-80 line 60: shift wrappercheck-80 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 62: '[' '' ']' wrappercheck-80 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-80 line 72: BACKGROUND_PID=82 wrappercheck-80 line 73: PIDS+=82 wrappercheck-80 line 70: set -x wrappercheck-80 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 70: exec wrappercheck-80 line 75: '[' '' ']' wrappercheck-80 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-80 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-80 line 93: kill -0 82 wrappercheck-80 line 94: set +e wrappercheck-80 line 95: '[' '' ']' wrappercheck-80 line 99: set -x wrappercheck-80 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-100 line 16: PIDS= wrappercheck-100 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-100 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-100 line 21: DAEMON_LOG= wrappercheck-100 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-100 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-100 line 25: declare -a BACKGROUND wrappercheck-100 line 26: declare -a ENV wrappercheck-100 line 28: '[' 9 -gt 1 ']' wrappercheck-100 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 31: shift wrappercheck-100 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-100 line 53: shift wrappercheck-100 line 28: '[' 7 -gt 1 ']' wrappercheck-100 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 50: break wrappercheck-100 line 56: '[' 7 -gt 1 ']' wrappercheck-100 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 6 -gt 1 ']' wrappercheck-100 line 56: '[' --keep-running '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 5 -gt 1 ']' wrappercheck-100 line 56: '[' -- '!=' -- ']' wrappercheck-100 line 60: shift wrappercheck-100 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 62: '[' '' ']' wrappercheck-100 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-100 line 72: BACKGROUND_PID=102 wrappercheck-100 line 73: PIDS+=102 wrappercheck-100 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 75: '[' '' ']' wrappercheck-100 line 70: set -x wrappercheck-100 line 84: '[' '' ']' wrappercheck-100 line 70: exec wrappercheck-100 line 93: kill -0 102 wrappercheck-100 line 94: set +e wrappercheck-100 line 95: '[' '' ']' wrappercheck-100 line 99: set -x wrappercheck-100 line 99: env /home/nightly/testing/setup-syncevolution.sh edsfile ./syncevolution + case $TEST in + rm -rf '/data/runtests/work/testing-amd64/home/edsfile/.sync4j/evolution/edsfile_[12]' '/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/edsfile_[12]' '/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-[12]/peers/edsfile_[12]' '/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-[12]' + for client in 1 2 + ./syncevolution --version + grep -q -e '[+ ]1.[0-9]' + config=edsfile_1@client-test-edsfile-1 ++ credentials edsfile_1 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_1 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsfile --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_1 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edsfile_1@client-test-edsfile-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/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/addressbook /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/calendar /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/todo /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/memo /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-1/peers/edsfile_1/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_1 edsfile_1@client-test-edsfile-1 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_1 edsfile_1@client-test-edsfile-1 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_1 edsfile_1@client-test-edsfile-1 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_1 edsfile_1@client-test-edsfile-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=edsfile_2@client-test-edsfile-2 ++ credentials edsfile_2 ++ case "$SCHROOT_CHROOT_NAME" in ++ case $1 in ++ echo '--template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_2 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0' + ./syncevolution --daemon=no --configure --template edsfile --template SyncEvolution --sync-property username=user01 --sync-property password=user01pw --sync-property deviceID=client-edsfile_2 --sync-property syncURL=http://127.0.0.1:9900/syncevolution --sync-property retryDuration=120s --sync-property useProxy=0 --sync-property proxyHost=http://proxy.vlan13.01.org:3128 --sync-property useProxy=0 --sync-property logLevel=4 edsfile_2@client-test-edsfile-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/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources addressbook eds_contact + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=addressbook + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/addressbook ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/addressbook /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_contact + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources calendar eds_event + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=calendar + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/calendar ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/calendar /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_event + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources todo eds_task + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=todo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/todo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/todo /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_task + copy_source /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources memo eds_memo + path=/data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources + shift + source=memo + shift + '[' -d /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/memo ']' + for i in $@ + cp -r /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/memo /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-edsfile-2/peers/edsfile_2/sources/eds_memo + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_contact_2 edsfile_2@client-test-edsfile-2 eds_contact + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_event_2 edsfile_2@client-test-edsfile-2 eds_event + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_task_2 edsfile_2@client-test-edsfile-2 eds_task + for i in eds_contact eds_event eds_task eds_memo + ./syncevolution --daemon=no --configure database=Test_eds_memo_2 edsfile_2@client-test-edsfile-2 eds_memo + case $TEST in + case $TEST in + case $TEST in + case $TEST in + context=client-test-fileserver + rm -rf /data/runtests/work/testing-amd64/home/edsfile/config/syncevolution/client-test-fileserver + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_addressbook + mkdir Test_addressbook + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_addressbook2 + mkdir Test_addressbook2 + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_calendar + mkdir Test_calendar + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_calendar2 + mkdir Test_calendar2 + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_todo + mkdir Test_todo + for i in addressbook addressbook2 calendar calendar2 todo todo2 + rm -rf Test_todo2 + mkdir Test_todo2 + ./syncevolution --configure --daemon=no addressbook/database=Test_addressbook addressbook/databaseFormat=text/vcard addressbook/backend=file addressbook2/database=Test_addressbook2 addressbook2/databaseFormat=text/vcard addressbook2/backend=file calendar/database=Test_calendar calendar/databaseFormat=text/calendar calendar/backend=file calendar2/database=Test_calendar2 calendar2/databaseFormat=text/calendar calendar2/backend=file todo/database=Test_todo todo/databaseFormat=text/calendar todo/backend=file todo2/database=Test_todo2 todo2/databaseFormat=text/calendar todo2/backend=file @client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore [INFO] calendar: checking usability... [INFO] calendar: configuring datastore [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore [INFO] todo: checking usability... [INFO] todo: configuring datastore [INFO] todo2: checking usability... [INFO] todo2: configuring datastore + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/testing-amd64/tests/edsfile/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsfile_1 client-edsfile-1@client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' [INFO] todo2: checking usability... [INFO] todo2: configuring datastore with sync mode 'two-way' + for i in 1 2 ++ pwd + ./syncevolution --configure --daemon=no --template SyncEvolution_Client sync=two-way logdir=/data/runtests/work/testing-amd64/tests/edsfile/Client_Sync_Current loglevel=4 printChanges=0 dumpData=0 useProxy=0 username=user01 password=user01pw remoteDeviceID=client-edsfile_2 client-edsfile-2@client-test-fileserver addressbook addressbook2 calendar calendar2 todo todo2 [INFO] addressbook: checking usability... [INFO] addressbook: configuring datastore with sync mode 'two-way' [INFO] addressbook2: checking usability... [INFO] addressbook2: configuring datastore with sync mode 'two-way' [INFO] calendar: checking usability... [INFO] calendar: configuring datastore with sync mode 'two-way' [INFO] calendar2: checking usability... [INFO] calendar2: configuring datastore with sync mode 'two-way' [INFO] todo: checking usability... [INFO] todo: configuring datastore with sync mode 'two-way' [INFO] todo2: checking usability... [INFO] todo2: configuring datastore with sync mode 'two-way' + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ sed -e 's/.*=//' ++ echo evolution-contacts=eds_contact + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + grep Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-100 line 100: RET=0 wrappercheck-100 line 101: set -e wrappercheck-100 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 108: kill -INT -102 wrappercheck-100 line 108: kill -TERM -102 wrappercheck-100 line 108: kill -TERM 102 wrappercheck-100 line 110: KILL_PID=355 wrappercheck-100 line 115: set +e wrappercheck-100 line 109: perl -e 'sleep(60); kill(9, -102);' wrappercheck-100 line 116: wait 102 wrappercheck-100 line 117: SUBRET=143 wrappercheck-100 line 118: case $SUBRET in wrappercheck-100 line 118: SUBRET=0 wrappercheck-100 line 120: SUBRET=0 wrappercheck-100 line 121: '[' 355 ']' wwrappercheck-100 line 122: LC_ALL=C wwrappercheck-100 line 122: kill -KILL 355 wrappercheck-100 line 122: msg= wrappercheck-100 line 123: echo '' wrappercheck-100 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 355 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-100 line 127: echo '' wrappercheck-100 line 129: wait 355 wrappercheck-100 line 131: set -e wrappercheck-100 line 132: '[' 0 = 0 ']' wrappercheck-100 line 133: RET=0 wrappercheck-100 line 136: exit 0 wrappercheck-80 line 100: RET=0 wrappercheck-80 line 101: set -e wrappercheck-80 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 108: kill -INT -82 wrappercheck-80 line 108: kill -TERM -82 wrappercheck-80 line 108: kill -TERM 82 wrappercheck-80 line 110: KILL_PID=360 wrappercheck-80 line 115: set +e wrappercheck-80 line 109: perl -e 'sleep(60); kill(9, -82);' wrappercheck-80 line 116: wait 82 wrappercheck-80 line 117: SUBRET=143 wrappercheck-80 line 118: case $SUBRET in wrappercheck-80 line 118: SUBRET=0 wrappercheck-80 line 120: SUBRET=0 wrappercheck-80 line 121: '[' 360 ']' wwrappercheck-80 line 122: LC_ALL=C wwrappercheck-80 line 122: kill -KILL 360 wrappercheck-80 line 122: msg= wrappercheck-80 line 123: echo '' wrappercheck-80 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 360 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-80 line 127: echo '' wrappercheck-80 line 129: wait 360 wrappercheck-80 line 131: set -e wrappercheck-80 line 132: '[' 0 = 0 ']' wrappercheck-80 line 133: RET=0 wrappercheck-80 line 136: exit 0 wrappercheck-20 line 100: RET=0 wrappercheck-20 line 101: set -e wrappercheck-20 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-20 line 108: kill -INT -25 wrappercheck-20 line 108: kill -TERM -25 wrappercheck-20 line 108: kill -TERM 25 wrappercheck-20 line 110: KILL_PID=365 wrappercheck-20 line 115: set +e wrappercheck-20 line 116: wait 25 wrappercheck-20 line 117: SUBRET=143 wrappercheck-20 line 109: perl -e 'sleep(60); kill(9, -25);' wrappercheck-20 line 118: case $SUBRET in wrappercheck-20 line 118: SUBRET=0 wrappercheck-20 line 120: SUBRET=0 wrappercheck-20 line 121: '[' 365 ']' wwrappercheck-20 line 122: LC_ALL=C wwrappercheck-20 line 122: kill -KILL 365 wrappercheck-20 line 122: msg= wrappercheck-20 line 123: grep -q 'No such process' wrappercheck-20 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 365 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-20 line 127: echo '' wrappercheck-20 line 129: wait 365 wrappercheck-20 line 131: set -e wrappercheck-20 line 132: '[' 0 = 0 ']' wrappercheck-20 line 133: RET=0 wrappercheck-20 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=370 wrappercheck-15 line 115: set +e wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 370 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 370 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: 370 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 370 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.fSVenLgNGC Fri Jan 5 17:13:08 2018 UTC (+ 9.6s / 4608.3s) === cleaning up === runtests.py-17082 Fri Jan 5 17:13:08 2018 UTC (+ 4608.3s / 6241.8s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/edsfile; 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/edsfile' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/edsfile/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/edsfile/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/edsfile/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r edsfile -- 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=edsfile CLIENT_TEST_SOURCES=eds_event,eds_contact SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_NUM_ITEMS=100 CLIENT_TEST_LOG=syncevohttp.log CLIENT_TEST_DELETE_REFRESH=1 CLIENT_TEST_PEER_CAN_RESTART=1 CLIENT_TEST_ADD_BOTH_SIDES_SERVER_IS_DUMB=1 CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/testing-amd64/tests/edsfile -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact ) Fri Jan 5 17:13:08 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['edsfile'] === Fri Jan 5 17:17:16 2018 UTC (+ 247.7s / 247.7s) property changed: status = acquired Fri Jan 5 17:17:16 2018 UTC (+ 0.0s / 247.7s) using jobserver Fri Jan 5 17:17:16 2018 UTC (+ 0.0s / 247.7s) === allocating 1 job slot(s) === Fri Jan 5 17:17:16 2018 UTC (+ 0.0s / 247.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.R6JSU499Ts/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-19 line 16: PIDS= wrappercheck-19 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-19 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-19 line 21: DAEMON_LOG= wrappercheck-19 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-19 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-19 line 25: declare -a BACKGROUND wrappercheck-19 line 26: declare -a ENV wrappercheck-19 line 28: '[' 55 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 31: shift wrappercheck-19 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 53 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 53 -gt 1 ']' wrappercheck-19 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 52 -gt 1 ']' wrappercheck-19 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 51 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 70: set -x wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 70: exec wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-26 line 16: PIDS= wrappercheck-26 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-26 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-26 line 21: DAEMON_LOG= wrappercheck-26 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-26 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-26 line 25: declare -a BACKGROUND wrappercheck-26 line 26: declare -a ENV wrappercheck-26 line 28: '[' 49 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 31: shift wrappercheck-26 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 47 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 43: shift wrappercheck-26 line 44: DAEMON_SLEEP=5 wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 45 -gt 1 ']' wrappercheck-26 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 35: shift wrappercheck-26 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 43 -gt 1 ']' wrappercheck-26 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 50: break wrappercheck-26 line 56: '[' 43 -gt 1 ']' wrappercheck-26 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-26 line 58: shift wrappercheck-26 line 56: '[' 42 -gt 1 ']' wrappercheck-26 line 56: '[' -- '!=' -- ']' wrappercheck-26 line 60: shift wrappercheck-26 line 62: '[' evolution-source-registry.log ']' wrappercheck-26 line 62: '[' '' ']' wrappercheck-26 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-26 line 72: BACKGROUND_PID=30 wrappercheck-26 line 73: PIDS+=30 wrappercheck-26 line 70: set -x wrappercheck-26 line 75: '[' evolution-source-registry.log ']' wrappercheck-26 line 70: exec wrappercheck-26 line 75: '[' '' ']' wrappercheck-26 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-26 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-26 line 93: kill -0 30 wrappercheck-26 line 94: set +e wrappercheck-26 line 95: '[' 5 ']' wrappercheck-26 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-26 line 97: sleep 5 wrappercheck-26 line 99: set -x wrappercheck-26 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 40 -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: '[' 38 -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: '[' 36 -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: '[' 36 -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: '[' 35 -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: '[' 34 -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 75: '[' evolution-addressbook-factory.log ']' wrappercheck-85 line 70: set -x 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-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: '[' 32 -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: '[' 30 -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: '[' 30 -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: '[' 29 -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: '[' 28 -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 70: set -x wrappercheck-105 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-105 line 70: exec 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/wrappercheck.sh VALGRIND_CMD_LOG=syncevohttp.log /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server --verbosity=3 --dbus-verbosity=1 --stdout --no-syslog --duration=unlimited -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-110 line 16: PIDS= wrappercheck-110 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-110 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-110 line 21: DAEMON_LOG= wrappercheck-110 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-110 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-110 line 25: declare -a BACKGROUND wrappercheck-110 line 26: declare -a ENV wrappercheck-110 line 28: '[' 23 -gt 1 ']' wrappercheck-110 line 28: '[' VALGRIND_CMD_LOG=syncevohttp.log '!=' -- ']' wrappercheck-110 line 29: case "$1" in wrappercheck-110 line 47: ENV[${#ENV[*]}]=VALGRIND_CMD_LOG=syncevohttp.log wrappercheck-110 line 53: shift wrappercheck-110 line 28: '[' 22 -gt 1 ']' wrappercheck-110 line 28: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-110 line 29: case "$1" in wrappercheck-110 line 50: break wrappercheck-110 line 56: '[' 22 -gt 1 ']' wrappercheck-110 line 56: '[' /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 21 -gt 1 ']' wrappercheck-110 line 56: '[' /data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/testing-amd64/install/usr/libexec/syncevo-dbus-server wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 20 -gt 1 ']' wrappercheck-110 line 56: '[' --verbosity=3 '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=--verbosity=3 wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 19 -gt 1 ']' wrappercheck-110 line 56: '[' --dbus-verbosity=1 '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=--dbus-verbosity=1 wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 18 -gt 1 ']' wrappercheck-110 line 56: '[' --stdout '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=--stdout wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 17 -gt 1 ']' wrappercheck-110 line 56: '[' --no-syslog '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=--no-syslog wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 16 -gt 1 ']' wrappercheck-110 line 56: '[' --duration=unlimited '!=' -- ']' wrappercheck-110 line 57: BACKGROUND[${#BACKGROUND[*]}]=--duration=unlimited wrappercheck-110 line 58: shift wrappercheck-110 line 56: '[' 15 -gt 1 ']' wrappercheck-110 line 56: '[' -- '!=' -- ']' wrappercheck-110 line 60: shift wrappercheck-110 line 62: '[' '' ']' wrappercheck-110 line 66: set +x *** starting /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh as background daemon, output to stderr wrappercheck-110 line 72: BACKGROUND_PID=114 wrappercheck-110 line 73: PIDS+=114 wrappercheck-110 line 70: set -x wrappercheck-110 line 70: exec wrappercheck-110 line 75: '[' '' ']' wrappercheck-110 line 84: '[' '' ']' wrappercheck-110 line 93: kill -0 114 wrappercheck-110 line 94: set +e wrappercheck-110 line 95: '[' '' ']' wrappercheck-110 line 99: set -x wrappercheck-110 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log syncevohttp.log --wait-for-daemon-output syncevo-http:.listening.on.port.9900 /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server --debug http://127.0.0.1:9900/syncevolution -- /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-117 line 16: PIDS= wrappercheck-117 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-117 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-117 line 21: DAEMON_LOG= wrappercheck-117 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-117 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-117 line 25: declare -a BACKGROUND wrappercheck-117 line 26: declare -a ENV wrappercheck-117 line 28: '[' 13 -gt 1 ']' wrappercheck-117 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-117 line 29: case "$1" in wrappercheck-117 line 31: shift wrappercheck-117 line 32: DAEMON_LOG=syncevohttp.log wrappercheck-117 line 53: shift wrappercheck-117 line 28: '[' 11 -gt 1 ']' wrappercheck-117 line 28: '[' --wait-for-daemon-output '!=' -- ']' wrappercheck-117 line 29: case "$1" in wrappercheck-117 line 39: shift wrappercheck-117 line 40: WAIT_FOR_DAEMON_OUTPUT=syncevo-http:.listening.on.port.9900 wrappercheck-117 line 53: shift wrappercheck-117 line 28: '[' 9 -gt 1 ']' wrappercheck-117 line 28: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-117 line 29: case "$1" in wrappercheck-117 line 50: break wrappercheck-117 line 56: '[' 9 -gt 1 ']' wrappercheck-117 line 56: '[' /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server '!=' -- ']' wrappercheck-117 line 57: BACKGROUND[${#BACKGROUND[*]}]=/data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-117 line 58: shift wrappercheck-117 line 56: '[' 8 -gt 1 ']' wrappercheck-117 line 56: '[' --debug '!=' -- ']' wrappercheck-117 line 57: BACKGROUND[${#BACKGROUND[*]}]=--debug wrappercheck-117 line 58: shift wrappercheck-117 line 56: '[' 7 -gt 1 ']' wrappercheck-117 line 56: '[' http://127.0.0.1:9900/syncevolution '!=' -- ']' wrappercheck-117 line 57: BACKGROUND[${#BACKGROUND[*]}]=http://127.0.0.1:9900/syncevolution wrappercheck-117 line 58: shift wrappercheck-117 line 56: '[' 6 -gt 1 ']' wrappercheck-117 line 56: '[' -- '!=' -- ']' wrappercheck-117 line 60: shift wrappercheck-117 line 62: '[' syncevohttp.log ']' wrappercheck-117 line 62: '[' syncevo-http:.listening.on.port.9900 ']' wwrappercheck-117 line 63: grep -e syncevo-http:.listening.on.port.9900 syncevohttp.log grep: syncevohttp.log: No such file or directory wwrappercheck-117 line 63: wc -l wrappercheck-117 line 63: daemonmatches=0 wrappercheck-117 line 66: set +x *** starting /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server as background daemon, output to syncevohttp.log wrappercheck-117 line 72: BACKGROUND_PID=128 wrappercheck-117 line 73: PIDS+=128 wrappercheck-117 line 70: set -x wrappercheck-117 line 70: exec wrappercheck-117 line 75: '[' syncevohttp.log ']' wrappercheck-117 line 75: '[' syncevo-http:.listening.on.port.9900 ']' wrappercheck-117 line 76: set +x *** waiting for daemon to write 'syncevo-http:.listening.on.port.9900' into syncevohttp.log wrappercheck-117 line 84: '[' '' ']' wrappercheck-117 line 93: kill -0 128 wrappercheck-117 line 94: set +e wrappercheck-117 line 95: '[' '' ']' wrappercheck-117 line 99: set -x wrappercheck-117 line 99: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp --gen-suppressions=all --log-file=/data/runtests/work/testing-amd64/tests/edsfile/valgrind.p147.c%p.out ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact Client::Sync::eds_event::testDeleteAllRefresh okay Client::Sync::eds_event::testTwoWaySync okay Client::Sync::eds_event::testSlowSync okay Client::Sync::eds_event::testRefreshFromServerSync okay Client::Sync::eds_event::testRefreshFromClientSync okay Client::Sync::eds_event::testRefreshFromRemoteSync okay Client::Sync::eds_event::testRefreshFromLocalSync okay Client::Sync::eds_event::testTimeout okay Client::Sync::eds_event::testConversion okay Client::Sync::eds_event::testRefreshFromServerSemantic okay Client::Sync::eds_event::testRefreshFromClientSemantic okay Client::Sync::eds_event::testRefreshStatus okay Client::Sync::eds_event::testTwoWayRestart okay Client::Sync::eds_event::testSlowRestart okay Client::Sync::eds_event::testRefreshFromLocalRestart okay Client::Sync::eds_event::testOneWayFromLocalRestart okay Client::Sync::eds_event::testRefreshFromRemoteRestart okay Client::Sync::eds_event::testOneWayFromRemoteRestart okay Client::Sync::eds_event::testManyRestarts okay Client::Sync::eds_event::testCopy okay Client::Sync::eds_event::testDelete okay Client::Sync::eds_event::testAddUpdate okay Client::Sync::eds_event::testManyItems okay Client::Sync::eds_event::testManyDeletes okay Client::Sync::eds_event::testSlowSyncSemanticcouldn't lock 16384 bytes of memory (libgcrypt): Cannot allocate memory ** Message: couldn't allocate secure memory to keep passwords and or keys from being written to the disk okay Client::Sync::eds_event::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event::testDeleteBothSides okay Client::Sync::eds_event::testAddBothSides okay Client::Sync::eds_event::testAddBothSidesRefresh okay Client::Sync::eds_event::testLinkedItemsParentChild okay Client::Sync::eds_event::testLinkedItemsChild okay Client::Sync::eds_event::testLinkedItemsChildParent okay Client::Sync::eds_event::testUpdate okay Client::Sync::eds_event::testMerge okay Client::Sync::eds_event::testTwinning okay Client::Sync::eds_event::testItems okay Client::Sync::eds_event::testItemsXML okay Client::Sync::eds_event::testMaxMsg okay Client::Sync::eds_event::testLargeObject okay Client::Sync::eds_event::testOneWayFromServer okay Client::Sync::eds_event::testOneWayFromClient okay Client::Sync::eds_event::testOneWayFromRemote okay Client::Sync::eds_event::testOneWayFromLocal okay Client::Sync::eds_contact::testDeleteAllRefresh okay Client::Sync::eds_contact::testTwoWaySync okay Client::Sync::eds_contact::testSlowSync okay Client::Sync::eds_contact::testRefreshFromServerSync okay Client::Sync::eds_contact::testRefreshFromClientSync okay Client::Sync::eds_contact::testRefreshFromRemoteSync okay Client::Sync::eds_contact::testRefreshFromLocalSync okay Client::Sync::eds_contact::testConversion okay Client::Sync::eds_contact::testRefreshFromServerSemantic okay Client::Sync::eds_contact::testRefreshFromClientSemantic okay Client::Sync::eds_contact::testRefreshStatus okay Client::Sync::eds_contact::testTwoWayRestart okay Client::Sync::eds_contact::testSlowRestart okay Client::Sync::eds_contact::testRefreshFromLocalRestart okay Client::Sync::eds_contact::testOneWayFromLocalRestart okay Client::Sync::eds_contact::testRefreshFromRemoteRestart okay Client::Sync::eds_contact::testOneWayFromRemoteRestart okay Client::Sync::eds_contact::testManyRestarts okay Client::Sync::eds_contact::testCopy okay Client::Sync::eds_contact::testDelete okay Client::Sync::eds_contact::testAddUpdate okay Client::Sync::eds_contact::testManyItems okay Client::Sync::eds_contact::testManyDeletes okay Client::Sync::eds_contact::testSlowSyncSemantic okay Client::Sync::eds_contact::testComplexRefreshFromServerSemantic okay Client::Sync::eds_contact::testDeleteBothSides okay Client::Sync::eds_contact::testUpdate okay Client::Sync::eds_contact::testComplexUpdate okay Client::Sync::eds_contact::testMerge okay Client::Sync::eds_contact::testTwinning okay Client::Sync::eds_contact::testItems okay Client::Sync::eds_contact::testItemsXML okay Client::Sync::eds_contact::testExtensions okay Client::Sync::eds_contact::testMaxMsg okay Client::Sync::eds_contact::testLargeObject okay Client::Sync::eds_contact::testOneWayFromServer okay Client::Sync::eds_contact::testOneWayFromClient okay Client::Sync::eds_contact::testOneWayFromRemote okay Client::Sync::eds_contact::testOneWayFromLocal okay Client::Sync::eds_event_eds_contact::testDeleteAllRefresh okay Client::Sync::eds_event_eds_contact::testTwoWaySync okay Client::Sync::eds_event_eds_contact::testSlowSync okay Client::Sync::eds_event_eds_contact::testRefreshFromServerSync okay Client::Sync::eds_event_eds_contact::testRefreshFromClientSync okay Client::Sync::eds_event_eds_contact::testRefreshFromRemoteSync okay Client::Sync::eds_event_eds_contact::testRefreshFromLocalSync okay Client::Sync::eds_event_eds_contact::testConversion okay Client::Sync::eds_event_eds_contact::testRefreshFromServerSemantic okay Client::Sync::eds_event_eds_contact::testRefreshFromClientSemantic okay Client::Sync::eds_event_eds_contact::testRefreshStatus okay Client::Sync::eds_event_eds_contact::testTwoWayRestart okay Client::Sync::eds_event_eds_contact::testSlowRestart okay Client::Sync::eds_event_eds_contact::testRefreshFromLocalRestart okay Client::Sync::eds_event_eds_contact::testOneWayFromLocalRestart okay Client::Sync::eds_event_eds_contact::testRefreshFromRemoteRestart okay Client::Sync::eds_event_eds_contact::testOneWayFromRemoteRestart okay Client::Sync::eds_event_eds_contact::testManyRestarts okay Client::Sync::eds_event_eds_contact::testCopy okay Client::Sync::eds_event_eds_contact::testDelete okay Client::Sync::eds_event_eds_contact::testAddUpdate okay Client::Sync::eds_event_eds_contact::testManyItems okay Client::Sync::eds_event_eds_contact::testManyDeletes okay Client::Sync::eds_event_eds_contact::testSlowSyncSemantic okay Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic okay Client::Sync::eds_event_eds_contact::testDeleteBothSides okay Client::Sync::eds_event_eds_contact::testUpdate okay Client::Sync::eds_event_eds_contact::testMerge okay Client::Sync::eds_event_eds_contact::testTwinning okay Client::Sync::eds_event_eds_contact::testItems okay Client::Sync::eds_event_eds_contact::testItemsXML okay Client::Sync::eds_event_eds_contact::testMaxMsg okay Client::Sync::eds_event_eds_contact::testLargeObject okay Client::Sync::eds_event_eds_contact::testOneWayFromServer okay Client::Sync::eds_event_eds_contact::testOneWayFromClient okay Client::Sync::eds_event_eds_contact::testOneWayFromRemote okay Client::Sync::eds_event_eds_contact::testOneWayFromLocal okay OKvalgrindcheck (147): './client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact' (151): returned 0 ==1005== Memcheck, a memory error detector ==1005== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1005== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1005== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocalRestart ==1005== Parent PID: 151 ==1005== ==1005== ==1005== HEAP SUMMARY: ==1005== in use at exit: 6,993,996 bytes in 57,765 blocks ==1005== total heap usage: 1,904,751 allocs, 1,846,881 frees, 273,926,798 bytes allocated ==1005== ==1005== LEAK SUMMARY: ==1005== definitely lost: 0 bytes in 0 blocks ==1005== indirectly lost: 0 bytes in 0 blocks ==1005== possibly lost: 960 bytes in 3 blocks ==1005== still reachable: 6,230,025 bytes in 48,003 blocks ==1005== of which reachable via heuristic: ==1005== length64 : 6,024 bytes in 99 blocks ==1005== newarray : 6,408 bytes in 55 blocks ==1005== suppressed: 675,003 bytes in 9,088 blocks ==1005== Reachable blocks (those to which a pointer was found) are not shown. ==1005== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1005== ==1005== For counts of detected and suppressed errors, rerun with: -v ==1005== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==10071== Memcheck, a memory error detector ==10071== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10071== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10071== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalRestart ==10071== Parent PID: 151 ==10071== ==10071== ==10071== HEAP SUMMARY: ==10071== in use at exit: 7,086,896 bytes in 58,636 blocks ==10071== total heap usage: 2,272,457 allocs, 2,213,767 frees, 299,129,426 bytes allocated ==10071== ==10071== LEAK SUMMARY: ==10071== definitely lost: 0 bytes in 0 blocks ==10071== indirectly lost: 0 bytes in 0 blocks ==10071== possibly lost: 1,392 bytes in 4 blocks ==10071== still reachable: 6,232,043 bytes in 48,023 blocks ==10071== of which reachable via heuristic: ==10071== length64 : 6,728 bytes in 107 blocks ==10071== newarray : 6,456 bytes in 58 blocks ==10071== suppressed: 739,509 bytes in 9,753 blocks ==10071== Reachable blocks (those to which a pointer was found) are not shown. ==10071== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10071== ==10071== For counts of detected and suppressed errors, rerun with: -v ==10071== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10275== Memcheck, a memory error detector ==10275== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10275== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10275== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocalRestart ==10275== Parent PID: 151 ==10275== ==10275== ==10275== HEAP SUMMARY: ==10275== in use at exit: 7,095,210 bytes in 58,774 blocks ==10275== total heap usage: 2,257,366 allocs, 2,198,538 frees, 297,605,342 bytes allocated ==10275== ==10275== LEAK SUMMARY: ==10275== definitely lost: 0 bytes in 0 blocks ==10275== indirectly lost: 0 bytes in 0 blocks ==10275== possibly lost: 1,392 bytes in 4 blocks ==10275== still reachable: 6,237,380 bytes in 48,116 blocks ==10275== of which reachable via heuristic: ==10275== length64 : 6,728 bytes in 107 blocks ==10275== newarray : 6,456 bytes in 58 blocks ==10275== suppressed: 742,486 bytes in 9,798 blocks ==10275== Reachable blocks (those to which a pointer was found) are not shown. ==10275== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10275== ==10275== For counts of detected and suppressed errors, rerun with: -v ==10275== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10481== Memcheck, a memory error detector ==10481== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10481== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10481== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteRestart ==10481== Parent PID: 151 ==10481== ==10481== ==10481== HEAP SUMMARY: ==10481== in use at exit: 7,096,855 bytes in 58,800 blocks ==10481== total heap usage: 1,260,977 allocs, 1,202,125 frees, 167,897,438 bytes allocated ==10481== ==10481== LEAK SUMMARY: ==10481== definitely lost: 0 bytes in 0 blocks ==10481== indirectly lost: 0 bytes in 0 blocks ==10481== possibly lost: 1,392 bytes in 4 blocks ==10481== still reachable: 6,238,809 bytes in 48,139 blocks ==10481== of which reachable via heuristic: ==10481== length64 : 6,728 bytes in 107 blocks ==10481== newarray : 6,456 bytes in 58 blocks ==10481== suppressed: 742,702 bytes in 9,801 blocks ==10481== Reachable blocks (those to which a pointer was found) are not shown. ==10481== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10481== ==10481== For counts of detected and suppressed errors, rerun with: -v ==10481== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10591== Memcheck, a memory error detector ==10591== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10591== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10591== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemoteRestart ==10591== Parent PID: 151 ==10591== ==10591== ==10591== HEAP SUMMARY: ==10591== in use at exit: 7,093,407 bytes in 58,744 blocks ==10591== total heap usage: 2,242,955 allocs, 2,184,157 frees, 296,172,938 bytes allocated ==10591== ==10591== LEAK SUMMARY: ==10591== definitely lost: 0 bytes in 0 blocks ==10591== indirectly lost: 0 bytes in 0 blocks ==10591== possibly lost: 1,392 bytes in 4 blocks ==10591== still reachable: 6,235,897 bytes in 48,091 blocks ==10591== of which reachable via heuristic: ==10591== length64 : 6,728 bytes in 107 blocks ==10591== newarray : 6,456 bytes in 58 blocks ==10591== suppressed: 742,166 bytes in 9,793 blocks ==10591== Reachable blocks (those to which a pointer was found) are not shown. ==10591== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10591== ==10591== For counts of detected and suppressed errors, rerun with: -v ==10591== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==10797== Memcheck, a memory error detector ==10797== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==10797== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==10797== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyRestarts ==10797== Parent PID: 151 ==10797== ==10797== ==10797== HEAP SUMMARY: ==10797== in use at exit: 7,098,399 bytes in 58,839 blocks ==10797== total heap usage: 2,286,383 allocs, 2,227,492 frees, 273,995,734 bytes allocated ==10797== ==10797== LEAK SUMMARY: ==10797== definitely lost: 0 bytes in 0 blocks ==10797== indirectly lost: 0 bytes in 0 blocks ==10797== possibly lost: 1,392 bytes in 4 blocks ==10797== still reachable: 6,240,264 bytes in 48,161 blocks ==10797== of which reachable via heuristic: ==10797== length64 : 6,728 bytes in 107 blocks ==10797== newarray : 6,456 bytes in 58 blocks ==10797== suppressed: 742,791 bytes in 9,818 blocks ==10797== Reachable blocks (those to which a pointer was found) are not shown. ==10797== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==10797== ==10797== For counts of detected and suppressed errors, rerun with: -v ==10797== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11063== Memcheck, a memory error detector ==11063== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11063== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11063== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==11063== Parent PID: 151 ==11063== ==11063== ==11063== HEAP SUMMARY: ==11063== in use at exit: 7,093,479 bytes in 58,746 blocks ==11063== total heap usage: 2,218,532 allocs, 2,159,732 frees, 286,734,601 bytes allocated ==11063== ==11063== LEAK SUMMARY: ==11063== definitely lost: 0 bytes in 0 blocks ==11063== indirectly lost: 0 bytes in 0 blocks ==11063== possibly lost: 1,392 bytes in 4 blocks ==11063== still reachable: 6,235,761 bytes in 48,089 blocks ==11063== of which reachable via heuristic: ==11063== length64 : 6,728 bytes in 107 blocks ==11063== newarray : 6,456 bytes in 58 blocks ==11063== suppressed: 742,374 bytes in 9,797 blocks ==11063== Reachable blocks (those to which a pointer was found) are not shown. ==11063== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11063== ==11063== For counts of detected and suppressed errors, rerun with: -v ==11063== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1116== Memcheck, a memory error detector ==1116== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1116== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1116== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteRestart ==1116== Parent PID: 151 ==1116== ==1116== ==1116== HEAP SUMMARY: ==1116== in use at exit: 6,994,951 bytes in 57,793 blocks ==1116== total heap usage: 1,090,877 allocs, 1,033,032 frees, 156,637,201 bytes allocated ==1116== ==1116== LEAK SUMMARY: ==1116== definitely lost: 0 bytes in 0 blocks ==1116== indirectly lost: 0 bytes in 0 blocks ==1116== possibly lost: 960 bytes in 3 blocks ==1116== still reachable: 6,230,672 bytes in 47,993 blocks ==1116== of which reachable via heuristic: ==1116== length64 : 6,024 bytes in 99 blocks ==1116== newarray : 6,408 bytes in 55 blocks ==1116== suppressed: 675,143 bytes in 9,124 blocks ==1116== Reachable blocks (those to which a pointer was found) are not shown. ==1116== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1116== ==1116== For counts of detected and suppressed errors, rerun with: -v ==1116== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==11220== Memcheck, a memory error detector ==11220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11220== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==11220== Parent PID: 11063 ==11220== ==11238== Memcheck, a memory error detector ==11238== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11238== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11238== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==11238== Parent PID: 11063 ==11238== ==11254== Memcheck, a memory error detector ==11254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11254== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==11254== Parent PID: 11063 ==11254== ==11272== Memcheck, a memory error detector ==11272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11272== Command: ./client-test Client::Sync::eds_event_eds_contact::testCopy ==11272== Parent PID: 11063 ==11272== ==11278== Memcheck, a memory error detector ==11278== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11278== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11278== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==11278== Parent PID: 151 ==11278== ==11278== ==11278== HEAP SUMMARY: ==11278== in use at exit: 7,085,811 bytes in 58,624 blocks ==11278== total heap usage: 2,956,491 allocs, 2,897,811 frees, 394,215,692 bytes allocated ==11278== ==11278== LEAK SUMMARY: ==11278== definitely lost: 0 bytes in 0 blocks ==11278== indirectly lost: 0 bytes in 0 blocks ==11278== possibly lost: 1,392 bytes in 4 blocks ==11278== still reachable: 6,230,906 bytes in 48,001 blocks ==11278== of which reachable via heuristic: ==11278== length64 : 6,728 bytes in 107 blocks ==11278== newarray : 6,456 bytes in 58 blocks ==11278== suppressed: 739,561 bytes in 9,763 blocks ==11278== Reachable blocks (those to which a pointer was found) are not shown. ==11278== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11278== ==11278== For counts of detected and suppressed errors, rerun with: -v ==11278== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11436== Memcheck, a memory error detector ==11436== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11436== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11436== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==11436== Parent PID: 11278 ==11436== ==11454== Memcheck, a memory error detector ==11454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11454== Command: ./client-test Client::Sync::eds_event_eds_contact::testDelete ==11454== Parent PID: 11278 ==11454== ==11515== Memcheck, a memory error detector ==11515== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11515== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11515== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==11515== Parent PID: 151 ==11515== ==11515== ==11515== HEAP SUMMARY: ==11515== in use at exit: 7,085,707 bytes in 58,608 blocks ==11515== total heap usage: 2,482,017 allocs, 2,423,354 frees, 334,092,241 bytes allocated ==11515== ==11515== LEAK SUMMARY: ==11515== definitely lost: 0 bytes in 0 blocks ==11515== indirectly lost: 0 bytes in 0 blocks ==11515== possibly lost: 1,392 bytes in 4 blocks ==11515== still reachable: 6,230,246 bytes in 47,997 blocks ==11515== of which reachable via heuristic: ==11515== length64 : 6,728 bytes in 107 blocks ==11515== newarray : 6,456 bytes in 58 blocks ==11515== suppressed: 740,117 bytes in 9,751 blocks ==11515== Reachable blocks (those to which a pointer was found) are not shown. ==11515== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11515== ==11515== For counts of detected and suppressed errors, rerun with: -v ==11515== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==11687== Memcheck, a memory error detector ==11687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11687== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==11687== Parent PID: 11515 ==11687== ==11705== Memcheck, a memory error detector ==11705== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11705== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11705== Command: ./client-test Client::Sync::eds_event_eds_contact::testAddUpdate ==11705== Parent PID: 11515 ==11705== ==11710== Memcheck, a memory error detector ==11710== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11710== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11710== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11710== Parent PID: 151 ==11710== ==11710== ==11710== HEAP SUMMARY: ==11710== in use at exit: 7,144,182 bytes in 58,804 blocks ==11710== total heap usage: 8,248,900 allocs, 8,190,041 frees, 1,009,149,994 bytes allocated ==11710== ==11710== LEAK SUMMARY: ==11710== definitely lost: 0 bytes in 0 blocks ==11710== indirectly lost: 0 bytes in 0 blocks ==11710== possibly lost: 1,392 bytes in 4 blocks ==11710== still reachable: 6,283,772 bytes in 48,021 blocks ==11710== of which reachable via heuristic: ==11710== length64 : 6,728 bytes in 107 blocks ==11710== newarray : 6,456 bytes in 58 blocks ==11710== suppressed: 745,066 bytes in 9,923 blocks ==11710== Reachable blocks (those to which a pointer was found) are not shown. ==11710== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11710== ==11710== For counts of detected and suppressed errors, rerun with: -v ==11710== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1178== Memcheck, a memory error detector ==1178== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1178== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1178== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemoteRestart ==1178== Parent PID: 151 ==1178== ==1178== ==1178== HEAP SUMMARY: ==1178== in use at exit: 6,992,547 bytes in 57,733 blocks ==1178== total heap usage: 1,894,084 allocs, 1,836,297 frees, 273,092,423 bytes allocated ==1178== ==1178== LEAK SUMMARY: ==1178== definitely lost: 0 bytes in 0 blocks ==1178== indirectly lost: 0 bytes in 0 blocks ==1178== possibly lost: 960 bytes in 3 blocks ==1178== still reachable: 6,229,028 bytes in 47,981 blocks ==1178== of which reachable via heuristic: ==1178== length64 : 6,024 bytes in 99 blocks ==1178== newarray : 6,408 bytes in 55 blocks ==1178== suppressed: 674,551 bytes in 9,078 blocks ==1178== Reachable blocks (those to which a pointer was found) are not shown. ==1178== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1178== ==1178== For counts of detected and suppressed errors, rerun with: -v ==1178== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1178== could not unlink /tmp/vgdb-pipe-from-vgdb-to-1178-by-nightly-on-syncev ==1178== could not unlink /tmp/vgdb-pipe-to-vgdb-from-1178-by-nightly-on-syncev ==1178== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-1178-by-nightly-on-syncev ==11874== Memcheck, a memory error detector ==11874== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11874== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11874== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11874== Parent PID: 11710 ==11874== ==11892== Memcheck, a memory error detector ==11892== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11892== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11892== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyItems ==11892== Parent PID: 11710 ==11892== ==11897== Memcheck, a memory error detector ==11897== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==11897== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==11897== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==11897== Parent PID: 151 ==11897== ==11897== ==11897== HEAP SUMMARY: ==11897== in use at exit: 7,092,085 bytes in 58,607 blocks ==11897== total heap usage: 9,977,044 allocs, 9,918,380 frees, 1,073,081,408 bytes allocated ==11897== ==11897== LEAK SUMMARY: ==11897== definitely lost: 0 bytes in 0 blocks ==11897== indirectly lost: 0 bytes in 0 blocks ==11897== possibly lost: 1,392 bytes in 4 blocks ==11897== still reachable: 6,237,344 bytes in 48,001 blocks ==11897== of which reachable via heuristic: ==11897== length64 : 6,728 bytes in 107 blocks ==11897== newarray : 6,456 bytes in 58 blocks ==11897== suppressed: 739,397 bytes in 9,746 blocks ==11897== Reachable blocks (those to which a pointer was found) are not shown. ==11897== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==11897== ==11897== For counts of detected and suppressed errors, rerun with: -v ==11897== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12058== Memcheck, a memory error detector ==12058== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12058== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12058== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==12058== Parent PID: 11897 ==12058== ==12076== Memcheck, a memory error detector ==12076== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12076== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12076== Command: ./client-test Client::Sync::eds_event_eds_contact::testManyDeletes ==12076== Parent PID: 11897 ==12076== ==12133== Memcheck, a memory error detector ==12133== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12133== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12133== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==12133== Parent PID: 151 ==12133== ==12133== ==12133== HEAP SUMMARY: ==12133== in use at exit: 7,087,591 bytes in 58,649 blocks ==12133== total heap usage: 3,990,988 allocs, 3,932,280 frees, 550,374,751 bytes allocated ==12133== ==12133== LEAK SUMMARY: ==12133== definitely lost: 0 bytes in 0 blocks ==12133== indirectly lost: 0 bytes in 0 blocks ==12133== possibly lost: 1,392 bytes in 4 blocks ==12133== still reachable: 6,230,570 bytes in 47,999 blocks ==12133== of which reachable via heuristic: ==12133== length64 : 6,728 bytes in 107 blocks ==12133== newarray : 6,456 bytes in 58 blocks ==12133== suppressed: 741,509 bytes in 9,788 blocks ==12133== Reachable blocks (those to which a pointer was found) are not shown. ==12133== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12133== ==12133== For counts of detected and suppressed errors, rerun with: -v ==12133== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12291== Memcheck, a memory error detector ==12291== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12291== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12291== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==12291== Parent PID: 12133 ==12291== ==12309== Memcheck, a memory error detector ==12309== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12309== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12309== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSyncSemantic ==12309== Parent PID: 12133 ==12309== ==12412== Memcheck, a memory error detector ==12412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12412== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==12412== Parent PID: 151 ==12412== ==12412== ==12412== HEAP SUMMARY: ==12412== in use at exit: 7,088,490 bytes in 58,660 blocks ==12412== total heap usage: 3,384,669 allocs, 3,325,952 frees, 451,888,874 bytes allocated ==12412== ==12412== LEAK SUMMARY: ==12412== definitely lost: 0 bytes in 0 blocks ==12412== indirectly lost: 0 bytes in 0 blocks ==12412== possibly lost: 1,392 bytes in 4 blocks ==12412== still reachable: 6,233,461 bytes in 48,046 blocks ==12412== of which reachable via heuristic: ==12412== length64 : 6,728 bytes in 107 blocks ==12412== newarray : 6,456 bytes in 58 blocks ==12412== suppressed: 739,685 bytes in 9,754 blocks ==12412== Reachable blocks (those to which a pointer was found) are not shown. ==12412== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12412== ==12412== For counts of detected and suppressed errors, rerun with: -v ==12412== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12570== Memcheck, a memory error detector ==12570== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12570== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12570== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==12570== Parent PID: 12412 ==12570== ==12588== Memcheck, a memory error detector ==12588== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12588== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12588== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==12588== Parent PID: 12412 ==12588== ==12604== Memcheck, a memory error detector ==12604== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12604== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12604== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==12604== Parent PID: 12412 ==12604== ==12622== Memcheck, a memory error detector ==12622== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12622== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12622== Command: ./client-test Client::Sync::eds_event_eds_contact::testComplexRefreshFromServerSemantic ==12622== Parent PID: 12412 ==12622== ==12691== Memcheck, a memory error detector ==12691== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12691== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12691== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12691== Parent PID: 151 ==12691== ==12691== ==12691== HEAP SUMMARY: ==12691== in use at exit: 7,099,662 bytes in 58,858 blocks ==12691== total heap usage: 3,170,823 allocs, 3,111,909 frees, 407,785,055 bytes allocated ==12691== ==12691== LEAK SUMMARY: ==12691== definitely lost: 0 bytes in 0 blocks ==12691== indirectly lost: 0 bytes in 0 blocks ==12691== possibly lost: 1,392 bytes in 4 blocks ==12691== still reachable: 6,242,998 bytes in 48,204 blocks ==12691== of which reachable via heuristic: ==12691== length64 : 6,728 bytes in 107 blocks ==12691== newarray : 6,456 bytes in 58 blocks ==12691== suppressed: 741,152 bytes in 9,792 blocks ==12691== Reachable blocks (those to which a pointer was found) are not shown. ==12691== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12691== ==12691== For counts of detected and suppressed errors, rerun with: -v ==12691== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==12848== Memcheck, a memory error detector ==12848== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12848== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12848== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12848== Parent PID: 12691 ==12848== ==12866== Memcheck, a memory error detector ==12866== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12866== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12866== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12866== Parent PID: 12691 ==12866== ==12882== Memcheck, a memory error detector ==12882== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12882== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12882== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12882== Parent PID: 12691 ==12882== ==1290== Memcheck, a memory error detector ==1290== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1290== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1290== Command: ./client-test Client::Sync::eds_event::testManyRestarts ==1290== Parent PID: 151 ==1290== ==1290== ==1290== HEAP SUMMARY: ==1290== in use at exit: 6,985,098 bytes in 57,619 blocks ==1290== total heap usage: 1,648,974 allocs, 1,591,303 frees, 225,747,679 bytes allocated ==1290== ==1290== LEAK SUMMARY: ==1290== definitely lost: 0 bytes in 0 blocks ==1290== indirectly lost: 0 bytes in 0 blocks ==1290== possibly lost: 960 bytes in 3 blocks ==1290== still reachable: 6,227,584 bytes in 47,976 blocks ==1290== of which reachable via heuristic: ==1290== length64 : 6,024 bytes in 99 blocks ==1290== newarray : 6,408 bytes in 55 blocks ==1290== suppressed: 668,378 bytes in 8,967 blocks ==1290== Reachable blocks (those to which a pointer was found) are not shown. ==1290== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1290== ==1290== For counts of detected and suppressed errors, rerun with: -v ==1290== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==12900== Memcheck, a memory error detector ==12900== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12900== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12900== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteBothSides ==12900== Parent PID: 12691 ==12900== ==12986== Memcheck, a memory error detector ==12986== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==12986== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==12986== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==12986== Parent PID: 151 ==12986== ==12986== ==12986== HEAP SUMMARY: ==12986== in use at exit: 7,089,231 bytes in 58,689 blocks ==12986== total heap usage: 3,038,788 allocs, 2,980,043 frees, 400,220,322 bytes allocated ==12986== ==12986== LEAK SUMMARY: ==12986== definitely lost: 0 bytes in 0 blocks ==12986== indirectly lost: 0 bytes in 0 blocks ==12986== possibly lost: 1,392 bytes in 4 blocks ==12986== still reachable: 6,230,870 bytes in 48,003 blocks ==12986== of which reachable via heuristic: ==12986== length64 : 6,728 bytes in 107 blocks ==12986== newarray : 6,456 bytes in 58 blocks ==12986== suppressed: 743,017 bytes in 9,826 blocks ==12986== Reachable blocks (those to which a pointer was found) are not shown. ==12986== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==12986== ==12986== For counts of detected and suppressed errors, rerun with: -v ==12986== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13144== Memcheck, a memory error detector ==13144== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13144== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13144== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==13144== Parent PID: 12986 ==13144== ==13162== Memcheck, a memory error detector ==13162== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13162== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13162== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==13162== Parent PID: 12986 ==13162== ==13226== Memcheck, a memory error detector ==13226== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13226== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13226== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==13226== Parent PID: 12986 ==13226== ==13244== Memcheck, a memory error detector ==13244== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13244== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13244== Command: ./client-test Client::Sync::eds_event_eds_contact::testUpdate ==13244== Parent PID: 12986 ==13244== ==13250== Memcheck, a memory error detector ==13250== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13250== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13250== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13250== Parent PID: 151 ==13250== ==13250== ==13250== HEAP SUMMARY: ==13250== in use at exit: 7,095,094 bytes in 58,771 blocks ==13250== total heap usage: 4,031,327 allocs, 3,972,498 frees, 525,144,163 bytes allocated ==13250== ==13250== LEAK SUMMARY: ==13250== definitely lost: 0 bytes in 0 blocks ==13250== indirectly lost: 0 bytes in 0 blocks ==13250== possibly lost: 1,392 bytes in 4 blocks ==13250== still reachable: 6,237,348 bytes in 48,115 blocks ==13250== of which reachable via heuristic: ==13250== length64 : 6,728 bytes in 107 blocks ==13250== newarray : 6,456 bytes in 58 blocks ==13250== suppressed: 742,402 bytes in 9,796 blocks ==13250== Reachable blocks (those to which a pointer was found) are not shown. ==13250== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13250== ==13250== For counts of detected and suppressed errors, rerun with: -v ==13250== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13406== Memcheck, a memory error detector ==13406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13406== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13406== Parent PID: 13250 ==13406== ==13424== Memcheck, a memory error detector ==13424== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13424== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13424== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13424== Parent PID: 13250 ==13424== ==13528== Memcheck, a memory error detector ==13528== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13528== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13528== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13528== Parent PID: 13250 ==13528== ==13546== Memcheck, a memory error detector ==13546== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13546== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13546== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13546== Parent PID: 13250 ==13546== ==13578== Memcheck, a memory error detector ==13578== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13578== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13578== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13578== Parent PID: 13250 ==13578== ==13596== Memcheck, a memory error detector ==13596== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13596== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13596== Command: ./client-test Client::Sync::eds_event_eds_contact::testMerge ==13596== Parent PID: 13250 ==13596== ==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_event_eds_contact::testTwinning ==13602== Parent PID: 151 ==13602== ==13602== ==13602== HEAP SUMMARY: ==13602== in use at exit: 7,094,182 bytes in 58,757 blocks ==13602== total heap usage: 3,568,987 allocs, 3,510,175 frees, 439,902,842 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: 1,392 bytes in 4 blocks ==13602== still reachable: 6,236,924 bytes in 48,108 blocks ==13602== of which reachable via heuristic: ==13602== length64 : 6,728 bytes in 107 blocks ==13602== newarray : 6,456 bytes in 58 blocks ==13602== suppressed: 741,914 bytes in 9,789 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: 4 errors from 4 contexts (suppressed: 70 from 70) ==13682== Memcheck, a memory error detector ==13682== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13682== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13682== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13682== Parent PID: 13602 ==13682== ==13710== Memcheck, a memory error detector ==13710== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13710== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13710== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13710== Parent PID: 13602 ==13710== ==13800== Memcheck, a memory error detector ==13800== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13800== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13800== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13800== Parent PID: 13602 ==13800== ==13818== Memcheck, a memory error detector ==13818== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13818== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13818== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwinning ==13818== Parent PID: 13602 ==13818== ==13824== Memcheck, a memory error detector ==13824== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13824== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13824== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13824== Parent PID: 151 ==13824== ==13824== ==13824== HEAP SUMMARY: ==13824== in use at exit: 7,098,068 bytes in 58,838 blocks ==13824== total heap usage: 2,459,643 allocs, 2,400,752 frees, 293,024,029 bytes allocated ==13824== ==13824== LEAK SUMMARY: ==13824== definitely lost: 0 bytes in 0 blocks ==13824== indirectly lost: 0 bytes in 0 blocks ==13824== possibly lost: 1,392 bytes in 4 blocks ==13824== still reachable: 6,238,583 bytes in 48,133 blocks ==13824== of which reachable via heuristic: ==13824== length64 : 6,728 bytes in 107 blocks ==13824== newarray : 6,456 bytes in 58 blocks ==13824== suppressed: 744,141 bytes in 9,845 blocks ==13824== Reachable blocks (those to which a pointer was found) are not shown. ==13824== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==13824== ==13824== For counts of detected and suppressed errors, rerun with: -v ==13824== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==13904== Memcheck, a memory error detector ==13904== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13904== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13904== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13904== Parent PID: 13824 ==13904== ==13931== Memcheck, a memory error detector ==13931== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13931== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13931== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13931== Parent PID: 13824 ==13931== ==13987== Memcheck, a memory error detector ==13987== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==13987== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==13987== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==13987== Parent PID: 13824 ==13987== ==14005== Memcheck, a memory error detector ==14005== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14005== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14005== Command: ./client-test Client::Sync::eds_event_eds_contact::testItems ==14005== Parent PID: 13824 ==14005== ==14010== Memcheck, a memory error detector ==14010== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14010== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14010== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==14010== Parent PID: 151 ==14010== ==14010== ==14010== HEAP SUMMARY: ==14010== in use at exit: 7,103,941 bytes in 58,917 blocks ==14010== total heap usage: 2,493,458 allocs, 2,434,488 frees, 292,972,981 bytes allocated ==14010== ==14010== LEAK SUMMARY: ==14010== definitely lost: 0 bytes in 0 blocks ==14010== indirectly lost: 0 bytes in 0 blocks ==14010== possibly lost: 1,392 bytes in 4 blocks ==14010== still reachable: 6,244,931 bytes in 48,241 blocks ==14010== of which reachable via heuristic: ==14010== length64 : 6,728 bytes in 107 blocks ==14010== newarray : 6,456 bytes in 58 blocks ==14010== suppressed: 743,666 bytes in 9,816 blocks ==14010== Reachable blocks (those to which a pointer was found) are not shown. ==14010== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14010== ==14010== For counts of detected and suppressed errors, rerun with: -v ==14010== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14090== Memcheck, a memory error detector ==14090== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14090== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14090== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==14090== Parent PID: 14010 ==14090== ==14118== Memcheck, a memory error detector ==14118== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14118== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14118== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==14118== Parent PID: 14010 ==14118== ==14173== Memcheck, a memory error detector ==14173== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14173== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14173== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==14173== Parent PID: 14010 ==14173== ==14191== Memcheck, a memory error detector ==14191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14191== Command: ./client-test Client::Sync::eds_event_eds_contact::testItemsXML ==14191== Parent PID: 14010 ==14191== ==14195== Memcheck, a memory error detector ==14195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14195== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==14195== Parent PID: 151 ==14195== ==14195== ==14195== HEAP SUMMARY: ==14195== in use at exit: 7,092,459 bytes in 58,718 blocks ==14195== total heap usage: 2,575,693 allocs, 2,516,922 frees, 338,077,725 bytes allocated ==14195== ==14195== LEAK SUMMARY: ==14195== definitely lost: 0 bytes in 0 blocks ==14195== indirectly lost: 0 bytes in 0 blocks ==14195== possibly lost: 1,392 bytes in 4 blocks ==14195== still reachable: 6,235,569 bytes in 48,073 blocks ==14195== of which reachable via heuristic: ==14195== length64 : 6,728 bytes in 107 blocks ==14195== newarray : 6,456 bytes in 58 blocks ==14195== suppressed: 741,546 bytes in 9,785 blocks ==14195== Reachable blocks (those to which a pointer was found) are not shown. ==14195== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14195== ==14195== For counts of detected and suppressed errors, rerun with: -v ==14195== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==1425== Memcheck, a memory error detector ==1425== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1425== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1425== Command: ./client-test Client::Sync::eds_event::testCopy ==1425== Parent PID: 151 ==1425== ==1425== ==1425== HEAP SUMMARY: ==1425== in use at exit: 7,000,260 bytes in 57,873 blocks ==1425== total heap usage: 1,877,552 allocs, 1,819,625 frees, 264,239,109 bytes allocated ==1425== ==1425== LEAK SUMMARY: ==1425== definitely lost: 0 bytes in 0 blocks ==1425== indirectly lost: 0 bytes in 0 blocks ==1425== possibly lost: 960 bytes in 3 blocks ==1425== still reachable: 6,235,116 bytes in 48,075 blocks ==1425== of which reachable via heuristic: ==1425== length64 : 6,024 bytes in 99 blocks ==1425== newarray : 6,408 bytes in 55 blocks ==1425== suppressed: 676,176 bytes in 9,124 blocks ==1425== Reachable blocks (those to which a pointer was found) are not shown. ==1425== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1425== ==1425== For counts of detected and suppressed errors, rerun with: -v ==1425== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==14314== Memcheck, a memory error detector ==14314== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14314== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14314== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==14314== Parent PID: 14195 ==14314== ==14332== Memcheck, a memory error detector ==14332== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14332== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14332== Command: ./client-test Client::Sync::eds_event_eds_contact::testMaxMsg ==14332== Parent PID: 14195 ==14332== ==14337== Memcheck, a memory error detector ==14337== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14337== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14337== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==14337== Parent PID: 151 ==14337== ==14337== ==14337== HEAP SUMMARY: ==14337== in use at exit: 7,088,778 bytes in 58,659 blocks ==14337== total heap usage: 2,630,373 allocs, 2,571,661 frees, 323,102,928 bytes allocated ==14337== ==14337== LEAK SUMMARY: ==14337== definitely lost: 0 bytes in 0 blocks ==14337== indirectly lost: 0 bytes in 0 blocks ==14337== possibly lost: 1,392 bytes in 4 blocks ==14337== still reachable: 6,233,981 bytes in 48,047 blocks ==14337== of which reachable via heuristic: ==14337== length64 : 6,728 bytes in 107 blocks ==14337== newarray : 6,456 bytes in 58 blocks ==14337== suppressed: 739,453 bytes in 9,752 blocks ==14337== Reachable blocks (those to which a pointer was found) are not shown. ==14337== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14337== ==14337== For counts of detected and suppressed errors, rerun with: -v ==14337== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14457== Memcheck, a memory error detector ==14457== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14457== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14457== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==14457== Parent PID: 14337 ==14457== ==14475== Memcheck, a memory error detector ==14475== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14475== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14475== Command: ./client-test Client::Sync::eds_event_eds_contact::testLargeObject ==14475== Parent PID: 14337 ==14475== ==14479== Memcheck, a memory error detector ==14479== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14479== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14479== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromServer ==14479== Parent PID: 151 ==14479== ==14479== ==14479== HEAP SUMMARY: ==14479== in use at exit: 7,087,815 bytes in 58,674 blocks ==14479== total heap usage: 3,601,908 allocs, 3,543,177 frees, 467,969,555 bytes allocated ==14479== ==14479== LEAK SUMMARY: ==14479== definitely lost: 0 bytes in 0 blocks ==14479== indirectly lost: 0 bytes in 0 blocks ==14479== possibly lost: 1,392 bytes in 4 blocks ==14479== still reachable: 6,230,362 bytes in 48,003 blocks ==14479== of which reachable via heuristic: ==14479== length64 : 6,728 bytes in 107 blocks ==14479== newarray : 6,456 bytes in 58 blocks ==14479== suppressed: 742,109 bytes in 9,811 blocks ==14479== Reachable blocks (those to which a pointer was found) are not shown. ==14479== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14479== ==14479== For counts of detected and suppressed errors, rerun with: -v ==14479== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==14744== Memcheck, a memory error detector ==14744== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==14744== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==14744== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromClient ==14744== Parent PID: 151 ==14744== ==14744== ==14744== HEAP SUMMARY: ==14744== in use at exit: 7,092,191 bytes in 58,718 blocks ==14744== total heap usage: 3,553,755 allocs, 3,494,980 frees, 463,134,044 bytes allocated ==14744== ==14744== LEAK SUMMARY: ==14744== definitely lost: 0 bytes in 0 blocks ==14744== indirectly lost: 0 bytes in 0 blocks ==14744== possibly lost: 1,392 bytes in 4 blocks ==14744== still reachable: 6,234,905 bytes in 48,069 blocks ==14744== of which reachable via heuristic: ==14744== length64 : 6,728 bytes in 107 blocks ==14744== newarray : 6,456 bytes in 58 blocks ==14744== suppressed: 741,942 bytes in 9,789 blocks ==14744== Reachable blocks (those to which a pointer was found) are not shown. ==14744== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==14744== ==14744== For counts of detected and suppressed errors, rerun with: -v ==14744== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==15029== Memcheck, a memory error detector ==15029== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15029== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15029== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromRemote ==15029== Parent PID: 151 ==15029== ==15029== ==15029== HEAP SUMMARY: ==15029== in use at exit: 7,090,427 bytes in 58,692 blocks ==15029== total heap usage: 3,457,614 allocs, 3,398,865 frees, 456,778,564 bytes allocated ==15029== ==15029== LEAK SUMMARY: ==15029== definitely lost: 0 bytes in 0 blocks ==15029== indirectly lost: 0 bytes in 0 blocks ==15029== possibly lost: 1,392 bytes in 4 blocks ==15029== still reachable: 6,233,389 bytes in 48,046 blocks ==15029== of which reachable via heuristic: ==15029== length64 : 6,728 bytes in 107 blocks ==15029== newarray : 6,456 bytes in 58 blocks ==15029== suppressed: 741,694 bytes in 9,786 blocks ==15029== Reachable blocks (those to which a pointer was found) are not shown. ==15029== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15029== ==15029== For counts of detected and suppressed errors, rerun with: -v ==15029== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==151== Memcheck, a memory error detector ==151== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==151== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==151== Command: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact ==151== Parent PID: 147 ==151== ==151== ==151== HEAP SUMMARY: ==151== in use at exit: 261,664 bytes in 3,725 blocks ==151== total heap usage: 74,950 allocs, 71,225 frees, 13,922,912 bytes allocated ==151== ==151== LEAK SUMMARY: ==151== definitely lost: 0 bytes in 0 blocks ==151== indirectly lost: 0 bytes in 0 blocks ==151== possibly lost: 96 bytes in 1 blocks ==151== still reachable: 44,695 bytes in 277 blocks ==151== of which reachable via heuristic: ==151== newarray : 5,800 bytes in 17 blocks ==151== suppressed: 216,873 bytes in 3,447 blocks ==151== Reachable blocks (those to which a pointer was found) are not shown. ==151== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==151== ==151== For counts of detected and suppressed errors, rerun with: -v ==151== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1524== Memcheck, a memory error detector ==1524== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1524== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1524== Command: ./client-test Client::Sync::eds_event::testCopy ==1524== Parent PID: 1425 ==1524== ==15293== Memcheck, a memory error detector ==15293== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==15293== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==15293== Command: ./client-test Client::Sync::eds_event_eds_contact::testOneWayFromLocal ==15293== Parent PID: 151 ==15293== ==15293== ==15293== HEAP SUMMARY: ==15293== in use at exit: 7,090,403 bytes in 58,690 blocks ==15293== total heap usage: 3,553,194 allocs, 3,494,447 frees, 463,118,628 bytes allocated ==15293== ==15293== LEAK SUMMARY: ==15293== definitely lost: 0 bytes in 0 blocks ==15293== indirectly lost: 0 bytes in 0 blocks ==15293== possibly lost: 1,392 bytes in 4 blocks ==15293== still reachable: 6,233,365 bytes in 48,045 blocks ==15293== of which reachable via heuristic: ==15293== length64 : 6,728 bytes in 107 blocks ==15293== newarray : 6,456 bytes in 58 blocks ==15293== suppressed: 741,694 bytes in 9,785 blocks ==15293== Reachable blocks (those to which a pointer was found) are not shown. ==15293== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==15293== ==15293== For counts of detected and suppressed errors, rerun with: -v ==15293== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==154== Memcheck, a memory error detector ==154== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==154== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==154== Command: ./client-test Client::Sync::eds_event::testDeleteAllRefresh ==154== Parent PID: 151 ==154== ==154== ==154== HEAP SUMMARY: ==154== in use at exit: 6,996,871 bytes in 57,826 blocks ==154== total heap usage: 1,478,308 allocs, 1,420,429 frees, 208,721,064 bytes allocated ==154== ==154== LEAK SUMMARY: ==154== definitely lost: 0 bytes in 0 blocks ==154== indirectly lost: 0 bytes in 0 blocks ==154== possibly lost: 960 bytes in 3 blocks ==154== still reachable: 6,230,494 bytes in 47,993 blocks ==154== of which reachable via heuristic: ==154== length64 : 6,024 bytes in 99 blocks ==154== newarray : 6,408 bytes in 55 blocks ==154== suppressed: 677,241 bytes in 9,157 blocks ==154== Reachable blocks (those to which a pointer was found) are not shown. ==154== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==154== ==154== For counts of detected and suppressed errors, rerun with: -v ==154== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1540== Memcheck, a memory error detector ==1540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1540== Command: ./client-test Client::Sync::eds_event::testCopy ==1540== Parent PID: 1425 ==1540== ==1545== Memcheck, a memory error detector ==1545== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1545== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1545== Command: ./client-test Client::Sync::eds_event::testDelete ==1545== Parent PID: 151 ==1545== ==1545== ==1545== HEAP SUMMARY: ==1545== in use at exit: 6,997,304 bytes in 57,817 blocks ==1545== total heap usage: 2,552,195 allocs, 2,494,322 frees, 367,227,736 bytes allocated ==1545== ==1545== LEAK SUMMARY: ==1545== definitely lost: 0 bytes in 0 blocks ==1545== indirectly lost: 0 bytes in 0 blocks ==1545== possibly lost: 960 bytes in 3 blocks ==1545== still reachable: 6,231,263 bytes in 48,008 blocks ==1545== of which reachable via heuristic: ==1545== length64 : 6,024 bytes in 99 blocks ==1545== newarray : 6,408 bytes in 55 blocks ==1545== suppressed: 677,073 bytes in 9,135 blocks ==1545== Reachable blocks (those to which a pointer was found) are not shown. ==1545== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1545== ==1545== For counts of detected and suppressed errors, rerun with: -v ==1545== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1644== Memcheck, a memory error detector ==1644== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1644== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1644== Command: ./client-test Client::Sync::eds_event::testDelete ==1644== Parent PID: 1545 ==1644== ==1683== Memcheck, a memory error detector ==1683== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1683== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1683== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==1683== Parent PID: 151 ==1683== ==1683== ==1683== HEAP SUMMARY: ==1683== in use at exit: 6,996,842 bytes in 57,824 blocks ==1683== total heap usage: 2,154,248 allocs, 2,096,369 frees, 312,148,225 bytes allocated ==1683== ==1683== LEAK SUMMARY: ==1683== definitely lost: 0 bytes in 0 blocks ==1683== indirectly lost: 0 bytes in 0 blocks ==1683== possibly lost: 960 bytes in 3 blocks ==1683== still reachable: 6,230,208 bytes in 47,987 blocks ==1683== of which reachable via heuristic: ==1683== length64 : 6,024 bytes in 99 blocks ==1683== newarray : 6,408 bytes in 55 blocks ==1683== suppressed: 677,498 bytes in 9,161 blocks ==1683== Reachable blocks (those to which a pointer was found) are not shown. ==1683== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1683== ==1683== For counts of detected and suppressed errors, rerun with: -v ==1683== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1790== Memcheck, a memory error detector ==1790== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1790== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1790== Command: ./client-test Client::Sync::eds_event::testAddUpdate ==1790== Parent PID: 1683 ==1790== ==1794== Memcheck, a memory error detector ==1794== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1794== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1794== Command: ./client-test Client::Sync::eds_event::testManyItems ==1794== Parent PID: 151 ==1794== ==1794== ==1794== HEAP SUMMARY: ==1794== in use at exit: 7,005,022 bytes in 57,847 blocks ==1794== total heap usage: 4,857,250 allocs, 4,799,348 frees, 635,372,921 bytes allocated ==1794== ==1794== LEAK SUMMARY: ==1794== definitely lost: 0 bytes in 0 blocks ==1794== indirectly lost: 0 bytes in 0 blocks ==1794== possibly lost: 960 bytes in 3 blocks ==1794== still reachable: 6,239,181 bytes in 48,032 blocks ==1794== of which reachable via heuristic: ==1794== length64 : 6,024 bytes in 99 blocks ==1794== newarray : 6,408 bytes in 55 blocks ==1794== suppressed: 676,873 bytes in 9,141 blocks ==1794== Reachable blocks (those to which a pointer was found) are not shown. ==1794== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1794== ==1794== For counts of detected and suppressed errors, rerun with: -v ==1794== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1892== Memcheck, a memory error detector ==1892== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1892== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1892== Command: ./client-test Client::Sync::eds_event::testManyItems ==1892== Parent PID: 1794 ==1892== ==1897== Memcheck, a memory error detector ==1897== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1897== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1897== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==1897== Parent PID: 151 ==1897== ==1897== ==1897== HEAP SUMMARY: ==1897== in use at exit: 7,008,071 bytes in 57,901 blocks ==1897== total heap usage: 6,093,370 allocs, 6,035,412 frees, 709,071,602 bytes allocated ==1897== ==1897== LEAK SUMMARY: ==1897== definitely lost: 0 bytes in 0 blocks ==1897== indirectly lost: 0 bytes in 0 blocks ==1897== possibly lost: 960 bytes in 3 blocks ==1897== still reachable: 6,241,206 bytes in 48,069 blocks ==1897== of which reachable via heuristic: ==1897== length64 : 6,024 bytes in 99 blocks ==1897== newarray : 6,408 bytes in 55 blocks ==1897== suppressed: 677,897 bytes in 9,158 blocks ==1897== Reachable blocks (those to which a pointer was found) are not shown. ==1897== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1897== ==1897== For counts of detected and suppressed errors, rerun with: -v ==1897== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==1998== Memcheck, a memory error detector ==1998== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1998== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1998== Command: ./client-test Client::Sync::eds_event::testManyDeletes ==1998== Parent PID: 1897 ==1998== ==2032== Memcheck, a memory error detector ==2032== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2032== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2032== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==2032== Parent PID: 151 ==2032== ==2032== ==2032== HEAP SUMMARY: ==2032== in use at exit: 6,998,548 bytes in 57,871 blocks ==2032== total heap usage: 3,521,344 allocs, 3,463,414 frees, 519,196,595 bytes allocated ==2032== ==2032== LEAK SUMMARY: ==2032== definitely lost: 0 bytes in 0 blocks ==2032== indirectly lost: 0 bytes in 0 blocks ==2032== possibly lost: 960 bytes in 3 blocks ==2032== still reachable: 6,230,344 bytes in 47,994 blocks ==2032== of which reachable via heuristic: ==2032== length64 : 6,024 bytes in 99 blocks ==2032== newarray : 6,408 bytes in 55 blocks ==2032== suppressed: 679,068 bytes in 9,201 blocks ==2032== Reachable blocks (those to which a pointer was found) are not shown. ==2032== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2032== ==2032== For counts of detected and suppressed errors, rerun with: -v ==2032== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2131== Memcheck, a memory error detector ==2131== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2131== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2131== Command: ./client-test Client::Sync::eds_event::testSlowSyncSemantic ==2131== Parent PID: 2032 ==2131== ==2198== Memcheck, a memory error detector ==2198== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2198== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2198== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==2198== Parent PID: 151 ==2198== ==2198== ==2198== HEAP SUMMARY: ==2198== in use at exit: 6,999,683 bytes in 57,905 blocks ==2198== total heap usage: 2,915,754 allocs, 2,857,741 frees, 420,533,879 bytes allocated ==2198== ==2198== LEAK SUMMARY: ==2198== definitely lost: 0 bytes in 0 blocks ==2198== indirectly lost: 0 bytes in 0 blocks ==2198== possibly lost: 960 bytes in 3 blocks ==2198== still reachable: 6,232,186 bytes in 48,026 blocks ==2198== of which reachable via heuristic: ==2198== length64 : 6,024 bytes in 99 blocks ==2198== newarray : 6,408 bytes in 55 blocks ==2198== suppressed: 678,529 bytes in 9,205 blocks ==2198== Reachable blocks (those to which a pointer was found) are not shown. ==2198== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2198== ==2198== For counts of detected and suppressed errors, rerun with: -v ==2198== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2297== Memcheck, a memory error detector ==2297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2297== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==2297== Parent PID: 2198 ==2297== ==2313== Memcheck, a memory error detector ==2313== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2313== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2313== Command: ./client-test Client::Sync::eds_event::testComplexRefreshFromServerSemantic ==2313== Parent PID: 2198 ==2313== ==2355== Memcheck, a memory error detector ==2355== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2355== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2355== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==2355== Parent PID: 151 ==2355== ==2355== ==2355== HEAP SUMMARY: ==2355== in use at exit: 6,997,395 bytes in 57,826 blocks ==2355== total heap usage: 2,664,661 allocs, 2,606,779 frees, 374,217,326 bytes allocated ==2355== ==2355== LEAK SUMMARY: ==2355== definitely lost: 0 bytes in 0 blocks ==2355== indirectly lost: 0 bytes in 0 blocks ==2355== possibly lost: 960 bytes in 3 blocks ==2355== still reachable: 6,230,369 bytes in 47,990 blocks ==2355== of which reachable via heuristic: ==2355== length64 : 6,024 bytes in 99 blocks ==2355== newarray : 6,408 bytes in 55 blocks ==2355== suppressed: 677,890 bytes in 9,160 blocks ==2355== Reachable blocks (those to which a pointer was found) are not shown. ==2355== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2355== ==2355== For counts of detected and suppressed errors, rerun with: -v ==2355== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==241== Memcheck, a memory error detector ==241== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==241== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==241== Command: ./client-test Client::Sync::eds_event::testTwoWaySync ==241== Parent PID: 151 ==241== ==241== ==241== HEAP SUMMARY: ==241== in use at exit: 6,992,612 bytes in 57,741 blocks ==241== total heap usage: 646,966 allocs, 589,174 frees, 95,766,882 bytes allocated ==241== ==241== LEAK SUMMARY: ==241== definitely lost: 0 bytes in 0 blocks ==241== indirectly lost: 0 bytes in 0 blocks ==241== possibly lost: 960 bytes in 3 blocks ==241== still reachable: 6,229,695 bytes in 47,984 blocks ==241== of which reachable via heuristic: ==241== length64 : 5,984 bytes in 98 blocks ==241== newarray : 6,408 bytes in 55 blocks ==241== suppressed: 673,781 bytes in 9,081 blocks ==241== Reachable blocks (those to which a pointer was found) are not shown. ==241== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==241== ==241== For counts of detected and suppressed errors, rerun with: -v ==241== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2454== Memcheck, a memory error detector ==2454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2454== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==2454== Parent PID: 2355 ==2454== ==2470== Memcheck, a memory error detector ==2470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2470== Command: ./client-test Client::Sync::eds_event::testDeleteBothSides ==2470== Parent PID: 2355 ==2470== ==2521== Memcheck, a memory error detector ==2521== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2521== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2521== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==2521== Parent PID: 151 ==2521== ==2521== ==2521== HEAP SUMMARY: ==2521== in use at exit: 6,995,638 bytes in 57,791 blocks ==2521== total heap usage: 2,528,339 allocs, 2,470,492 frees, 368,790,011 bytes allocated ==2521== ==2521== LEAK SUMMARY: ==2521== definitely lost: 0 bytes in 0 blocks ==2521== indirectly lost: 0 bytes in 0 blocks ==2521== possibly lost: 960 bytes in 3 blocks ==2521== still reachable: 6,229,653 bytes in 47,982 blocks ==2521== of which reachable via heuristic: ==2521== length64 : 6,024 bytes in 99 blocks ==2521== newarray : 6,408 bytes in 55 blocks ==2521== suppressed: 677,017 bytes in 9,135 blocks ==2521== Reachable blocks (those to which a pointer was found) are not shown. ==2521== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2521== ==2521== For counts of detected and suppressed errors, rerun with: -v ==2521== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2648== Memcheck, a memory error detector ==2648== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2648== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2648== Command: ./client-test Client::Sync::eds_event::testAddBothSides ==2648== Parent PID: 2521 ==2648== ==2656== Memcheck, a memory error detector ==2656== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2656== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2656== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==2656== Parent PID: 151 ==2656== ==2656== ==2656== HEAP SUMMARY: ==2656== in use at exit: 7,000,888 bytes in 57,889 blocks ==2656== total heap usage: 2,536,742 allocs, 2,478,797 frees, 369,523,985 bytes allocated ==2656== ==2656== LEAK SUMMARY: ==2656== definitely lost: 0 bytes in 0 blocks ==2656== indirectly lost: 0 bytes in 0 blocks ==2656== possibly lost: 960 bytes in 3 blocks ==2656== still reachable: 6,235,461 bytes in 48,082 blocks ==2656== of which reachable via heuristic: ==2656== length64 : 6,024 bytes in 99 blocks ==2656== newarray : 6,408 bytes in 55 blocks ==2656== suppressed: 676,291 bytes in 9,131 blocks ==2656== Reachable blocks (those to which a pointer was found) are not shown. ==2656== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2656== ==2656== For counts of detected and suppressed errors, rerun with: -v ==2656== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==269== Memcheck, a memory error detector ==269== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==269== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==269== Command: ./client-test Client::Sync::eds_event::testSlowSync ==269== Parent PID: 151 ==269== ==269== ==269== HEAP SUMMARY: ==269== in use at exit: 6,991,166 bytes in 57,727 blocks ==269== total heap usage: 647,357 allocs, 589,579 frees, 95,674,351 bytes allocated ==269== ==269== LEAK SUMMARY: ==269== definitely lost: 0 bytes in 0 blocks ==269== indirectly lost: 0 bytes in 0 blocks ==269== possibly lost: 960 bytes in 3 blocks ==269== still reachable: 6,228,103 bytes in 47,975 blocks ==269== of which reachable via heuristic: ==269== length64 : 5,984 bytes in 98 blocks ==269== newarray : 6,408 bytes in 55 blocks ==269== suppressed: 674,095 bytes in 9,078 blocks ==269== Reachable blocks (those to which a pointer was found) are not shown. ==269== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==269== ==269== For counts of detected and suppressed errors, rerun with: -v ==269== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==2783== Memcheck, a memory error detector ==2783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2783== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2783== Command: ./client-test Client::Sync::eds_event::testAddBothSidesRefresh ==2783== Parent PID: 2656 ==2783== ==2791== Memcheck, a memory error detector ==2791== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2791== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2791== Command: ./client-test Client::Sync::eds_event::testLinkedItemsParentChild ==2791== Parent PID: 151 ==2791== ==2791== ==2791== HEAP SUMMARY: ==2791== in use at exit: 6,998,162 bytes in 57,859 blocks ==2791== total heap usage: 2,564,122 allocs, 2,506,207 frees, 369,247,651 bytes allocated ==2791== ==2791== LEAK SUMMARY: ==2791== definitely lost: 0 bytes in 0 blocks ==2791== indirectly lost: 0 bytes in 0 blocks ==2791== possibly lost: 960 bytes in 3 blocks ==2791== still reachable: 6,229,881 bytes in 47,985 blocks ==2791== of which reachable via heuristic: ==2791== length64 : 6,024 bytes in 99 blocks ==2791== newarray : 6,408 bytes in 55 blocks ==2791== suppressed: 679,313 bytes in 9,200 blocks ==2791== Reachable blocks (those to which a pointer was found) are not shown. ==2791== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2791== ==2791== For counts of detected and suppressed errors, rerun with: -v ==2791== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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_event::testLinkedItemsParentChild ==2918== Parent PID: 2791 ==2918== ==2923== Memcheck, a memory error detector ==2923== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2923== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2923== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==2923== Parent PID: 151 ==2923== ==2923== ==2923== HEAP SUMMARY: ==2923== in use at exit: 6,992,356 bytes in 57,731 blocks ==2923== total heap usage: 1,793,346 allocs, 1,735,561 frees, 259,161,417 bytes allocated ==2923== ==2923== LEAK SUMMARY: ==2923== definitely lost: 0 bytes in 0 blocks ==2923== indirectly lost: 0 bytes in 0 blocks ==2923== possibly lost: 960 bytes in 3 blocks ==2923== still reachable: 6,229,257 bytes in 47,975 blocks ==2923== of which reachable via heuristic: ==2923== length64 : 6,024 bytes in 99 blocks ==2923== newarray : 6,408 bytes in 55 blocks ==2923== suppressed: 674,131 bytes in 9,082 blocks ==2923== Reachable blocks (those to which a pointer was found) are not shown. ==2923== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==2923== ==2923== For counts of detected and suppressed errors, rerun with: -v ==2923== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==298== Memcheck, a memory error detector ==298== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==298== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==298== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSync ==298== Parent PID: 151 ==298== ==298== ==298== HEAP SUMMARY: ==298== in use at exit: 6,999,878 bytes in 57,874 blocks ==298== total heap usage: 646,954 allocs, 589,029 frees, 95,666,118 bytes allocated ==298== ==298== LEAK SUMMARY: ==298== definitely lost: 0 bytes in 0 blocks ==298== indirectly lost: 0 bytes in 0 blocks ==298== possibly lost: 960 bytes in 3 blocks ==298== still reachable: 6,234,332 bytes in 48,058 blocks ==298== of which reachable via heuristic: ==298== length64 : 5,984 bytes in 98 blocks ==298== newarray : 6,408 bytes in 55 blocks ==298== suppressed: 676,578 bytes in 9,142 blocks ==298== Reachable blocks (those to which a pointer was found) are not shown. ==298== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==298== ==298== For counts of detected and suppressed errors, rerun with: -v ==298== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3012== Memcheck, a memory error detector ==3012== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3012== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3012== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChild ==3012== Parent PID: 2923 ==3012== ==3017== Memcheck, a memory error detector ==3017== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3017== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3017== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==3017== Parent PID: 151 ==3017== ==3017== ==3017== HEAP SUMMARY: ==3017== in use at exit: 6,997,297 bytes in 57,817 blocks ==3017== total heap usage: 2,499,989 allocs, 2,442,116 frees, 365,303,694 bytes allocated ==3017== ==3017== LEAK SUMMARY: ==3017== definitely lost: 0 bytes in 0 blocks ==3017== indirectly lost: 0 bytes in 0 blocks ==3017== possibly lost: 960 bytes in 3 blocks ==3017== still reachable: 6,230,944 bytes in 48,002 blocks ==3017== of which reachable via heuristic: ==3017== length64 : 6,024 bytes in 99 blocks ==3017== newarray : 6,408 bytes in 55 blocks ==3017== suppressed: 677,385 bytes in 9,141 blocks ==3017== Reachable blocks (those to which a pointer was found) are not shown. ==3017== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3017== ==3017== For counts of detected and suppressed errors, rerun with: -v ==3017== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3143== Memcheck, a memory error detector ==3143== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3143== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3143== Command: ./client-test Client::Sync::eds_event::testLinkedItemsChildParent ==3143== Parent PID: 3017 ==3143== ==3147== Memcheck, a memory error detector ==3147== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3147== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3147== Command: ./client-test Client::Sync::eds_event::testUpdate ==3147== Parent PID: 151 ==3147== ==3147== ==3147== HEAP SUMMARY: ==3147== in use at exit: 6,994,189 bytes in 57,759 blocks ==3147== total heap usage: 2,597,302 allocs, 2,539,487 frees, 370,438,018 bytes allocated ==3147== ==3147== LEAK SUMMARY: ==3147== definitely lost: 0 bytes in 0 blocks ==3147== indirectly lost: 0 bytes in 0 blocks ==3147== possibly lost: 960 bytes in 3 blocks ==3147== still reachable: 6,229,405 bytes in 47,980 blocks ==3147== of which reachable via heuristic: ==3147== length64 : 6,024 bytes in 99 blocks ==3147== newarray : 6,408 bytes in 55 blocks ==3147== suppressed: 675,816 bytes in 9,105 blocks ==3147== Reachable blocks (those to which a pointer was found) are not shown. ==3147== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3147== ==3147== For counts of detected and suppressed errors, rerun with: -v ==3147== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3246== Memcheck, a memory error detector ==3246== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3246== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3246== Command: ./client-test Client::Sync::eds_event::testUpdate ==3246== Parent PID: 3147 ==3246== ==327== Memcheck, a memory error detector ==327== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==327== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==327== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSync ==327== Parent PID: 151 ==327== ==327== ==327== HEAP SUMMARY: ==327== in use at exit: 6,987,177 bytes in 57,648 blocks ==327== total heap usage: 647,213 allocs, 589,514 frees, 95,670,082 bytes allocated ==327== ==327== LEAK SUMMARY: ==327== definitely lost: 0 bytes in 0 blocks ==327== indirectly lost: 0 bytes in 0 blocks ==327== possibly lost: 960 bytes in 3 blocks ==327== still reachable: 6,227,204 bytes in 47,971 blocks ==327== of which reachable via heuristic: ==327== length64 : 5,984 bytes in 98 blocks ==327== newarray : 6,408 bytes in 55 blocks ==327== suppressed: 671,005 bytes in 9,003 blocks ==327== Reachable blocks (those to which a pointer was found) are not shown. ==327== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==327== ==327== For counts of detected and suppressed errors, rerun with: -v ==327== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3292== Memcheck, a memory error detector ==3292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3292== Command: ./client-test Client::Sync::eds_event::testUpdate ==3292== Parent PID: 3147 ==3292== ==3297== Memcheck, a memory error detector ==3297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3297== Command: ./client-test Client::Sync::eds_event::testMerge ==3297== Parent PID: 151 ==3297== ==3297== ==3297== HEAP SUMMARY: ==3297== in use at exit: 6,989,573 bytes in 57,693 blocks ==3297== total heap usage: 3,389,022 allocs, 3,331,271 frees, 481,486,252 bytes allocated ==3297== ==3297== LEAK SUMMARY: ==3297== definitely lost: 0 bytes in 0 blocks ==3297== indirectly lost: 0 bytes in 0 blocks ==3297== possibly lost: 960 bytes in 3 blocks ==3297== still reachable: 6,228,225 bytes in 47,980 blocks ==3297== of which reachable via heuristic: ==3297== length64 : 6,024 bytes in 99 blocks ==3297== newarray : 6,408 bytes in 55 blocks ==3297== suppressed: 672,212 bytes in 9,037 blocks ==3297== Reachable blocks (those to which a pointer was found) are not shown. ==3297== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3297== ==3297== For counts of detected and suppressed errors, rerun with: -v ==3297== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3397== Memcheck, a memory error detector ==3397== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3397== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3397== Command: ./client-test Client::Sync::eds_event::testMerge ==3397== Parent PID: 3297 ==3397== ==3465== Memcheck, a memory error detector ==3465== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3465== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3465== Command: ./client-test Client::Sync::eds_event::testMerge ==3465== Parent PID: 3297 ==3465== ==3491== Memcheck, a memory error detector ==3491== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3491== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3491== Command: ./client-test Client::Sync::eds_event::testMerge ==3491== Parent PID: 3297 ==3491== ==3496== Memcheck, a memory error detector ==3496== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3496== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3496== Command: ./client-test Client::Sync::eds_event::testTwinning ==3496== Parent PID: 151 ==3496== ==3496== ==3496== HEAP SUMMARY: ==3496== in use at exit: 6,999,121 bytes in 57,850 blocks ==3496== total heap usage: 2,704,169 allocs, 2,646,264 frees, 363,289,747 bytes allocated ==3496== ==3496== LEAK SUMMARY: ==3496== definitely lost: 0 bytes in 0 blocks ==3496== indirectly lost: 0 bytes in 0 blocks ==3496== possibly lost: 960 bytes in 3 blocks ==3496== still reachable: 6,232,556 bytes in 48,029 blocks ==3496== of which reachable via heuristic: ==3496== length64 : 6,024 bytes in 99 blocks ==3496== newarray : 6,408 bytes in 55 blocks ==3496== suppressed: 677,597 bytes in 9,147 blocks ==3496== Reachable blocks (those to which a pointer was found) are not shown. ==3496== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3496== ==3496== For counts of detected and suppressed errors, rerun with: -v ==3496== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==355== Memcheck, a memory error detector ==355== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==355== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==355== Command: ./client-test Client::Sync::eds_event::testRefreshFromRemoteSync ==355== Parent PID: 151 ==355== ==355== ==355== HEAP SUMMARY: ==355== in use at exit: 6,991,738 bytes in 57,740 blocks ==355== total heap usage: 647,469 allocs, 589,678 frees, 95,683,583 bytes allocated ==355== ==355== LEAK SUMMARY: ==355== definitely lost: 0 bytes in 0 blocks ==355== indirectly lost: 0 bytes in 0 blocks ==355== possibly lost: 960 bytes in 3 blocks ==355== still reachable: 6,228,408 bytes in 47,981 blocks ==355== of which reachable via heuristic: ==355== length64 : 5,984 bytes in 98 blocks ==355== newarray : 6,408 bytes in 55 blocks ==355== suppressed: 674,194 bytes in 9,083 blocks ==355== Reachable blocks (those to which a pointer was found) are not shown. ==355== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==355== ==355== For counts of detected and suppressed errors, rerun with: -v ==355== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3551== Memcheck, a memory error detector ==3551== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3551== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3551== Command: ./client-test Client::Sync::eds_event::testTwinning ==3551== Parent PID: 3496 ==3551== ==3615== Memcheck, a memory error detector ==3615== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3615== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3615== Command: ./client-test Client::Sync::eds_event::testTwinning ==3615== Parent PID: 3496 ==3615== ==3619== Memcheck, a memory error detector ==3619== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3619== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3619== Command: ./client-test Client::Sync::eds_event::testItems ==3619== Parent PID: 151 ==3619== ==3619== ==3619== HEAP SUMMARY: ==3619== in use at exit: 6,997,309 bytes in 57,818 blocks ==3619== total heap usage: 1,856,574 allocs, 1,798,703 frees, 242,284,119 bytes allocated ==3619== ==3619== LEAK SUMMARY: ==3619== definitely lost: 0 bytes in 0 blocks ==3619== indirectly lost: 0 bytes in 0 blocks ==3619== possibly lost: 960 bytes in 3 blocks ==3619== still reachable: 6,230,784 bytes in 47,999 blocks ==3619== of which reachable via heuristic: ==3619== length64 : 6,024 bytes in 99 blocks ==3619== newarray : 6,408 bytes in 55 blocks ==3619== suppressed: 677,557 bytes in 9,145 blocks ==3619== Reachable blocks (those to which a pointer was found) are not shown. ==3619== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3619== ==3619== For counts of detected and suppressed errors, rerun with: -v ==3619== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3674== Memcheck, a memory error detector ==3674== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3674== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3674== Command: ./client-test Client::Sync::eds_event::testItems ==3674== Parent PID: 3619 ==3674== ==3716== Memcheck, a memory error detector ==3716== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3716== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3716== Command: ./client-test Client::Sync::eds_event::testItems ==3716== Parent PID: 3619 ==3716== ==3720== Memcheck, a memory error detector ==3720== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3720== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3720== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3720== Parent PID: 151 ==3720== ==3720== ==3720== HEAP SUMMARY: ==3720== in use at exit: 6,990,527 bytes in 57,705 blocks ==3720== total heap usage: 1,882,359 allocs, 1,824,601 frees, 241,925,200 bytes allocated ==3720== ==3720== LEAK SUMMARY: ==3720== definitely lost: 0 bytes in 0 blocks ==3720== indirectly lost: 0 bytes in 0 blocks ==3720== possibly lost: 960 bytes in 3 blocks ==3720== still reachable: 6,228,661 bytes in 47,973 blocks ==3720== of which reachable via heuristic: ==3720== length64 : 6,024 bytes in 99 blocks ==3720== newarray : 6,408 bytes in 55 blocks ==3720== suppressed: 672,898 bytes in 9,058 blocks ==3720== Reachable blocks (those to which a pointer was found) are not shown. ==3720== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3720== ==3720== For counts of detected and suppressed errors, rerun with: -v ==3720== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3775== Memcheck, a memory error detector ==3775== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3775== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3775== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3775== Parent PID: 3720 ==3775== ==3818== Memcheck, a memory error detector ==3818== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3818== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3818== Command: ./client-test Client::Sync::eds_event::testItemsXML ==3818== Parent PID: 3720 ==3818== ==3823== Memcheck, a memory error detector ==3823== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3823== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3823== Command: ./client-test Client::Sync::eds_event::testMaxMsg ==3823== Parent PID: 151 ==3823== ==3823== ==3823== HEAP SUMMARY: ==3823== in use at exit: 6,998,647 bytes in 57,865 blocks ==3823== total heap usage: 1,885,305 allocs, 1,827,387 frees, 272,677,385 bytes allocated ==3823== ==3823== LEAK SUMMARY: ==3823== definitely lost: 0 bytes in 0 blocks ==3823== indirectly lost: 0 bytes in 0 blocks ==3823== possibly lost: 960 bytes in 3 blocks ==3823== still reachable: 6,230,329 bytes in 47,987 blocks ==3823== of which reachable via heuristic: ==3823== length64 : 6,024 bytes in 99 blocks ==3823== newarray : 6,408 bytes in 55 blocks ==3823== suppressed: 679,350 bytes in 9,204 blocks ==3823== Reachable blocks (those to which a pointer was found) are not shown. ==3823== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3823== ==3823== For counts of detected and suppressed errors, rerun with: -v ==3823== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==384== Memcheck, a memory error detector ==384== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==384== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==384== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalSync ==384== Parent PID: 151 ==384== ==384== ==384== HEAP SUMMARY: ==384== in use at exit: 6,994,558 bytes in 57,786 blocks ==384== total heap usage: 647,215 allocs, 589,378 frees, 95,671,541 bytes allocated ==384== ==384== LEAK SUMMARY: ==384== definitely lost: 0 bytes in 0 blocks ==384== indirectly lost: 0 bytes in 0 blocks ==384== possibly lost: 960 bytes in 3 blocks ==384== still reachable: 6,230,352 bytes in 47,990 blocks ==384== of which reachable via heuristic: ==384== length64 : 5,984 bytes in 98 blocks ==384== newarray : 6,408 bytes in 55 blocks ==384== suppressed: 675,070 bytes in 9,120 blocks ==384== Reachable blocks (those to which a pointer was found) are not shown. ==384== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==384== ==384== For counts of detected and suppressed errors, rerun with: -v ==384== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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_event::testMaxMsg ==3899== Parent PID: 3823 ==3899== ==3904== Memcheck, a memory error detector ==3904== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3904== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3904== Command: ./client-test Client::Sync::eds_event::testLargeObject ==3904== Parent PID: 151 ==3904== ==3904== ==3904== HEAP SUMMARY: ==3904== in use at exit: 6,997,089 bytes in 57,816 blocks ==3904== total heap usage: 1,901,537 allocs, 1,843,668 frees, 254,263,921 bytes allocated ==3904== ==3904== LEAK SUMMARY: ==3904== definitely lost: 0 bytes in 0 blocks ==3904== indirectly lost: 0 bytes in 0 blocks ==3904== possibly lost: 960 bytes in 3 blocks ==3904== still reachable: 6,231,104 bytes in 48,005 blocks ==3904== of which reachable via heuristic: ==3904== length64 : 6,024 bytes in 99 blocks ==3904== newarray : 6,408 bytes in 55 blocks ==3904== suppressed: 677,017 bytes in 9,137 blocks ==3904== Reachable blocks (those to which a pointer was found) are not shown. ==3904== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3904== ==3904== For counts of detected and suppressed errors, rerun with: -v ==3904== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==3979== Memcheck, a memory error detector ==3979== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3979== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3979== Command: ./client-test Client::Sync::eds_event::testLargeObject ==3979== Parent PID: 3904 ==3979== ==3983== Memcheck, a memory error detector ==3983== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3983== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3983== Command: ./client-test Client::Sync::eds_event::testOneWayFromServer ==3983== Parent PID: 151 ==3983== ==3983== ==3983== HEAP SUMMARY: ==3983== in use at exit: 6,995,312 bytes in 57,790 blocks ==3983== total heap usage: 3,038,660 allocs, 2,980,813 frees, 430,001,627 bytes allocated ==3983== ==3983== LEAK SUMMARY: ==3983== definitely lost: 0 bytes in 0 blocks ==3983== indirectly lost: 0 bytes in 0 blocks ==3983== possibly lost: 960 bytes in 3 blocks ==3983== still reachable: 6,231,040 bytes in 48,003 blocks ==3983== of which reachable via heuristic: ==3983== length64 : 6,024 bytes in 99 blocks ==3983== newarray : 6,408 bytes in 55 blocks ==3983== suppressed: 675,304 bytes in 9,113 blocks ==3983== Reachable blocks (those to which a pointer was found) are not shown. ==3983== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==3983== ==3983== For counts of detected and suppressed errors, rerun with: -v ==3983== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==412== Memcheck, a memory error detector ==412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==412== Command: ./client-test Client::Sync::eds_event::testTimeout ==412== Parent PID: 151 ==412== ==412== ==412== HEAP SUMMARY: ==412== in use at exit: 6,969,719 bytes in 57,394 blocks ==412== total heap usage: 621,277 allocs, 563,883 frees, 91,663,543 bytes allocated ==412== ==412== LEAK SUMMARY: ==412== definitely lost: 0 bytes in 0 blocks ==412== indirectly lost: 0 bytes in 0 blocks ==412== possibly lost: 528 bytes in 2 blocks ==412== still reachable: 6,221,103 bytes in 47,890 blocks ==412== of which reachable via heuristic: ==412== length64 : 5,416 bytes in 91 blocks ==412== newarray : 6,376 bytes in 53 blocks ==412== suppressed: 662,456 bytes in 8,852 blocks ==412== Reachable blocks (those to which a pointer was found) are not shown. ==412== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==412== ==412== For counts of detected and suppressed errors, rerun with: -v ==412== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==4138== Memcheck, a memory error detector ==4138== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4138== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4138== Command: ./client-test Client::Sync::eds_event::testOneWayFromClient ==4138== Parent PID: 151 ==4138== ==4138== ==4138== HEAP SUMMARY: ==4138== in use at exit: 6,994,373 bytes in 57,778 blocks ==4138== total heap usage: 3,008,786 allocs, 2,950,951 frees, 426,680,993 bytes allocated ==4138== ==4138== LEAK SUMMARY: ==4138== definitely lost: 0 bytes in 0 blocks ==4138== indirectly lost: 0 bytes in 0 blocks ==4138== possibly lost: 960 bytes in 3 blocks ==4138== still reachable: 6,230,065 bytes in 47,984 blocks ==4138== of which reachable via heuristic: ==4138== length64 : 6,024 bytes in 99 blocks ==4138== newarray : 6,408 bytes in 55 blocks ==4138== suppressed: 675,340 bytes in 9,120 blocks ==4138== Reachable blocks (those to which a pointer was found) are not shown. ==4138== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4138== ==4138== For counts of detected and suppressed errors, rerun with: -v ==4138== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4303== Memcheck, a memory error detector ==4303== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4303== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4303== Command: ./client-test Client::Sync::eds_event::testOneWayFromRemote ==4303== Parent PID: 151 ==4303== ==4303== ==4303== HEAP SUMMARY: ==4303== in use at exit: 6,994,125 bytes in 57,762 blocks ==4303== total heap usage: 2,956,398 allocs, 2,898,579 frees, 423,341,458 bytes allocated ==4303== ==4303== LEAK SUMMARY: ==4303== definitely lost: 0 bytes in 0 blocks ==4303== indirectly lost: 0 bytes in 0 blocks ==4303== possibly lost: 960 bytes in 3 blocks ==4303== still reachable: 6,229,161 bytes in 47,974 blocks ==4303== of which reachable via heuristic: ==4303== length64 : 6,024 bytes in 99 blocks ==4303== newarray : 6,408 bytes in 55 blocks ==4303== suppressed: 675,996 bytes in 9,114 blocks ==4303== Reachable blocks (those to which a pointer was found) are not shown. ==4303== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4303== ==4303== For counts of detected and suppressed errors, rerun with: -v ==4303== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==433== Memcheck, a memory error detector ==433== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==433== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==433== Command: ./client-test Client::Sync::eds_event::testConversion ==433== Parent PID: 151 ==433== ==433== ==433== HEAP SUMMARY: ==433== in use at exit: 2,905,772 bytes in 30,187 blocks ==433== total heap usage: 321,358 allocs, 291,120 frees, 46,585,325 bytes allocated ==433== ==433== LEAK SUMMARY: ==433== definitely lost: 0 bytes in 0 blocks ==433== indirectly lost: 0 bytes in 0 blocks ==433== possibly lost: 960 bytes in 3 blocks ==433== still reachable: 2,219,605 bytes in 21,410 blocks ==433== of which reachable via heuristic: ==433== length64 : 5,096 bytes in 83 blocks ==433== newarray : 6,328 bytes in 50 blocks ==433== suppressed: 612,719 bytes in 8,229 blocks ==433== Reachable blocks (those to which a pointer was found) are not shown. ==433== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==433== ==433== For counts of detected and suppressed errors, rerun with: -v ==433== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4457== Memcheck, a memory error detector ==4457== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4457== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4457== Command: ./client-test Client::Sync::eds_event::testOneWayFromLocal ==4457== Parent PID: 151 ==4457== ==4457== ==4457== HEAP SUMMARY: ==4457== in use at exit: 6,997,220 bytes in 57,819 blocks ==4457== total heap usage: 3,008,594 allocs, 2,950,718 frees, 426,669,422 bytes allocated ==4457== ==4457== LEAK SUMMARY: ==4457== definitely lost: 0 bytes in 0 blocks ==4457== indirectly lost: 0 bytes in 0 blocks ==4457== possibly lost: 960 bytes in 3 blocks ==4457== still reachable: 6,232,652 bytes in 48,030 blocks ==4457== of which reachable via heuristic: ==4457== length64 : 6,024 bytes in 99 blocks ==4457== newarray : 6,408 bytes in 55 blocks ==4457== suppressed: 675,600 bytes in 9,115 blocks ==4457== Reachable blocks (those to which a pointer was found) are not shown. ==4457== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4457== ==4457== For counts of detected and suppressed errors, rerun with: -v ==4457== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==453== Memcheck, a memory error detector ==453== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==453== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==453== Command: ./client-test Client::Sync::eds_event::testConversion ==453== Parent PID: 433 ==453== ==457== Memcheck, a memory error detector ==457== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==457== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==457== Command: ./client-test Client::Sync::eds_event::testRefreshFromServerSemantic ==457== Parent PID: 151 ==457== ==457== ==457== HEAP SUMMARY: ==457== in use at exit: 6,997,289 bytes in 57,821 blocks ==457== total heap usage: 1,408,789 allocs, 1,350,915 frees, 204,364,559 bytes allocated ==457== ==457== LEAK SUMMARY: ==457== definitely lost: 0 bytes in 0 blocks ==457== indirectly lost: 0 bytes in 0 blocks ==457== possibly lost: 960 bytes in 3 blocks ==457== still reachable: 6,232,634 bytes in 48,030 blocks ==457== of which reachable via heuristic: ==457== length64 : 6,024 bytes in 99 blocks ==457== newarray : 6,408 bytes in 55 blocks ==457== suppressed: 675,687 bytes in 9,117 blocks ==457== Reachable blocks (those to which a pointer was found) are not shown. ==457== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==457== ==457== For counts of detected and suppressed errors, rerun with: -v ==457== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4620== Memcheck, a memory error detector ==4620== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4620== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4620== Command: ./client-test Client::Sync::eds_contact::testDeleteAllRefresh ==4620== Parent PID: 151 ==4620== ==4620== ==4620== HEAP SUMMARY: ==4620== in use at exit: 7,050,528 bytes in 58,100 blocks ==4620== total heap usage: 1,448,490 allocs, 1,390,337 frees, 208,005,590 bytes allocated ==4620== ==4620== LEAK SUMMARY: ==4620== definitely lost: 0 bytes in 0 blocks ==4620== indirectly lost: 0 bytes in 0 blocks ==4620== possibly lost: 960 bytes in 3 blocks ==4620== still reachable: 6,303,597 bytes in 47,991 blocks ==4620== of which reachable via heuristic: ==4620== length64 : 6,000 bytes in 99 blocks ==4620== newarray : 6,392 bytes in 54 blocks ==4620== suppressed: 638,115 bytes in 9,310 blocks ==4620== Reachable blocks (those to which a pointer was found) are not shown. ==4620== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4620== ==4620== For counts of detected and suppressed errors, rerun with: -v ==4620== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4702== Memcheck, a memory error detector ==4702== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4702== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4702== Command: ./client-test Client::Sync::eds_contact::testTwoWaySync ==4702== Parent PID: 151 ==4702== ==4702== ==4702== HEAP SUMMARY: ==4702== in use at exit: 6,995,082 bytes in 57,769 blocks ==4702== total heap usage: 642,201 allocs, 584,381 frees, 95,584,990 bytes allocated ==4702== ==4702== LEAK SUMMARY: ==4702== definitely lost: 0 bytes in 0 blocks ==4702== indirectly lost: 0 bytes in 0 blocks ==4702== possibly lost: 960 bytes in 3 blocks ==4702== still reachable: 6,306,673 bytes in 48,039 blocks ==4702== of which reachable via heuristic: ==4702== length64 : 5,960 bytes in 98 blocks ==4702== newarray : 6,392 bytes in 54 blocks ==4702== suppressed: 600,289 bytes in 9,066 blocks ==4702== Reachable blocks (those to which a pointer was found) are not shown. ==4702== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4702== ==4702== For counts of detected and suppressed errors, rerun with: -v ==4702== 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_contact::testSlowSync ==4730== Parent PID: 151 ==4730== ==4730== ==4730== HEAP SUMMARY: ==4730== in use at exit: 6,994,364 bytes in 57,777 blocks ==4730== total heap usage: 642,559 allocs, 584,731 frees, 95,641,085 bytes allocated ==4730== ==4730== LEAK SUMMARY: ==4730== definitely lost: 0 bytes in 0 blocks ==4730== indirectly lost: 0 bytes in 0 blocks ==4730== possibly lost: 960 bytes in 3 blocks ==4730== still reachable: 6,304,521 bytes in 48,002 blocks ==4730== of which reachable via heuristic: ==4730== length64 : 5,960 bytes in 98 blocks ==4730== newarray : 6,392 bytes in 54 blocks ==4730== suppressed: 601,555 bytes in 9,109 blocks ==4730== Reachable blocks (those to which a pointer was found) are not shown. ==4730== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4730== ==4730== For counts of detected and suppressed errors, rerun with: -v ==4730== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4758== Memcheck, a memory error detector ==4758== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4758== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4758== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSync ==4758== Parent PID: 151 ==4758== ==4758== ==4758== HEAP SUMMARY: ==4758== in use at exit: 6,993,212 bytes in 57,747 blocks ==4758== total heap usage: 642,295 allocs, 584,497 frees, 95,633,395 bytes allocated ==4758== ==4758== LEAK SUMMARY: ==4758== definitely lost: 0 bytes in 0 blocks ==4758== indirectly lost: 0 bytes in 0 blocks ==4758== possibly lost: 960 bytes in 3 blocks ==4758== still reachable: 6,304,546 bytes in 47,999 blocks ==4758== of which reachable via heuristic: ==4758== length64 : 5,960 bytes in 98 blocks ==4758== newarray : 6,392 bytes in 54 blocks ==4758== suppressed: 600,378 bytes in 9,082 blocks ==4758== Reachable blocks (those to which a pointer was found) are not shown. ==4758== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4758== ==4758== For counts of detected and suppressed errors, rerun with: -v ==4758== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4786== Memcheck, a memory error detector ==4786== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4786== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4786== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSync ==4786== Parent PID: 151 ==4786== ==4786== ==4786== HEAP SUMMARY: ==4786== in use at exit: 6,993,307 bytes in 57,739 blocks ==4786== total heap usage: 642,307 allocs, 584,517 frees, 95,627,073 bytes allocated ==4786== ==4786== LEAK SUMMARY: ==4786== definitely lost: 0 bytes in 0 blocks ==4786== indirectly lost: 0 bytes in 0 blocks ==4786== possibly lost: 960 bytes in 3 blocks ==4786== still reachable: 6,305,218 bytes in 48,015 blocks ==4786== of which reachable via heuristic: ==4786== length64 : 5,960 bytes in 98 blocks ==4786== newarray : 6,392 bytes in 54 blocks ==4786== suppressed: 599,969 bytes in 9,060 blocks ==4786== Reachable blocks (those to which a pointer was found) are not shown. ==4786== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4786== ==4786== For counts of detected and suppressed errors, rerun with: -v ==4786== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4814== Memcheck, a memory error detector ==4814== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4814== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4814== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteSync ==4814== Parent PID: 151 ==4814== ==4814== ==4814== HEAP SUMMARY: ==4814== in use at exit: 6,991,607 bytes in 57,711 blocks ==4814== total heap usage: 642,256 allocs, 584,494 frees, 95,639,259 bytes allocated ==4814== ==4814== LEAK SUMMARY: ==4814== definitely lost: 0 bytes in 0 blocks ==4814== indirectly lost: 0 bytes in 0 blocks ==4814== possibly lost: 960 bytes in 3 blocks ==4814== still reachable: 6,303,774 bytes in 47,992 blocks ==4814== of which reachable via heuristic: ==4814== length64 : 5,960 bytes in 98 blocks ==4814== newarray : 6,392 bytes in 54 blocks ==4814== suppressed: 599,713 bytes in 9,055 blocks ==4814== Reachable blocks (those to which a pointer was found) are not shown. ==4814== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4814== ==4814== For counts of detected and suppressed errors, rerun with: -v ==4814== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4843== Memcheck, a memory error detector ==4843== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4843== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4843== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalSync ==4843== Parent PID: 151 ==4843== ==4843== ==4843== HEAP SUMMARY: ==4843== in use at exit: 6,994,298 bytes in 57,777 blocks ==4843== total heap usage: 642,368 allocs, 584,540 frees, 95,638,533 bytes allocated ==4843== ==4843== LEAK SUMMARY: ==4843== definitely lost: 0 bytes in 0 blocks ==4843== indirectly lost: 0 bytes in 0 blocks ==4843== possibly lost: 960 bytes in 3 blocks ==4843== still reachable: 6,304,434 bytes in 47,997 blocks ==4843== of which reachable via heuristic: ==4843== length64 : 5,960 bytes in 98 blocks ==4843== newarray : 6,392 bytes in 54 blocks ==4843== suppressed: 601,744 bytes in 9,116 blocks ==4843== Reachable blocks (those to which a pointer was found) are not shown. ==4843== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4843== ==4843== For counts of detected and suppressed errors, rerun with: -v ==4843== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4871== Memcheck, a memory error detector ==4871== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4871== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4871== Command: ./client-test Client::Sync::eds_contact::testConversion ==4871== Parent PID: 151 ==4871== ==4871== ==4871== HEAP SUMMARY: ==4871== in use at exit: 2,886,162 bytes in 29,832 blocks ==4871== total heap usage: 322,081 allocs, 292,198 frees, 47,843,430 bytes allocated ==4871== ==4871== LEAK SUMMARY: ==4871== definitely lost: 0 bytes in 0 blocks ==4871== indirectly lost: 0 bytes in 0 blocks ==4871== possibly lost: 960 bytes in 3 blocks ==4871== still reachable: 2,285,100 bytes in 21,287 blocks ==4871== of which reachable via heuristic: ==4871== length64 : 5,072 bytes in 83 blocks ==4871== newarray : 6,312 bytes in 49 blocks ==4871== suppressed: 528,590 bytes in 8,008 blocks ==4871== Reachable blocks (those to which a pointer was found) are not shown. ==4871== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4871== ==4871== For counts of detected and suppressed errors, rerun with: -v ==4871== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4890== Memcheck, a memory error detector ==4890== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4890== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4890== Command: ./client-test Client::Sync::eds_contact::testConversion ==4890== Parent PID: 4871 ==4890== ==4895== Memcheck, a memory error detector ==4895== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4895== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4895== Command: ./client-test Client::Sync::eds_contact::testRefreshFromServerSemantic ==4895== Parent PID: 151 ==4895== ==4895== ==4895== HEAP SUMMARY: ==4895== in use at exit: 7,055,400 bytes in 58,186 blocks ==4895== total heap usage: 1,389,610 allocs, 1,331,371 frees, 203,995,905 bytes allocated ==4895== ==4895== LEAK SUMMARY: ==4895== definitely lost: 0 bytes in 0 blocks ==4895== indirectly lost: 0 bytes in 0 blocks ==4895== possibly lost: 960 bytes in 3 blocks ==4895== still reachable: 6,306,772 bytes in 48,040 blocks ==4895== of which reachable via heuristic: ==4895== length64 : 6,000 bytes in 99 blocks ==4895== newarray : 6,392 bytes in 54 blocks ==4895== suppressed: 639,812 bytes in 9,347 blocks ==4895== Reachable blocks (those to which a pointer was found) are not shown. ==4895== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4895== ==4895== For counts of detected and suppressed errors, rerun with: -v ==4895== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==4963== Memcheck, a memory error detector ==4963== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4963== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4963== Command: ./client-test Client::Sync::eds_contact::testRefreshFromClientSemantic ==4963== Parent PID: 151 ==4963== ==4963== ==4963== HEAP SUMMARY: ==4963== in use at exit: 7,049,080 bytes in 58,074 blocks ==4963== total heap usage: 1,736,578 allocs, 1,678,450 frees, 256,443,201 bytes allocated ==4963== ==4963== LEAK SUMMARY: ==4963== definitely lost: 0 bytes in 0 blocks ==4963== indirectly lost: 0 bytes in 0 blocks ==4963== possibly lost: 960 bytes in 3 blocks ==4963== still reachable: 6,302,478 bytes in 47,986 blocks ==4963== of which reachable via heuristic: ==4963== length64 : 6,000 bytes in 99 blocks ==4963== newarray : 6,392 bytes in 54 blocks ==4963== suppressed: 637,786 bytes in 9,289 blocks ==4963== Reachable blocks (those to which a pointer was found) are not shown. ==4963== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==4963== ==4963== For counts of detected and suppressed errors, rerun with: -v ==4963== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5047== Memcheck, a memory error detector ==5047== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5047== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5047== Command: ./client-test Client::Sync::eds_contact::testRefreshStatus ==5047== Parent PID: 151 ==5047== ==5047== ==5047== HEAP SUMMARY: ==5047== in use at exit: 7,055,982 bytes in 58,211 blocks ==5047== total heap usage: 1,088,727 allocs, 1,030,464 frees, 154,719,715 bytes allocated ==5047== ==5047== LEAK SUMMARY: ==5047== definitely lost: 0 bytes in 0 blocks ==5047== indirectly lost: 0 bytes in 0 blocks ==5047== possibly lost: 960 bytes in 3 blocks ==5047== still reachable: 6,304,058 bytes in 47,993 blocks ==5047== of which reachable via heuristic: ==5047== length64 : 6,000 bytes in 99 blocks ==5047== newarray : 6,392 bytes in 54 blocks ==5047== suppressed: 643,108 bytes in 9,419 blocks ==5047== Reachable blocks (those to which a pointer was found) are not shown. ==5047== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5047== ==5047== For counts of detected and suppressed errors, rerun with: -v ==5047== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5111== Memcheck, a memory error detector ==5111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5111== Command: ./client-test Client::Sync::eds_contact::testTwoWayRestart ==5111== Parent PID: 151 ==5111== ==5111== ==5111== HEAP SUMMARY: ==5111== in use at exit: 7,055,320 bytes in 58,184 blocks ==5111== total heap usage: 1,868,679 allocs, 1,810,441 frees, 272,986,492 bytes allocated ==5111== ==5111== LEAK SUMMARY: ==5111== definitely lost: 0 bytes in 0 blocks ==5111== indirectly lost: 0 bytes in 0 blocks ==5111== possibly lost: 960 bytes in 3 blocks ==5111== still reachable: 6,306,748 bytes in 48,039 blocks ==5111== of which reachable via heuristic: ==5111== length64 : 6,000 bytes in 99 blocks ==5111== newarray : 6,392 bytes in 54 blocks ==5111== suppressed: 639,756 bytes in 9,346 blocks ==5111== Reachable blocks (those to which a pointer was found) are not shown. ==5111== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5111== ==5111== For counts of detected and suppressed errors, rerun with: -v ==5111== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5228== Memcheck, a memory error detector ==5228== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5228== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5228== Command: ./client-test Client::Sync::eds_contact::testSlowRestart ==5228== Parent PID: 151 ==5228== ==5228== ==5228== HEAP SUMMARY: ==5228== in use at exit: 7,052,114 bytes in 58,125 blocks ==5228== total heap usage: 1,875,702 allocs, 1,817,523 frees, 273,800,565 bytes allocated ==5228== ==5228== LEAK SUMMARY: ==5228== definitely lost: 0 bytes in 0 blocks ==5228== indirectly lost: 0 bytes in 0 blocks ==5228== possibly lost: 960 bytes in 3 blocks ==5228== still reachable: 6,303,518 bytes in 47,990 blocks ==5228== of which reachable via heuristic: ==5228== length64 : 6,000 bytes in 99 blocks ==5228== newarray : 6,392 bytes in 54 blocks ==5228== suppressed: 639,780 bytes in 9,336 blocks ==5228== Reachable blocks (those to which a pointer was found) are not shown. ==5228== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5228== ==5228== For counts of detected and suppressed errors, rerun with: -v ==5228== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==526== Memcheck, a memory error detector ==526== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==526== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==526== Command: ./client-test Client::Sync::eds_event::testRefreshFromClientSemantic ==526== Parent PID: 151 ==526== ==526== ==526== HEAP SUMMARY: ==526== in use at exit: 7,000,608 bytes in 57,874 blocks ==526== total heap usage: 1,759,160 allocs, 1,701,232 frees, 256,863,448 bytes allocated ==526== ==526== LEAK SUMMARY: ==526== definitely lost: 0 bytes in 0 blocks ==526== indirectly lost: 0 bytes in 0 blocks ==526== possibly lost: 960 bytes in 3 blocks ==526== still reachable: 6,234,055 bytes in 48,053 blocks ==526== of which reachable via heuristic: ==526== length64 : 6,024 bytes in 99 blocks ==526== newarray : 6,408 bytes in 55 blocks ==526== suppressed: 677,585 bytes in 9,147 blocks ==526== Reachable blocks (those to which a pointer was found) are not shown. ==526== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==526== ==526== For counts of detected and suppressed errors, rerun with: -v ==526== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5344== Memcheck, a memory error detector ==5344== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5344== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5344== Command: ./client-test Client::Sync::eds_contact::testRefreshFromLocalRestart ==5344== Parent PID: 151 ==5344== ==5344== ==5344== HEAP SUMMARY: ==5344== in use at exit: 7,053,683 bytes in 58,154 blocks ==5344== total heap usage: 1,876,128 allocs, 1,817,920 frees, 273,821,730 bytes allocated ==5344== ==5344== LEAK SUMMARY: ==5344== definitely lost: 0 bytes in 0 blocks ==5344== indirectly lost: 0 bytes in 0 blocks ==5344== possibly lost: 960 bytes in 3 blocks ==5344== still reachable: 6,303,782 bytes in 47,992 blocks ==5344== of which reachable via heuristic: ==5344== length64 : 6,000 bytes in 99 blocks ==5344== newarray : 6,392 bytes in 54 blocks ==5344== suppressed: 641,085 bytes in 9,363 blocks ==5344== Reachable blocks (those to which a pointer was found) are not shown. ==5344== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5344== ==5344== For counts of detected and suppressed errors, rerun with: -v ==5344== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5460== Memcheck, a memory error detector ==5460== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5460== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5460== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocalRestart ==5460== Parent PID: 151 ==5460== ==5460== ==5460== HEAP SUMMARY: ==5460== in use at exit: 7,052,378 bytes in 58,128 blocks ==5460== total heap usage: 1,868,656 allocs, 1,810,474 frees, 273,057,785 bytes allocated ==5460== ==5460== LEAK SUMMARY: ==5460== definitely lost: 0 bytes in 0 blocks ==5460== indirectly lost: 0 bytes in 0 blocks ==5460== possibly lost: 960 bytes in 3 blocks ==5460== still reachable: 6,303,518 bytes in 47,990 blocks ==5460== of which reachable via heuristic: ==5460== length64 : 6,000 bytes in 99 blocks ==5460== newarray : 6,392 bytes in 54 blocks ==5460== suppressed: 640,044 bytes in 9,339 blocks ==5460== Reachable blocks (those to which a pointer was found) are not shown. ==5460== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5460== ==5460== For counts of detected and suppressed errors, rerun with: -v ==5460== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5460== could not unlink /tmp/vgdb-pipe-from-vgdb-to-5460-by-nightly-on-syncev ==5460== could not unlink /tmp/vgdb-pipe-to-vgdb-from-5460-by-nightly-on-syncev ==5460== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-5460-by-nightly-on-syncev ==5577== Memcheck, a memory error detector ==5577== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5577== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5577== Command: ./client-test Client::Sync::eds_contact::testRefreshFromRemoteRestart ==5577== Parent PID: 151 ==5577== ==5577== ==5577== HEAP SUMMARY: ==5577== in use at exit: 7,055,440 bytes in 58,184 blocks ==5577== total heap usage: 1,074,407 allocs, 1,016,171 frees, 156,280,550 bytes allocated ==5577== ==5577== LEAK SUMMARY: ==5577== definitely lost: 0 bytes in 0 blocks ==5577== indirectly lost: 0 bytes in 0 blocks ==5577== possibly lost: 960 bytes in 3 blocks ==5577== still reachable: 6,305,219 bytes in 48,015 blocks ==5577== of which reachable via heuristic: ==5577== length64 : 6,000 bytes in 99 blocks ==5577== newarray : 6,392 bytes in 54 blocks ==5577== suppressed: 641,405 bytes in 9,370 blocks ==5577== Reachable blocks (those to which a pointer was found) are not shown. ==5577== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5577== ==5577== For counts of detected and suppressed errors, rerun with: -v ==5577== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5640== Memcheck, a memory error detector ==5640== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5640== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5640== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemoteRestart ==5640== Parent PID: 151 ==5640== ==5640== ==5640== HEAP SUMMARY: ==5640== in use at exit: 7,055,982 bytes in 58,211 blocks ==5640== total heap usage: 1,861,315 allocs, 1,803,050 frees, 272,334,246 bytes allocated ==5640== ==5640== LEAK SUMMARY: ==5640== definitely lost: 0 bytes in 0 blocks ==5640== indirectly lost: 0 bytes in 0 blocks ==5640== possibly lost: 960 bytes in 3 blocks ==5640== still reachable: 6,304,142 bytes in 47,996 blocks ==5640== of which reachable via heuristic: ==5640== length64 : 6,000 bytes in 99 blocks ==5640== newarray : 6,392 bytes in 54 blocks ==5640== suppressed: 643,024 bytes in 9,416 blocks ==5640== Reachable blocks (those to which a pointer was found) are not shown. ==5640== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5640== ==5640== For counts of detected and suppressed errors, rerun with: -v ==5640== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5755== Memcheck, a memory error detector ==5755== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5755== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5755== Command: ./client-test Client::Sync::eds_contact::testManyRestarts ==5755== Parent PID: 151 ==5755== ==5755== ==5755== HEAP SUMMARY: ==5755== in use at exit: 7,055,048 bytes in 58,209 blocks ==5755== total heap usage: 1,596,640 allocs, 1,538,379 frees, 224,012,599 bytes allocated ==5755== ==5755== LEAK SUMMARY: ==5755== definitely lost: 0 bytes in 0 blocks ==5755== indirectly lost: 0 bytes in 0 blocks ==5755== possibly lost: 960 bytes in 3 blocks ==5755== still reachable: 6,304,842 bytes in 48,004 blocks ==5755== of which reachable via heuristic: ==5755== length64 : 6,000 bytes in 99 blocks ==5755== newarray : 6,392 bytes in 54 blocks ==5755== suppressed: 641,222 bytes in 9,404 blocks ==5755== Reachable blocks (those to which a pointer was found) are not shown. ==5755== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5755== ==5755== For counts of detected and suppressed errors, rerun with: -v ==5755== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==5902== Memcheck, a memory error detector ==5902== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5902== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5902== Command: ./client-test Client::Sync::eds_contact::testCopy ==5902== Parent PID: 151 ==5902== ==5902== ==5902== HEAP SUMMARY: ==5902== in use at exit: 7,056,914 bytes in 58,252 blocks ==5902== total heap usage: 1,852,301 allocs, 1,793,995 frees, 263,869,462 bytes allocated ==5902== ==5902== LEAK SUMMARY: ==5902== definitely lost: 0 bytes in 0 blocks ==5902== indirectly lost: 0 bytes in 0 blocks ==5902== possibly lost: 960 bytes in 3 blocks ==5902== still reachable: 6,305,042 bytes in 48,008 blocks ==5902== of which reachable via heuristic: ==5902== length64 : 6,000 bytes in 99 blocks ==5902== newarray : 6,392 bytes in 54 blocks ==5902== suppressed: 642,888 bytes in 9,443 blocks ==5902== Reachable blocks (those to which a pointer was found) are not shown. ==5902== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==5902== ==5902== For counts of detected and suppressed errors, rerun with: -v ==5902== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6007== Memcheck, a memory error detector ==6007== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6007== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6007== Command: ./client-test Client::Sync::eds_contact::testCopy ==6007== Parent PID: 5902 ==6007== ==6025== Memcheck, a memory error detector ==6025== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6025== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6025== Command: ./client-test Client::Sync::eds_contact::testCopy ==6025== Parent PID: 5902 ==6025== ==6030== Memcheck, a memory error detector ==6030== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6030== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6030== Command: ./client-test Client::Sync::eds_contact::testDelete ==6030== Parent PID: 151 ==6030== ==6030== ==6030== HEAP SUMMARY: ==6030== in use at exit: 7,053,631 bytes in 58,156 blocks ==6030== total heap usage: 2,519,024 allocs, 2,460,812 frees, 366,793,590 bytes allocated ==6030== ==6030== LEAK SUMMARY: ==6030== definitely lost: 0 bytes in 0 blocks ==6030== indirectly lost: 0 bytes in 0 blocks ==6030== possibly lost: 960 bytes in 3 blocks ==6030== still reachable: 6,305,331 bytes in 48,016 blocks ==6030== of which reachable via heuristic: ==6030== length64 : 6,000 bytes in 99 blocks ==6030== newarray : 6,392 bytes in 54 blocks ==6030== suppressed: 639,484 bytes in 9,341 blocks ==6030== Reachable blocks (those to which a pointer was found) are not shown. ==6030== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6030== ==6030== For counts of detected and suppressed errors, rerun with: -v ==6030== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==609== Memcheck, a memory error detector ==609== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==609== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==609== Command: ./client-test Client::Sync::eds_event::testRefreshStatus ==609== Parent PID: 151 ==609== ==609== ==609== HEAP SUMMARY: ==609== in use at exit: 6,987,229 bytes in 57,670 blocks ==609== total heap usage: 1,109,563 allocs, 1,051,841 frees, 155,286,158 bytes allocated ==609== ==609== LEAK SUMMARY: ==609== definitely lost: 0 bytes in 0 blocks ==609== indirectly lost: 0 bytes in 0 blocks ==609== possibly lost: 960 bytes in 3 blocks ==609== still reachable: 6,227,776 bytes in 47,977 blocks ==609== of which reachable via heuristic: ==609== length64 : 6,024 bytes in 99 blocks ==609== newarray : 6,408 bytes in 55 blocks ==609== suppressed: 670,317 bytes in 9,017 blocks ==609== Reachable blocks (those to which a pointer was found) are not shown. ==609== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==609== ==609== For counts of detected and suppressed errors, rerun with: -v ==609== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6135== Memcheck, a memory error detector ==6135== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6135== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6135== Command: ./client-test Client::Sync::eds_contact::testDelete ==6135== Parent PID: 6030 ==6135== ==6176== Memcheck, a memory error detector ==6176== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6176== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6176== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==6176== Parent PID: 151 ==6176== ==6176== ==6176== HEAP SUMMARY: ==6176== in use at exit: 7,043,592 bytes in 57,983 blocks ==6176== total heap usage: 2,130,835 allocs, 2,072,797 frees, 311,986,920 bytes allocated ==6176== ==6176== LEAK SUMMARY: ==6176== definitely lost: 0 bytes in 0 blocks ==6176== indirectly lost: 0 bytes in 0 blocks ==6176== possibly lost: 960 bytes in 3 blocks ==6176== still reachable: 6,301,266 bytes in 47,977 blocks ==6176== of which reachable via heuristic: ==6176== length64 : 6,000 bytes in 99 blocks ==6176== newarray : 6,392 bytes in 54 blocks ==6176== suppressed: 633,510 bytes in 9,207 blocks ==6176== Reachable blocks (those to which a pointer was found) are not shown. ==6176== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6176== ==6176== For counts of detected and suppressed errors, rerun with: -v ==6176== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6287== Memcheck, a memory error detector ==6287== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6287== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6287== Command: ./client-test Client::Sync::eds_contact::testAddUpdate ==6287== Parent PID: 6176 ==6287== ==6292== Memcheck, a memory error detector ==6292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6292== Command: ./client-test Client::Sync::eds_contact::testManyItems ==6292== Parent PID: 151 ==6292== ==6292== ==6292== HEAP SUMMARY: ==6292== in use at exit: 7,105,175 bytes in 58,183 blocks ==6292== total heap usage: 5,177,533 allocs, 5,119,295 frees, 660,690,614 bytes allocated ==6292== ==6292== LEAK SUMMARY: ==6292== definitely lost: 0 bytes in 0 blocks ==6292== indirectly lost: 0 bytes in 0 blocks ==6292== possibly lost: 960 bytes in 3 blocks ==6292== still reachable: 6,353,632 bytes in 48,000 blocks ==6292== of which reachable via heuristic: ==6292== length64 : 6,000 bytes in 99 blocks ==6292== newarray : 6,392 bytes in 54 blocks ==6292== suppressed: 642,727 bytes in 9,384 blocks ==6292== Reachable blocks (those to which a pointer was found) are not shown. ==6292== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6292== ==6292== For counts of detected and suppressed errors, rerun with: -v ==6292== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6390== Memcheck, a memory error detector ==6390== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6390== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6390== Command: ./client-test Client::Sync::eds_contact::testManyItems ==6390== Parent PID: 6292 ==6390== ==6394== Memcheck, a memory error detector ==6394== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6394== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6394== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==6394== Parent PID: 151 ==6394== ==6394== ==6394== HEAP SUMMARY: ==6394== in use at exit: 7,057,225 bytes in 58,183 blocks ==6394== total heap usage: 6,254,616 allocs, 6,196,376 frees, 740,498,405 bytes allocated ==6394== ==6394== LEAK SUMMARY: ==6394== definitely lost: 0 bytes in 0 blocks ==6394== indirectly lost: 0 bytes in 0 blocks ==6394== possibly lost: 960 bytes in 3 blocks ==6394== still reachable: 6,307,283 bytes in 48,016 blocks ==6394== of which reachable via heuristic: ==6394== length64 : 6,000 bytes in 99 blocks ==6394== newarray : 6,392 bytes in 54 blocks ==6394== suppressed: 641,126 bytes in 9,368 blocks ==6394== Reachable blocks (those to which a pointer was found) are not shown. ==6394== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6394== ==6394== For counts of detected and suppressed errors, rerun with: -v ==6394== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6495== Memcheck, a memory error detector ==6495== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6495== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6495== Command: ./client-test Client::Sync::eds_contact::testManyDeletes ==6495== Parent PID: 6394 ==6495== ==6529== Memcheck, a memory error detector ==6529== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6529== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6529== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==6529== Parent PID: 151 ==6529== ==6529== ==6529== HEAP SUMMARY: ==6529== in use at exit: 7,053,804 bytes in 58,158 blocks ==6529== total heap usage: 3,487,549 allocs, 3,429,332 frees, 519,029,741 bytes allocated ==6529== ==6529== LEAK SUMMARY: ==6529== definitely lost: 0 bytes in 0 blocks ==6529== indirectly lost: 0 bytes in 0 blocks ==6529== possibly lost: 960 bytes in 3 blocks ==6529== still reachable: 6,303,714 bytes in 47,989 blocks ==6529== of which reachable via heuristic: ==6529== length64 : 6,000 bytes in 99 blocks ==6529== newarray : 6,392 bytes in 54 blocks ==6529== suppressed: 641,274 bytes in 9,370 blocks ==6529== Reachable blocks (those to which a pointer was found) are not shown. ==6529== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6529== ==6529== For counts of detected and suppressed errors, rerun with: -v ==6529== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6634== Memcheck, a memory error detector ==6634== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6634== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6634== Command: ./client-test Client::Sync::eds_contact::testSlowSyncSemantic ==6634== Parent PID: 6529 ==6634== ==6705== Memcheck, a memory error detector ==6705== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6705== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6705== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6705== Parent PID: 151 ==6705== ==6705== ==6705== HEAP SUMMARY: ==6705== in use at exit: 7,055,529 bytes in 58,186 blocks ==6705== total heap usage: 2,879,349 allocs, 2,821,106 frees, 420,256,762 bytes allocated ==6705== ==6705== LEAK SUMMARY: ==6705== definitely lost: 0 bytes in 0 blocks ==6705== indirectly lost: 0 bytes in 0 blocks ==6705== possibly lost: 960 bytes in 3 blocks ==6705== still reachable: 6,305,235 bytes in 48,015 blocks ==6705== of which reachable via heuristic: ==6705== length64 : 6,000 bytes in 99 blocks ==6705== newarray : 6,392 bytes in 54 blocks ==6705== suppressed: 641,478 bytes in 9,372 blocks ==6705== Reachable blocks (those to which a pointer was found) are not shown. ==6705== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6705== ==6705== For counts of detected and suppressed errors, rerun with: -v ==6705== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==672== Memcheck, a memory error detector ==672== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==672== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==672== Command: ./client-test Client::Sync::eds_event::testTwoWayRestart ==672== Parent PID: 151 ==672== ==672== ==672== HEAP SUMMARY: ==672== in use at exit: 6,999,509 bytes in 57,877 blocks ==672== total heap usage: 1,901,765 allocs, 1,843,834 frees, 273,745,514 bytes allocated ==672== ==672== LEAK SUMMARY: ==672== definitely lost: 0 bytes in 0 blocks ==672== indirectly lost: 0 bytes in 0 blocks ==672== possibly lost: 960 bytes in 3 blocks ==672== still reachable: 6,230,712 bytes in 47,994 blocks ==672== of which reachable via heuristic: ==672== length64 : 6,024 bytes in 99 blocks ==672== newarray : 6,408 bytes in 55 blocks ==672== suppressed: 679,661 bytes in 9,207 blocks ==672== Reachable blocks (those to which a pointer was found) are not shown. ==672== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==672== ==672== For counts of detected and suppressed errors, rerun with: -v ==672== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6810== Memcheck, a memory error detector ==6810== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6810== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6810== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6810== Parent PID: 6705 ==6810== ==6828== Memcheck, a memory error detector ==6828== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6828== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6828== Command: ./client-test Client::Sync::eds_contact::testComplexRefreshFromServerSemantic ==6828== Parent PID: 6705 ==6828== ==6872== Memcheck, a memory error detector ==6872== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6872== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6872== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6872== Parent PID: 151 ==6872== ==6872== ==6872== HEAP SUMMARY: ==6872== in use at exit: 7,053,748 bytes in 58,156 blocks ==6872== total heap usage: 2,621,049 allocs, 2,562,837 frees, 373,352,198 bytes allocated ==6872== ==6872== LEAK SUMMARY: ==6872== definitely lost: 0 bytes in 0 blocks ==6872== indirectly lost: 0 bytes in 0 blocks ==6872== possibly lost: 960 bytes in 3 blocks ==6872== still reachable: 6,303,958 bytes in 47,995 blocks ==6872== of which reachable via heuristic: ==6872== length64 : 6,000 bytes in 99 blocks ==6872== newarray : 6,392 bytes in 54 blocks ==6872== suppressed: 640,974 bytes in 9,362 blocks ==6872== Reachable blocks (those to which a pointer was found) are not shown. ==6872== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==6872== ==6872== For counts of detected and suppressed errors, rerun with: -v ==6872== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==6977== Memcheck, a memory error detector ==6977== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6977== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6977== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6977== Parent PID: 6872 ==6977== ==6995== Memcheck, a memory error detector ==6995== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6995== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6995== Command: ./client-test Client::Sync::eds_contact::testDeleteBothSides ==6995== Parent PID: 6872 ==6995== ==7048== Memcheck, a memory error detector ==7048== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7048== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7048== Command: ./client-test Client::Sync::eds_contact::testUpdate ==7048== Parent PID: 151 ==7048== ==7048== ==7048== HEAP SUMMARY: ==7048== in use at exit: 7,056,865 bytes in 58,228 blocks ==7048== total heap usage: 2,563,168 allocs, 2,504,884 frees, 370,060,492 bytes allocated ==7048== ==7048== LEAK SUMMARY: ==7048== definitely lost: 0 bytes in 0 blocks ==7048== indirectly lost: 0 bytes in 0 blocks ==7048== possibly lost: 960 bytes in 3 blocks ==7048== still reachable: 6,304,778 bytes in 48,000 blocks ==7048== of which reachable via heuristic: ==7048== length64 : 6,000 bytes in 99 blocks ==7048== newarray : 6,392 bytes in 54 blocks ==7048== suppressed: 643,271 bytes in 9,429 blocks ==7048== Reachable blocks (those to which a pointer was found) are not shown. ==7048== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7048== ==7048== For counts of detected and suppressed errors, rerun with: -v ==7048== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7153== Memcheck, a memory error detector ==7153== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7153== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7153== Command: ./client-test Client::Sync::eds_contact::testUpdate ==7153== Parent PID: 7048 ==7153== ==7203== Memcheck, a memory error detector ==7203== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7203== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7203== Command: ./client-test Client::Sync::eds_contact::testUpdate ==7203== Parent PID: 7048 ==7203== ==7208== Memcheck, a memory error detector ==7208== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7208== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7208== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==7208== Parent PID: 151 ==7208== ==7208== ==7208== HEAP SUMMARY: ==7208== in use at exit: 7,050,458 bytes in 58,097 blocks ==7208== total heap usage: 2,566,760 allocs, 2,508,607 frees, 370,368,524 bytes allocated ==7208== ==7208== LEAK SUMMARY: ==7208== definitely lost: 0 bytes in 0 blocks ==7208== indirectly lost: 0 bytes in 0 blocks ==7208== possibly lost: 960 bytes in 3 blocks ==7208== still reachable: 6,303,014 bytes in 47,988 blocks ==7208== of which reachable via heuristic: ==7208== length64 : 6,000 bytes in 99 blocks ==7208== newarray : 6,392 bytes in 54 blocks ==7208== suppressed: 638,628 bytes in 9,310 blocks ==7208== Reachable blocks (those to which a pointer was found) are not shown. ==7208== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7208== ==7208== For counts of detected and suppressed errors, rerun with: -v ==7208== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7314== Memcheck, a memory error detector ==7314== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7314== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7314== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==7314== Parent PID: 7208 ==7314== ==7364== Memcheck, a memory error detector ==7364== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7364== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7364== Command: ./client-test Client::Sync::eds_contact::testComplexUpdate ==7364== Parent PID: 7208 ==7364== ==7368== Memcheck, a memory error detector ==7368== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7368== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7368== Command: ./client-test Client::Sync::eds_contact::testMerge ==7368== Parent PID: 151 ==7368== ==7368== ==7368== HEAP SUMMARY: ==7368== in use at exit: 7,055,401 bytes in 58,186 blocks ==7368== total heap usage: 3,356,125 allocs, 3,297,881 frees, 482,044,855 bytes allocated ==7368== ==7368== LEAK SUMMARY: ==7368== definitely lost: 0 bytes in 0 blocks ==7368== indirectly lost: 0 bytes in 0 blocks ==7368== possibly lost: 960 bytes in 3 blocks ==7368== still reachable: 6,306,788 bytes in 48,040 blocks ==7368== of which reachable via heuristic: ==7368== length64 : 6,000 bytes in 99 blocks ==7368== newarray : 6,392 bytes in 54 blocks ==7368== suppressed: 639,797 bytes in 9,347 blocks ==7368== Reachable blocks (those to which a pointer was found) are not shown. ==7368== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7368== ==7368== For counts of detected and suppressed errors, rerun with: -v ==7368== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7473== Memcheck, a memory error detector ==7473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7473== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7473== Command: ./client-test Client::Sync::eds_contact::testMerge ==7473== Parent PID: 7368 ==7473== ==7546== Memcheck, a memory error detector ==7546== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7546== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7546== Command: ./client-test Client::Sync::eds_contact::testMerge ==7546== Parent PID: 7368 ==7546== ==7573== Memcheck, a memory error detector ==7573== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7573== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7573== Command: ./client-test Client::Sync::eds_contact::testMerge ==7573== Parent PID: 7368 ==7573== ==7579== Memcheck, a memory error detector ==7579== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7579== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7579== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7579== Parent PID: 151 ==7579== ==7579== ==7579== HEAP SUMMARY: ==7579== in use at exit: 7,056,338 bytes in 58,217 blocks ==7579== total heap usage: 2,660,430 allocs, 2,602,158 frees, 366,266,855 bytes allocated ==7579== ==7579== LEAK SUMMARY: ==7579== definitely lost: 0 bytes in 0 blocks ==7579== indirectly lost: 0 bytes in 0 blocks ==7579== possibly lost: 960 bytes in 3 blocks ==7579== still reachable: 6,304,277 bytes in 48,003 blocks ==7579== of which reachable via heuristic: ==7579== length64 : 6,000 bytes in 99 blocks ==7579== newarray : 6,392 bytes in 54 blocks ==7579== suppressed: 643,245 bytes in 9,415 blocks ==7579== Reachable blocks (those to which a pointer was found) are not shown. ==7579== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7579== ==7579== For counts of detected and suppressed errors, rerun with: -v ==7579== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7634== Memcheck, a memory error detector ==7634== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7634== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7634== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7634== Parent PID: 7579 ==7634== ==7697== Memcheck, a memory error detector ==7697== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7697== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7697== Command: ./client-test Client::Sync::eds_contact::testTwinning ==7697== Parent PID: 7579 ==7697== ==7701== Memcheck, a memory error detector ==7701== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7701== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7701== Command: ./client-test Client::Sync::eds_contact::testItems ==7701== Parent PID: 151 ==7701== ==7701== ==7701== HEAP SUMMARY: ==7701== in use at exit: 7,055,780 bytes in 58,194 blocks ==7701== total heap usage: 1,800,730 allocs, 1,742,483 frees, 241,976,246 bytes allocated ==7701== ==7701== LEAK SUMMARY: ==7701== definitely lost: 0 bytes in 0 blocks ==7701== indirectly lost: 0 bytes in 0 blocks ==7701== possibly lost: 960 bytes in 3 blocks ==7701== still reachable: 6,307,479 bytes in 48,050 blocks ==7701== of which reachable via heuristic: ==7701== length64 : 6,000 bytes in 99 blocks ==7701== newarray : 6,392 bytes in 54 blocks ==7701== suppressed: 639,485 bytes in 9,345 blocks ==7701== Reachable blocks (those to which a pointer was found) are not shown. ==7701== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7701== ==7701== For counts of detected and suppressed errors, rerun with: -v ==7701== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7756== Memcheck, a memory error detector ==7756== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7756== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7756== Command: ./client-test Client::Sync::eds_contact::testItems ==7756== Parent PID: 7701 ==7756== ==7798== Memcheck, a memory error detector ==7798== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7798== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7798== Command: ./client-test Client::Sync::eds_contact::testItems ==7798== Parent PID: 7701 ==7798== ==7803== Memcheck, a memory error detector ==7803== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7803== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7803== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7803== Parent PID: 151 ==7803== ==7803== ==7803== HEAP SUMMARY: ==7803== in use at exit: 7,052,870 bytes in 58,138 blocks ==7803== total heap usage: 1,827,018 allocs, 1,768,827 frees, 241,680,075 bytes allocated ==7803== ==7803== LEAK SUMMARY: ==7803== definitely lost: 0 bytes in 0 blocks ==7803== indirectly lost: 0 bytes in 0 blocks ==7803== possibly lost: 960 bytes in 3 blocks ==7803== still reachable: 6,304,249 bytes in 48,001 blocks ==7803== of which reachable via heuristic: ==7803== length64 : 6,000 bytes in 99 blocks ==7803== newarray : 6,392 bytes in 54 blocks ==7803== suppressed: 639,805 bytes in 9,338 blocks ==7803== Reachable blocks (those to which a pointer was found) are not shown. ==7803== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7803== ==7803== For counts of detected and suppressed errors, rerun with: -v ==7803== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==783== Memcheck, a memory error detector ==783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==783== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==783== Command: ./client-test Client::Sync::eds_event::testSlowRestart ==783== Parent PID: 151 ==783== ==783== ==783== HEAP SUMMARY: ==783== in use at exit: 6,992,547 bytes in 57,733 blocks ==783== total heap usage: 1,908,392 allocs, 1,850,605 frees, 274,529,476 bytes allocated ==783== ==783== LEAK SUMMARY: ==783== definitely lost: 0 bytes in 0 blocks ==783== indirectly lost: 0 bytes in 0 blocks ==783== possibly lost: 960 bytes in 3 blocks ==783== still reachable: 6,228,944 bytes in 47,978 blocks ==783== of which reachable via heuristic: ==783== length64 : 6,024 bytes in 99 blocks ==783== newarray : 6,408 bytes in 55 blocks ==783== suppressed: 674,635 bytes in 9,081 blocks ==783== Reachable blocks (those to which a pointer was found) are not shown. ==783== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==783== ==783== For counts of detected and suppressed errors, rerun with: -v ==783== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7858== Memcheck, a memory error detector ==7858== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7858== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7858== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7858== Parent PID: 7803 ==7858== ==7900== Memcheck, a memory error detector ==7900== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7900== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7900== Command: ./client-test Client::Sync::eds_contact::testItemsXML ==7900== Parent PID: 7803 ==7900== ==7905== Memcheck, a memory error detector ==7905== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7905== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7905== Command: ./client-test Client::Sync::eds_contact::testExtensions ==7905== Parent PID: 151 ==7905== ==7905== ==7905== HEAP SUMMARY: ==7905== in use at exit: 7,058,639 bytes in 58,275 blocks ==7905== total heap usage: 2,809,268 allocs, 2,750,938 frees, 378,515,347 bytes allocated ==7905== ==7905== LEAK SUMMARY: ==7905== definitely lost: 0 bytes in 0 blocks ==7905== indirectly lost: 0 bytes in 0 blocks ==7905== possibly lost: 960 bytes in 3 blocks ==7905== still reachable: 6,305,293 bytes in 48,014 blocks ==7905== of which reachable via heuristic: ==7905== length64 : 6,000 bytes in 99 blocks ==7905== newarray : 6,392 bytes in 54 blocks ==7905== suppressed: 644,362 bytes in 9,460 blocks ==7905== Reachable blocks (those to which a pointer was found) are not shown. ==7905== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==7905== ==7905== For counts of detected and suppressed errors, rerun with: -v ==7905== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==7960== Memcheck, a memory error detector ==7960== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7960== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7960== Command: ./client-test Client::Sync::eds_contact::testExtensions ==7960== Parent PID: 7905 ==7960== ==8024== Memcheck, a memory error detector ==8024== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8024== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8024== Command: ./client-test Client::Sync::eds_contact::testExtensions ==8024== Parent PID: 7905 ==8024== ==8029== Memcheck, a memory error detector ==8029== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8029== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8029== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==8029== Parent PID: 151 ==8029== ==8029== ==8029== HEAP SUMMARY: ==8029== in use at exit: 7,054,878 bytes in 58,181 blocks ==8029== total heap usage: 1,889,397 allocs, 1,831,163 frees, 275,306,530 bytes allocated ==8029== ==8029== LEAK SUMMARY: ==8029== definitely lost: 0 bytes in 0 blocks ==8029== indirectly lost: 0 bytes in 0 blocks ==8029== possibly lost: 960 bytes in 3 blocks ==8029== still reachable: 6,304,406 bytes in 47,995 blocks ==8029== of which reachable via heuristic: ==8029== length64 : 6,000 bytes in 99 blocks ==8029== newarray : 6,392 bytes in 54 blocks ==8029== suppressed: 641,656 bytes in 9,387 blocks ==8029== Reachable blocks (those to which a pointer was found) are not shown. ==8029== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8029== ==8029== For counts of detected and suppressed errors, rerun with: -v ==8029== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8104== Memcheck, a memory error detector ==8104== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8104== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8104== Command: ./client-test Client::Sync::eds_contact::testMaxMsg ==8104== Parent PID: 8029 ==8104== ==8108== Memcheck, a memory error detector ==8108== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8108== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8108== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==8108== Parent PID: 151 ==8108== ==8108== ==8108== HEAP SUMMARY: ==8108== in use at exit: 7,057,434 bytes in 58,212 blocks ==8108== total heap usage: 1,914,391 allocs, 1,856,126 frees, 256,196,075 bytes allocated ==8108== ==8108== LEAK SUMMARY: ==8108== definitely lost: 0 bytes in 0 blocks ==8108== indirectly lost: 0 bytes in 0 blocks ==8108== possibly lost: 960 bytes in 3 blocks ==8108== still reachable: 6,307,180 bytes in 48,039 blocks ==8108== of which reachable via heuristic: ==8108== length64 : 6,000 bytes in 99 blocks ==8108== newarray : 6,392 bytes in 54 blocks ==8108== suppressed: 641,438 bytes in 9,374 blocks ==8108== Reachable blocks (those to which a pointer was found) are not shown. ==8108== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8108== ==8108== For counts of detected and suppressed errors, rerun with: -v ==8108== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8183== Memcheck, a memory error detector ==8183== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8183== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8183== Command: ./client-test Client::Sync::eds_contact::testLargeObject ==8183== Parent PID: 8108 ==8183== ==8187== Memcheck, a memory error detector ==8187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8187== Command: ./client-test Client::Sync::eds_contact::testOneWayFromServer ==8187== Parent PID: 151 ==8187== ==8187== ==8187== HEAP SUMMARY: ==8187== in use at exit: 7,057,107 bytes in 58,238 blocks ==8187== total heap usage: 2,964,813 allocs, 2,906,518 frees, 426,729,665 bytes allocated ==8187== ==8187== LEAK SUMMARY: ==8187== definitely lost: 0 bytes in 0 blocks ==8187== indirectly lost: 0 bytes in 0 blocks ==8187== possibly lost: 960 bytes in 3 blocks ==8187== still reachable: 6,304,826 bytes in 48,002 blocks ==8187== of which reachable via heuristic: ==8187== length64 : 6,000 bytes in 99 blocks ==8187== newarray : 6,392 bytes in 54 blocks ==8187== suppressed: 643,297 bytes in 9,435 blocks ==8187== Reachable blocks (those to which a pointer was found) are not shown. ==8187== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8187== ==8187== For counts of detected and suppressed errors, rerun with: -v ==8187== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8340== Memcheck, a memory error detector ==8340== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8340== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8340== Command: ./client-test Client::Sync::eds_contact::testOneWayFromClient ==8340== Parent PID: 151 ==8340== ==8340== ==8340== HEAP SUMMARY: ==8340== in use at exit: 7,052,339 bytes in 58,126 blocks ==8340== total heap usage: 2,948,688 allocs, 2,890,505 frees, 425,244,638 bytes allocated ==8340== ==8340== LEAK SUMMARY: ==8340== definitely lost: 0 bytes in 0 blocks ==8340== indirectly lost: 0 bytes in 0 blocks ==8340== possibly lost: 960 bytes in 3 blocks ==8340== still reachable: 6,303,450 bytes in 47,987 blocks ==8340== of which reachable via heuristic: ==8340== length64 : 6,000 bytes in 99 blocks ==8340== newarray : 6,392 bytes in 54 blocks ==8340== suppressed: 640,073 bytes in 9,340 blocks ==8340== Reachable blocks (those to which a pointer was found) are not shown. ==8340== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8340== ==8340== For counts of detected and suppressed errors, rerun with: -v ==8340== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8503== Memcheck, a memory error detector ==8503== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8503== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8503== Command: ./client-test Client::Sync::eds_contact::testOneWayFromRemote ==8503== Parent PID: 151 ==8503== ==8503== ==8503== HEAP SUMMARY: ==8503== in use at exit: 7,058,782 bytes in 58,252 blocks ==8503== total heap usage: 2,902,176 allocs, 2,843,867 frees, 422,094,900 bytes allocated ==8503== ==8503== LEAK SUMMARY: ==8503== definitely lost: 0 bytes in 0 blocks ==8503== indirectly lost: 0 bytes in 0 blocks ==8503== possibly lost: 960 bytes in 3 blocks ==8503== still reachable: 6,309,606 bytes in 48,092 blocks ==8503== of which reachable via heuristic: ==8503== length64 : 6,000 bytes in 99 blocks ==8503== newarray : 6,392 bytes in 54 blocks ==8503== suppressed: 640,192 bytes in 9,359 blocks ==8503== Reachable blocks (those to which a pointer was found) are not shown. ==8503== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8503== ==8503== For counts of detected and suppressed errors, rerun with: -v ==8503== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8655== Memcheck, a memory error detector ==8655== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8655== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8655== Command: ./client-test Client::Sync::eds_contact::testOneWayFromLocal ==8655== Parent PID: 151 ==8655== ==8655== ==8655== HEAP SUMMARY: ==8655== in use at exit: 7,058,949 bytes in 58,240 blocks ==8655== total heap usage: 2,947,851 allocs, 2,889,554 frees, 425,214,387 bytes allocated ==8655== ==8655== LEAK SUMMARY: ==8655== definitely lost: 0 bytes in 0 blocks ==8655== indirectly lost: 0 bytes in 0 blocks ==8655== possibly lost: 960 bytes in 3 blocks ==8655== still reachable: 6,308,215 bytes in 48,063 blocks ==8655== of which reachable via heuristic: ==8655== length64 : 6,000 bytes in 99 blocks ==8655== newarray : 6,392 bytes in 54 blocks ==8655== suppressed: 641,918 bytes in 9,378 blocks ==8655== Reachable blocks (those to which a pointer was found) are not shown. ==8655== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8655== ==8655== For counts of detected and suppressed errors, rerun with: -v ==8655== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8817== Memcheck, a memory error detector ==8817== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8817== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8817== Command: ./client-test Client::Sync::eds_event_eds_contact::testDeleteAllRefresh ==8817== Parent PID: 151 ==8817== ==8817== ==8817== HEAP SUMMARY: ==8817== in use at exit: 7,095,127 bytes in 58,772 blocks ==8817== total heap usage: 1,746,059 allocs, 1,687,234 frees, 227,018,286 bytes allocated ==8817== ==8817== LEAK SUMMARY: ==8817== definitely lost: 0 bytes in 0 blocks ==8817== indirectly lost: 0 bytes in 0 blocks ==8817== possibly lost: 1,392 bytes in 4 blocks ==8817== still reachable: 6,237,193 bytes in 48,112 blocks ==8817== of which reachable via heuristic: ==8817== length64 : 6,728 bytes in 107 blocks ==8817== newarray : 6,456 bytes in 58 blocks ==8817== suppressed: 742,590 bytes in 9,800 blocks ==8817== Reachable blocks (those to which a pointer was found) are not shown. ==8817== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8817== ==8817== For counts of detected and suppressed errors, rerun with: -v ==8817== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==894== Memcheck, a memory error detector ==894== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==894== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==894== Command: ./client-test Client::Sync::eds_event::testRefreshFromLocalRestart ==894== Parent PID: 151 ==894== ==894== ==894== HEAP SUMMARY: ==894== in use at exit: 6,997,210 bytes in 57,819 blocks ==894== total heap usage: 1,907,849 allocs, 1,849,976 frees, 274,519,413 bytes allocated ==894== ==894== LEAK SUMMARY: ==894== definitely lost: 0 bytes in 0 blocks ==894== indirectly lost: 0 bytes in 0 blocks ==894== possibly lost: 960 bytes in 3 blocks ==894== still reachable: 6,232,770 bytes in 48,032 blocks ==894== of which reachable via heuristic: ==894== length64 : 6,024 bytes in 99 blocks ==894== newarray : 6,408 bytes in 55 blocks ==894== suppressed: 675,472 bytes in 9,113 blocks ==894== Reachable blocks (those to which a pointer was found) are not shown. ==894== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==894== ==894== For counts of detected and suppressed errors, rerun with: -v ==894== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==8961== Memcheck, a memory error detector ==8961== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8961== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8961== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWaySync ==8961== Parent PID: 151 ==8961== ==8961== ==8961== HEAP SUMMARY: ==8961== in use at exit: 7,031,664 bytes in 58,295 blocks ==8961== total heap usage: 688,753 allocs, 630,407 frees, 98,342,432 bytes allocated ==8961== ==8961== LEAK SUMMARY: ==8961== definitely lost: 0 bytes in 0 blocks ==8961== indirectly lost: 0 bytes in 0 blocks ==8961== possibly lost: 1,392 bytes in 4 blocks ==8961== still reachable: 6,235,758 bytes in 48,089 blocks ==8961== of which reachable via heuristic: ==8961== length64 : 6,688 bytes in 106 blocks ==8961== newarray : 6,456 bytes in 58 blocks ==8961== suppressed: 701,258 bytes in 9,481 blocks ==8961== Reachable blocks (those to which a pointer was found) are not shown. ==8961== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==8961== ==8961== For counts of detected and suppressed errors, rerun with: -v ==8961== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9009== Memcheck, a memory error detector ==9009== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9009== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9009== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowSync ==9009== Parent PID: 151 ==9009== ==9009== ==9009== HEAP SUMMARY: ==9009== in use at exit: 7,022,597 bytes in 58,169 blocks ==9009== total heap usage: 689,577 allocs, 631,357 frees, 98,441,445 bytes allocated ==9009== ==9009== LEAK SUMMARY: ==9009== definitely lost: 0 bytes in 0 blocks ==9009== indirectly lost: 0 bytes in 0 blocks ==9009== possibly lost: 1,392 bytes in 4 blocks ==9009== still reachable: 6,228,994 bytes in 47,993 blocks ==9009== of which reachable via heuristic: ==9009== length64 : 6,688 bytes in 106 blocks ==9009== newarray : 6,456 bytes in 58 blocks ==9009== suppressed: 698,955 bytes in 9,451 blocks ==9009== Reachable blocks (those to which a pointer was found) are not shown. ==9009== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9009== ==9009== For counts of detected and suppressed errors, rerun with: -v ==9009== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9055== Memcheck, a memory error detector ==9055== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9055== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9055== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSync ==9055== Parent PID: 151 ==9055== ==9055== ==9055== HEAP SUMMARY: ==9055== in use at exit: 7,025,124 bytes in 58,187 blocks ==9055== total heap usage: 688,896 allocs, 630,658 frees, 98,432,167 bytes allocated ==9055== ==9055== LEAK SUMMARY: ==9055== definitely lost: 0 bytes in 0 blocks ==9055== indirectly lost: 0 bytes in 0 blocks ==9055== possibly lost: 1,392 bytes in 4 blocks ==9055== still reachable: 6,231,883 bytes in 48,020 blocks ==9055== of which reachable via heuristic: ==9055== length64 : 6,688 bytes in 106 blocks ==9055== newarray : 6,456 bytes in 58 blocks ==9055== suppressed: 698,593 bytes in 9,442 blocks ==9055== Reachable blocks (those to which a pointer was found) are not shown. ==9055== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9055== ==9055== For counts of detected and suppressed errors, rerun with: -v ==9055== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9103== Memcheck, a memory error detector ==9103== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9103== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9103== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSync ==9103== Parent PID: 151 ==9103== ==9103== ==9103== HEAP SUMMARY: ==9103== in use at exit: 7,026,210 bytes in 58,228 blocks ==9103== total heap usage: 688,925 allocs, 630,646 frees, 98,426,048 bytes allocated ==9103== ==9103== LEAK SUMMARY: ==9103== definitely lost: 0 bytes in 0 blocks ==9103== indirectly lost: 0 bytes in 0 blocks ==9103== possibly lost: 1,392 bytes in 4 blocks ==9103== still reachable: 6,231,090 bytes in 48,002 blocks ==9103== of which reachable via heuristic: ==9103== length64 : 6,688 bytes in 106 blocks ==9103== newarray : 6,456 bytes in 58 blocks ==9103== suppressed: 700,472 bytes in 9,501 blocks ==9103== Reachable blocks (those to which a pointer was found) are not shown. ==9103== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9103== ==9103== For counts of detected and suppressed errors, rerun with: -v ==9103== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9150== Memcheck, a memory error detector ==9150== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9150== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9150== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromRemoteSync ==9150== Parent PID: 151 ==9150== ==9150== ==9150== HEAP SUMMARY: ==9150== in use at exit: 7,026,746 bytes in 58,242 blocks ==9150== total heap usage: 689,595 allocs, 631,302 frees, 98,455,823 bytes allocated ==9150== ==9150== LEAK SUMMARY: ==9150== definitely lost: 0 bytes in 0 blocks ==9150== indirectly lost: 0 bytes in 0 blocks ==9150== possibly lost: 1,392 bytes in 4 blocks ==9150== still reachable: 6,231,042 bytes in 48,004 blocks ==9150== of which reachable via heuristic: ==9150== length64 : 6,688 bytes in 106 blocks ==9150== newarray : 6,456 bytes in 58 blocks ==9150== suppressed: 700,888 bytes in 9,511 blocks ==9150== Reachable blocks (those to which a pointer was found) are not shown. ==9150== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9150== ==9150== For counts of detected and suppressed errors, rerun with: -v ==9150== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9197== Memcheck, a memory error detector ==9197== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9197== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9197== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromLocalSync ==9197== Parent PID: 151 ==9197== ==9197== ==9197== HEAP SUMMARY: ==9197== in use at exit: 7,023,303 bytes in 58,155 blocks ==9197== total heap usage: 689,094 allocs, 630,888 frees, 98,432,231 bytes allocated ==9197== ==9197== LEAK SUMMARY: ==9197== definitely lost: 0 bytes in 0 blocks ==9197== indirectly lost: 0 bytes in 0 blocks ==9197== possibly lost: 1,392 bytes in 4 blocks ==9197== still reachable: 6,230,522 bytes in 47,997 blocks ==9197== of which reachable via heuristic: ==9197== length64 : 6,688 bytes in 106 blocks ==9197== newarray : 6,456 bytes in 58 blocks ==9197== suppressed: 698,133 bytes in 9,433 blocks ==9197== Reachable blocks (those to which a pointer was found) are not shown. ==9197== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9197== ==9197== For counts of detected and suppressed errors, rerun with: -v ==9197== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9245== Memcheck, a memory error detector ==9245== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9245== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9245== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==9245== Parent PID: 151 ==9245== ==9245== ==9245== HEAP SUMMARY: ==9245== in use at exit: 2,922,668 bytes in 30,431 blocks ==9245== total heap usage: 403,484 allocs, 373,002 frees, 55,166,238 bytes allocated ==9245== ==9245== LEAK SUMMARY: ==9245== definitely lost: 0 bytes in 0 blocks ==9245== indirectly lost: 0 bytes in 0 blocks ==9245== possibly lost: 1,392 bytes in 4 blocks ==9245== still reachable: 2,225,525 bytes in 21,533 blocks ==9245== of which reachable via heuristic: ==9245== length64 : 5,560 bytes in 88 blocks ==9245== newarray : 6,360 bytes in 52 blocks ==9245== suppressed: 619,759 bytes in 8,318 blocks ==9245== Reachable blocks (those to which a pointer was found) are not shown. ==9245== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9245== ==9245== For counts of detected and suppressed errors, rerun with: -v ==9245== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9278== Memcheck, a memory error detector ==9278== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9278== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9278== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==9278== Parent PID: 9245 ==9278== ==9282== Memcheck, a memory error detector ==9282== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9282== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9282== Command: ./client-test Client::Sync::eds_event_eds_contact::testConversion ==9282== Parent PID: 9245 ==9282== ==9286== Memcheck, a memory error detector ==9286== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9286== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9286== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromServerSemantic ==9286== Parent PID: 151 ==9286== ==9286== ==9286== HEAP SUMMARY: ==9286== in use at exit: 7,078,636 bytes in 58,515 blocks ==9286== total heap usage: 1,601,450 allocs, 1,542,882 frees, 216,999,900 bytes allocated ==9286== ==9286== LEAK SUMMARY: ==9286== definitely lost: 0 bytes in 0 blocks ==9286== indirectly lost: 0 bytes in 0 blocks ==9286== possibly lost: 1,392 bytes in 4 blocks ==9286== still reachable: 6,228,642 bytes in 47,994 blocks ==9286== of which reachable via heuristic: ==9286== length64 : 6,728 bytes in 107 blocks ==9286== newarray : 6,456 bytes in 58 blocks ==9286== suppressed: 734,482 bytes in 9,659 blocks ==9286== Reachable blocks (those to which a pointer was found) are not shown. ==9286== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9286== ==9286== For counts of detected and suppressed errors, rerun with: -v ==9286== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9405== Memcheck, a memory error detector ==9405== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9405== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9405== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshFromClientSemantic ==9405== Parent PID: 151 ==9405== ==9405== ==9405== HEAP SUMMARY: ==9405== in use at exit: 7,088,713 bytes in 58,683 blocks ==9405== total heap usage: 1,999,091 allocs, 1,940,354 frees, 272,690,335 bytes allocated ==9405== ==9405== LEAK SUMMARY: ==9405== definitely lost: 0 bytes in 0 blocks ==9405== indirectly lost: 0 bytes in 0 blocks ==9405== possibly lost: 1,392 bytes in 4 blocks ==9405== still reachable: 6,230,694 bytes in 48,001 blocks ==9405== of which reachable via heuristic: ==9405== length64 : 6,728 bytes in 107 blocks ==9405== newarray : 6,456 bytes in 58 blocks ==9405== suppressed: 742,675 bytes in 9,822 blocks ==9405== Reachable blocks (those to which a pointer was found) are not shown. ==9405== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9405== ==9405== For counts of detected and suppressed errors, rerun with: -v ==9405== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9549== Memcheck, a memory error detector ==9549== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9549== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9549== Command: ./client-test Client::Sync::eds_event_eds_contact::testRefreshStatus ==9549== Parent PID: 151 ==9549== ==9549== ==9549== HEAP SUMMARY: ==9549== in use at exit: 7,079,012 bytes in 58,514 blocks ==9549== total heap usage: 1,298,895 allocs, 1,240,329 frees, 167,848,847 bytes allocated ==9549== ==9549== LEAK SUMMARY: ==9549== definitely lost: 0 bytes in 0 blocks ==9549== indirectly lost: 0 bytes in 0 blocks ==9549== possibly lost: 1,392 bytes in 4 blocks ==9549== still reachable: 6,228,178 bytes in 47,985 blocks ==9549== of which reachable via heuristic: ==9549== length64 : 6,728 bytes in 107 blocks ==9549== newarray : 6,456 bytes in 58 blocks ==9549== suppressed: 735,490 bytes in 9,669 blocks ==9549== Reachable blocks (those to which a pointer was found) are not shown. ==9549== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9549== ==9549== For counts of detected and suppressed errors, rerun with: -v ==9549== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9661== Memcheck, a memory error detector ==9661== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9661== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9661== Command: ./client-test Client::Sync::eds_event_eds_contact::testTwoWayRestart ==9661== Parent PID: 151 ==9661== ==9661== ==9661== HEAP SUMMARY: ==9661== in use at exit: 7,093,364 bytes in 58,742 blocks ==9661== total heap usage: 2,258,176 allocs, 2,199,380 frees, 297,490,990 bytes allocated ==9661== ==9661== LEAK SUMMARY: ==9661== definitely lost: 0 bytes in 0 blocks ==9661== indirectly lost: 0 bytes in 0 blocks ==9661== possibly lost: 1,392 bytes in 4 blocks ==9661== still reachable: 6,235,894 bytes in 48,091 blocks ==9661== of which reachable via heuristic: ==9661== length64 : 6,728 bytes in 107 blocks ==9661== newarray : 6,456 bytes in 58 blocks ==9661== suppressed: 742,126 bytes in 9,791 blocks ==9661== Reachable blocks (those to which a pointer was found) are not shown. ==9661== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9661== ==9661== For counts of detected and suppressed errors, rerun with: -v ==9661== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) ==9867== Memcheck, a memory error detector ==9867== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9867== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9867== Command: ./client-test Client::Sync::eds_event_eds_contact::testSlowRestart ==9867== Parent PID: 151 ==9867== ==9867== ==9867== HEAP SUMMARY: ==9867== in use at exit: 7,090,386 bytes in 58,690 blocks ==9867== total heap usage: 2,271,034 allocs, 2,212,290 frees, 299,067,972 bytes allocated ==9867== ==9867== LEAK SUMMARY: ==9867== definitely lost: 0 bytes in 0 blocks ==9867== indirectly lost: 0 bytes in 0 blocks ==9867== possibly lost: 1,392 bytes in 4 blocks ==9867== still reachable: 6,233,396 bytes in 48,046 blocks ==9867== of which reachable via heuristic: ==9867== length64 : 6,728 bytes in 107 blocks ==9867== newarray : 6,456 bytes in 58 blocks ==9867== suppressed: 741,646 bytes in 9,784 blocks ==9867== Reachable blocks (those to which a pointer was found) are not shown. ==9867== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==9867== ==9867== For counts of detected and suppressed errors, rerun with: -v ==9867== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 70 from 70) valgrindcheck: ./client-test Client::Sync::eds_event Client::Sync::eds_contact Client::Sync::eds_event_eds_contact: final result 0 wrappercheck-117 line 100: RET=0 wrappercheck-117 line 101: set -e wrappercheck-117 line 107: set +x *** killing and waiting for /data/runtests/work/testing-amd64/install/usr/bin/syncevo-http-server wrappercheck-117 line 108: kill -INT -128 wrappercheck-117 line 108: kill -TERM -128 wrappercheck-117 line 108: kill -TERM 128 wrappercheck-117 line 110: KILL_PID=18561 wrappercheck-117 line 115: set +e wrappercheck-117 line 116: wait 128 wrappercheck-117 line 109: perl -e 'sleep(60); kill(9, -128);' wrappercheck-117 line 117: SUBRET=143 wrappercheck-117 line 118: case $SUBRET in wrappercheck-117 line 118: SUBRET=0 wrappercheck-117 line 120: SUBRET=0 wrappercheck-117 line 121: '[' 18561 ']' wwrappercheck-117 line 122: LC_ALL=C wwrappercheck-117 line 122: kill -KILL 18561 wrappercheck-117 line 122: msg= wrappercheck-117 line 123: echo '' wrappercheck-117 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 18561 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-117 line 127: echo '' wrappercheck-117 line 129: wait 18561 wrappercheck-117 line 131: set -e wrappercheck-117 line 132: '[' 0 = 0 ']' wrappercheck-117 line 133: RET=0 wrappercheck-117 line 136: exit 0 wrappercheck-110 line 100: RET=0 wrappercheck-110 line 101: set -e wrappercheck-110 line 107: set +x *** killing and waiting for /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh wrappercheck-110 line 108: kill -INT -114 wrappercheck-110 line 108: kill -TERM -114 wrappercheck-110 line 108: kill -TERM 114 wrappercheck-110 line 110: KILL_PID=18567 wrappercheck-110 line 115: set +e wrappercheck-110 line 116: wait 114 wrappercheck-110 line 109: perl -e 'sleep(60); kill(9, -114);' wrappercheck-110 line 117: SUBRET=143 wrappercheck-110 line 118: case $SUBRET in wrappercheck-110 line 118: SUBRET=0 wrappercheck-110 line 120: SUBRET=0 wrappercheck-110 line 121: '[' 18567 ']' wwrappercheck-110 line 122: LC_ALL=C wwrappercheck-110 line 122: kill -KILL 18567 wrappercheck-110 line 122: msg= wrappercheck-110 line 123: echo '' wrappercheck-110 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 18567 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-110 line 127: echo '' wrappercheck-110 line 129: wait 18567 wrappercheck-110 line 131: set -e wrappercheck-110 line 132: '[' 0 = 0 ']' wrappercheck-110 line 133: RET=0 wrappercheck-110 line 136: exit 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=18572 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: '[' 18572 ']' wwrappercheck-105 line 122: LC_ALL=C wwrappercheck-105 line 122: kill -KILL 18572 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: 18572 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-105 line 127: echo '' wrappercheck-105 line 129: wait 18572 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=18577 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: '[' 18577 ']' wwrappercheck-85 line 122: LC_ALL=C wwrappercheck-85 line 122: kill -KILL 18577 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: 18577 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-85 line 127: echo '' wrappercheck-85 line 129: wait 18577 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-26 line 100: RET=0 wrappercheck-26 line 101: set -e wrappercheck-26 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-26 line 108: kill -INT -30 wrappercheck-26 line 108: kill -TERM -30 wrappercheck-26 line 108: kill -TERM 30 wrappercheck-26 line 110: KILL_PID=18582 wrappercheck-26 line 115: set +e wrappercheck-26 line 116: wait 30 wrappercheck-26 line 117: SUBRET=143 wrappercheck-26 line 118: case $SUBRET in wrappercheck-26 line 118: SUBRET=0 wrappercheck-26 line 120: SUBRET=0 wrappercheck-26 line 121: '[' 18582 ']' wrappercheck-26 line 109: perl -e 'sleep(60); kill(9, -30);' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 18582 wrappercheck-26 line 122: msg= wrappercheck-26 line 123: echo '' wrappercheck-26 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 18582 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 18582 wrappercheck-26 line 131: set -e wrappercheck-26 line 132: '[' 0 = 0 ']' wrappercheck-26 line 133: RET=0 wrappercheck-26 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=18587 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 22 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 18587 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 18587 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 18587 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 18587 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 line 136: exit 0 dbus-session.sh: program returned 0 dbus-session.sh: final result 0 dbus-session.sh 1: killing keyring pid 14 dbus-session.sh 1: killing system bus daemon 4 dbus-session.sh 1: killing session bus daemon 8 dbus-session.sh 1: removing XDG_RUNTIME_DIR=/tmp/tmp.R6JSU499Ts Fri Jan 5 21:31:19 2018 UTC (+ 15243.3s / 15491.0s) === cleaning up ===