runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 4.1s / 112.5s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 0.2s / 112.6s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/prebuilt-testing-amd64/home/eds/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/eds/data runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) === starting eds === runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/7-eds, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/7-eds runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/eds (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/eds) runtests.py-2275 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/eds; 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/prebuilt-testing-amd64/home/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r eds -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/eds -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution ) Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['eds'] === Fri Jan 5 15:31:07 2018 UTC (+ 0.1s / 0.1s) property changed: status = acquired Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 15:45:57 2018 UTC (+ 889.3s / 889.3s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.be9dlZl2Hy/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 35 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 33 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 33 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 32 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 31 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=18 wrappercheck-15 line 73: PIDS+=18 wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 70: exec wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 18 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-21 line 16: PIDS= wrappercheck-21 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-21 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-21 line 21: DAEMON_LOG= wrappercheck-21 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-21 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-21 line 25: declare -a BACKGROUND wrappercheck-21 line 26: declare -a ENV wrappercheck-21 line 28: '[' 29 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 31: shift wrappercheck-21 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 27 -gt 1 ']' wrappercheck-21 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 43: shift wrappercheck-21 line 44: DAEMON_SLEEP=5 wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 25 -gt 1 ']' wrappercheck-21 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 35: shift wrappercheck-21 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-21 line 53: shift wrappercheck-21 line 28: '[' 23 -gt 1 ']' wrappercheck-21 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 29: case "$1" in wrappercheck-21 line 50: break wrappercheck-21 line 56: '[' 23 -gt 1 ']' wrappercheck-21 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-21 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-21 line 58: shift wrappercheck-21 line 56: '[' 22 -gt 1 ']' wrappercheck-21 line 56: '[' -- '!=' -- ']' wrappercheck-21 line 60: shift wrappercheck-21 line 62: '[' evolution-source-registry.log ']' wrappercheck-21 line 62: '[' '' ']' wrappercheck-21 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-21 line 72: BACKGROUND_PID=25 wrappercheck-21 line 73: PIDS+=25 wrappercheck-21 line 75: '[' evolution-source-registry.log ']' wrappercheck-21 line 75: '[' '' ']' wrappercheck-21 line 70: set -x wrappercheck-21 line 70: exec wrappercheck-21 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-21 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-21 line 93: kill -0 25 wrappercheck-21 line 94: set +e wrappercheck-21 line 95: '[' 5 ']' wrappercheck-21 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-21 line 97: sleep 5 wrappercheck-21 line 99: set -x wrappercheck-21 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./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: '[' 20 -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: '[' 18 -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: '[' 16 -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: '[' 16 -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: '[' 15 -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: '[' 14 -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 75: '[' evolution-addressbook-factory.log ']' 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 70: set -x wrappercheck-80 line 70: exec 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 /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./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: '[' 12 -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: '[' 10 -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: '[' 10 -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: '[' 9 -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: '[' 8 -gt 1 ']' wrappercheck-100 line 56: '[' -- '!=' -- ']' wrappercheck-100 line 60: shift wrappercheck-100 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 62: '[' '' ']' wrappercheck-100 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-100 line 72: BACKGROUND_PID=102 wrappercheck-100 line 73: PIDS+=102 wrappercheck-100 line 70: set -x wrappercheck-100 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 75: '[' '' ']' wrappercheck-100 line 70: exec wrappercheck-100 line 84: '[' '' ']' wrappercheck-100 line 93: kill -0 102 wrappercheck-100 line 94: set +e wrappercheck-100 line 95: '[' '' ']' wrappercheck-100 line 99: set -x wrappercheck-100 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution + 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: '[' 5 -gt 1 ']' wrappercheck-105 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-105 line 29: case "$1" in wrappercheck-105 line 50: break wrappercheck-105 line 56: '[' 5 -gt 1 ']' wrappercheck-105 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-105 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-105 line 58: shift wrappercheck-105 line 56: '[' 4 -gt 1 ']' wrappercheck-105 line 56: '[' -- '!=' -- ']' wrappercheck-105 line 60: shift wrappercheck-105 line 62: '[' '' ']' wrappercheck-105 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-105 line 72: BACKGROUND_PID=109 wrappercheck-105 line 73: PIDS+=109 wrappercheck-105 line 70: set -x wrappercheck-105 line 70: exec wrappercheck-105 line 75: '[' '' ']' wrappercheck-105 line 84: '[' '' ']' wrappercheck-105 line 93: kill -0 109 wrappercheck-105 line 94: set +e wrappercheck-105 line 95: '[' '' ']' wrappercheck-105 line 99: set -x wrappercheck-105 line 99: /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution + case $TEST in + case $TEST in + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-contacts=eds_contact + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + grep Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts 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 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ sed -e 's/.*=//' ++ echo evolution-tasks=eds_task + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + 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-105 line 100: RET=0 wrappercheck-105 line 101: set -e wrappercheck-105 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-105 line 108: kill -INT -109 wrappercheck-105 line 108: kill -TERM -109 wrappercheck-105 line 108: kill -TERM 109 wrappercheck-105 line 110: KILL_PID=193 wrappercheck-105 line 109: perl -e 'sleep(60); kill(9, -109);' wrappercheck-105 line 115: set +e wrappercheck-105 line 116: wait 109 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: '[' 193 ']' wwrappercheck-105 line 122: LC_ALL=C wwrappercheck-105 line 122: kill -KILL 193 wrappercheck-105 line 122: msg= wrappercheck-105 line 123: grep -q 'No such process' wrappercheck-105 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 193 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-105 line 127: echo '' wrappercheck-105 line 129: wait 193 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-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=198 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: '[' 198 ']' wwrappercheck-100 line 122: LC_ALL=C wwrappercheck-100 line 122: kill -KILL 198 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: 198 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-100 line 127: echo '' wrappercheck-100 line 129: wait 198 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=203 wrappercheck-80 line 115: set +e wrappercheck-80 line 116: wait 82 wrappercheck-80 line 117: SUBRET=143 wrappercheck-80 line 118: case $SUBRET in wrappercheck-80 line 118: SUBRET=0 wrappercheck-80 line 120: SUBRET=0 wrappercheck-80 line 121: '[' 203 ']' wrappercheck-80 line 109: perl -e 'sleep(60); kill(9, -82);' wwrappercheck-80 line 122: LC_ALL=C wwrappercheck-80 line 122: kill -KILL 203 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: 203 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-80 line 127: echo '' wrappercheck-80 line 129: wait 203 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-21 line 100: RET=0 wrappercheck-21 line 101: set -e wrappercheck-21 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-21 line 108: kill -INT -25 wrappercheck-21 line 108: kill -TERM -25 wrappercheck-21 line 108: kill -TERM 25 wrappercheck-21 line 110: KILL_PID=208 wrappercheck-21 line 109: perl -e 'sleep(60); kill(9, -25);' wrappercheck-21 line 115: set +e wrappercheck-21 line 116: wait 25 wrappercheck-21 line 117: SUBRET=143 wrappercheck-21 line 118: case $SUBRET in wrappercheck-21 line 118: SUBRET=0 wrappercheck-21 line 120: SUBRET=0 wrappercheck-21 line 121: '[' 208 ']' wwrappercheck-21 line 122: LC_ALL=C wwrappercheck-21 line 122: kill -KILL 208 wrappercheck-21 line 122: msg= wrappercheck-21 line 123: echo '' wrappercheck-21 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 208 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-21 line 127: echo '' wrappercheck-21 line 129: wait 208 wrappercheck-21 line 131: set -e wrappercheck-21 line 132: '[' 0 = 0 ']' wrappercheck-21 line 133: RET=0 wrappercheck-21 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -18 wrappercheck-15 line 108: kill -TERM -18 wrappercheck-15 line 108: kill -TERM 18 wrappercheck-15 line 110: KILL_PID=213 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 18 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -18);' 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: '[' 213 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 213 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: grep -q 'No such process' wrappercheck-15 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 213 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 213 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.be9dlZl2Hy Fri Jan 5 15:46:05 2018 UTC (+ 8.0s / 897.4s) === cleaning up === runtests.py-2275 Fri Jan 5 15:46:05 2018 UTC (+ 897.4s / 1010.0s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/eds; 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/prebuilt-testing-amd64/home/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/eds/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r eds -- env VALGRIND_LEAK_CHECK_SKIP=akonadi_control,.bin.sh.-c. VALGRIND_LEAK_CHECK_ONLY_FIRST=1 'VALGRIND_ARGS=--show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=eds CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/eds -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo ) Fri Jan 5 15:46:05 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['eds'] === Fri Jan 5 15:46:05 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:46:05 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:46:05 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:47:01 2018 UTC (+ 56.5s / 56.5s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.MA34HXFd1P/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: '[' 37 -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: '[' 35 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 35 -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: '[' 34 -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: '[' 33 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 70: set -x wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 70: exec 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/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 31 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 29 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 27 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 25 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 25 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 24 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-84 line 16: PIDS= wrappercheck-84 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-84 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-84 line 21: DAEMON_LOG= wrappercheck-84 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-84 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-84 line 25: declare -a BACKGROUND wrappercheck-84 line 26: declare -a ENV wrappercheck-84 line 28: '[' 22 -gt 1 ']' wrappercheck-84 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-84 line 29: case "$1" in wrappercheck-84 line 31: shift wrappercheck-84 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-84 line 53: shift wrappercheck-84 line 28: '[' 20 -gt 1 ']' wrappercheck-84 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-84 line 29: case "$1" in wrappercheck-84 line 35: shift wrappercheck-84 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-84 line 53: shift wrappercheck-84 line 28: '[' 18 -gt 1 ']' wrappercheck-84 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-84 line 29: case "$1" in wrappercheck-84 line 50: break wrappercheck-84 line 56: '[' 18 -gt 1 ']' wrappercheck-84 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-84 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-84 line 58: shift wrappercheck-84 line 56: '[' 17 -gt 1 ']' wrappercheck-84 line 56: '[' --keep-running '!=' -- ']' wrappercheck-84 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-84 line 58: shift wrappercheck-84 line 56: '[' 16 -gt 1 ']' wrappercheck-84 line 56: '[' -- '!=' -- ']' wrappercheck-84 line 60: shift wrappercheck-84 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-84 line 62: '[' '' ']' wrappercheck-84 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-84 line 72: BACKGROUND_PID=86 wrappercheck-84 line 73: PIDS+=86 wrappercheck-84 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-84 line 75: '[' '' ']' wrappercheck-84 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-84 line 70: set -x wrappercheck-84 line 70: exec wrappercheck-84 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-84 line 93: kill -0 86 wrappercheck-84 line 94: set +e wrappercheck-84 line 95: '[' '' ']' wrappercheck-84 line 99: set -x wrappercheck-84 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-104 line 16: PIDS= wrappercheck-104 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-104 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-104 line 21: DAEMON_LOG= wrappercheck-104 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-104 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-104 line 25: declare -a BACKGROUND wrappercheck-104 line 26: declare -a ENV wrappercheck-104 line 28: '[' 14 -gt 1 ']' wrappercheck-104 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-104 line 29: case "$1" in wrappercheck-104 line 31: shift wrappercheck-104 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-104 line 53: shift wrappercheck-104 line 28: '[' 12 -gt 1 ']' wrappercheck-104 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-104 line 29: case "$1" in wrappercheck-104 line 50: break wrappercheck-104 line 56: '[' 12 -gt 1 ']' wrappercheck-104 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-104 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-104 line 58: shift wrappercheck-104 line 56: '[' 11 -gt 1 ']' wrappercheck-104 line 56: '[' --keep-running '!=' -- ']' wrappercheck-104 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-104 line 58: shift wrappercheck-104 line 56: '[' 10 -gt 1 ']' wrappercheck-104 line 56: '[' -- '!=' -- ']' wrappercheck-104 line 60: shift wrappercheck-104 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-104 line 62: '[' '' ']' wrappercheck-104 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-104 line 72: BACKGROUND_PID=106 wrappercheck-104 line 73: PIDS+=106 wrappercheck-104 line 70: set -x wrappercheck-104 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-104 line 75: '[' '' ']' wrappercheck-104 line 70: exec wrappercheck-104 line 84: '[' '' ']' wrappercheck-104 line 93: kill -0 106 wrappercheck-104 line 94: set +e wrappercheck-104 line 95: '[' '' ']' wrappercheck-104 line 99: set -x wrappercheck-104 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-testing-amd64/tests/eds/valgrind.p111.c%p.out ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo Client::Source::eds_event::testOpen okay Client::Source::eds_event::testIterateTwice okay Client::Source::eds_event::testDelete404 okay Client::Source::eds_event::testReadItem404 okay Client::Source::eds_event::testSimpleInsert okay Client::Source::eds_event::testLocalDeleteAll okay Client::Source::eds_event::testComplexInsert okay Client::Source::eds_event::testInsertTwice okay Client::Source::eds_event::testLocalUpdate okay Client::Source::eds_event::testChanges okay Client::Source::eds_event::testChangesMultiCycles okay Client::Source::eds_event::testImport okay Client::Source::eds_event::testImportDelete okay Client::Source::eds_event::testRemoveProperties okay Client::Source::eds_event::testManyChanges okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsSingle404 okay Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsMany404 okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild okay Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent okay Client::Source::eds_task::testOpen okay Client::Source::eds_task::testIterateTwice okay Client::Source::eds_task::testDelete404 okay Client::Source::eds_task::testReadItem404 okay Client::Source::eds_task::testSimpleInsert okay Client::Source::eds_task::testLocalDeleteAll okay Client::Source::eds_task::testComplexInsert okay Client::Source::eds_task::testInsertTwice okay Client::Source::eds_task::testLocalUpdate okay Client::Source::eds_task::testChanges okay Client::Source::eds_task::testChangesMultiCycles okay Client::Source::eds_task::testImport okay Client::Source::eds_task::testImportDelete okay Client::Source::eds_task::testRemoveProperties okay Client::Source::eds_task::testManyChanges okay Client::Source::eds_contact::testOpen okay Client::Source::eds_contact::testIterateTwice okay Client::Source::eds_contact::testDelete404 okay Client::Source::eds_contact::testReadItem404 okay Client::Source::eds_contact::testSimpleInsert okay Client::Source::eds_contact::testLocalDeleteAll okay Client::Source::eds_contact::testComplexInsert okay Client::Source::eds_contact::testLocalUpdate okay Client::Source::eds_contact::testChanges okay Client::Source::eds_contact::testChangesMultiCycles okay Client::Source::eds_contact::testImport okay Client::Source::eds_contact::testImportDelete okay Client::Source::eds_contact::testRemoveProperties okay Client::Source::eds_contact::testManyChanges okay Client::Source::eds_memo::testOpen okay Client::Source::eds_memo::testIterateTwice okay Client::Source::eds_memo::testDelete404 okay Client::Source::eds_memo::testReadItem404 okay Client::Source::eds_memo::testSimpleInsert okay Client::Source::eds_memo::testLocalDeleteAll okay Client::Source::eds_memo::testComplexInsert okay Client::Source::eds_memo::testLocalUpdate okay Client::Source::eds_memo::testChanges okay Client::Source::eds_memo::testChangesMultiCycles okay Client::Source::eds_memo::testImport okay Client::Source::eds_memo::testImportDelete okay Client::Source::eds_memo::testRemoveProperties okay Client::Source::eds_memo::testManyChanges okay OKvalgrindcheck (111): './client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo' (115): returned 0 ==1003== Memcheck, a memory error detector ==1003== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1003== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1003== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild ==1003== Parent PID: 959 ==1003== ==1023== Memcheck, a memory error detector ==1023== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1023== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1023== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild ==1023== Parent PID: 115 ==1023== ==1023== ==1023== HEAP SUMMARY: ==1023== in use at exit: 1,113,214 bytes in 12,231 blocks ==1023== total heap usage: 375,577 allocs, 363,346 frees, 29,915,647 bytes allocated ==1023== ==1023== LEAK SUMMARY: ==1023== definitely lost: 0 bytes in 0 blocks ==1023== indirectly lost: 0 bytes in 0 blocks ==1023== possibly lost: 528 bytes in 2 blocks ==1023== still reachable: 438,076 bytes in 3,301 blocks ==1023== of which reachable via heuristic: ==1023== length64 : 4,688 bytes in 74 blocks ==1023== newarray : 6,312 bytes in 49 blocks ==1023== suppressed: 605,538 bytes in 8,401 blocks ==1023== Rerun with --leak-check=full to see details of leaked memory ==1023== ==1023== For counts of detected and suppressed errors, rerun with: -v ==1023== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1074== Memcheck, a memory error detector ==1074== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1074== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1074== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild ==1074== Parent PID: 1023 ==1074== ==1094== Memcheck, a memory error detector ==1094== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1094== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1094== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==1094== Parent PID: 115 ==1094== ==1094== ==1094== HEAP SUMMARY: ==1094== in use at exit: 1,116,257 bytes in 12,283 blocks ==1094== total heap usage: 321,221 allocs, 308,938 frees, 27,395,100 bytes allocated ==1094== ==1094== LEAK SUMMARY: ==1094== definitely lost: 0 bytes in 0 blocks ==1094== indirectly lost: 0 bytes in 0 blocks ==1094== possibly lost: 528 bytes in 2 blocks ==1094== still reachable: 438,902 bytes in 3,321 blocks ==1094== of which reachable via heuristic: ==1094== length64 : 4,688 bytes in 74 blocks ==1094== newarray : 6,312 bytes in 49 blocks ==1094== suppressed: 607,755 bytes in 8,433 blocks ==1094== Rerun with --leak-check=full to see details of leaked memory ==1094== ==1094== For counts of detected and suppressed errors, rerun with: -v ==1094== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1145== Memcheck, a memory error detector ==1145== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1145== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1145== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==1145== Parent PID: 1094 ==1145== ==115== Memcheck, a memory error detector ==115== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==115== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==115== Command: ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo ==115== Parent PID: 111 ==115== ==115== ==115== HEAP SUMMARY: ==115== in use at exit: 431,144 bytes in 4,126 blocks ==115== total heap usage: 144,794 allocs, 140,668 frees, 17,650,496 bytes allocated ==115== ==115== LEAK SUMMARY: ==115== definitely lost: 0 bytes in 0 blocks ==115== indirectly lost: 0 bytes in 0 blocks ==115== possibly lost: 96 bytes in 1 blocks ==115== still reachable: 214,181 bytes in 678 blocks ==115== of which reachable via heuristic: ==115== newarray : 5,800 bytes in 17 blocks ==115== suppressed: 216,867 bytes in 3,447 blocks ==115== Rerun with --leak-check=full to see details of leaked memory ==115== ==115== For counts of detected and suppressed errors, rerun with: -v ==115== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1153== Memcheck, a memory error detector ==1153== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1153== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1153== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent ==1153== Parent PID: 115 ==1153== ==1153== ==1153== HEAP SUMMARY: ==1153== in use at exit: 1,115,071 bytes in 12,259 blocks ==1153== total heap usage: 360,050 allocs, 347,791 frees, 29,050,591 bytes allocated ==1153== ==1153== LEAK SUMMARY: ==1153== definitely lost: 0 bytes in 0 blocks ==1153== indirectly lost: 0 bytes in 0 blocks ==1153== possibly lost: 528 bytes in 2 blocks ==1153== still reachable: 437,820 bytes in 3,297 blocks ==1153== of which reachable via heuristic: ==1153== length64 : 4,688 bytes in 74 blocks ==1153== newarray : 6,312 bytes in 49 blocks ==1153== suppressed: 607,651 bytes in 8,433 blocks ==1153== Rerun with --leak-check=full to see details of leaked memory ==1153== ==1153== For counts of detected and suppressed errors, rerun with: -v ==1153== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1200== Memcheck, a memory error detector ==1200== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1200== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1200== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent ==1200== Parent PID: 1153 ==1200== ==121== Memcheck, a memory error detector ==121== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==121== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==121== Command: ./client-test Client::Source::eds_event::testOpen ==121== Parent PID: 115 ==121== ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 953,789 bytes in 9,681 blocks ==121== total heap usage: 147,918 allocs, 138,237 frees, 14,147,075 bytes allocated ==121== ==121== LEAK SUMMARY: ==121== definitely lost: 0 bytes in 0 blocks ==121== indirectly lost: 0 bytes in 0 blocks ==121== possibly lost: 528 bytes in 2 blocks ==121== still reachable: 280,131 bytes in 740 blocks ==121== of which reachable via heuristic: ==121== length64 : 4,448 bytes in 71 blocks ==121== newarray : 6,296 bytes in 48 blocks ==121== suppressed: 605,506 bytes in 8,428 blocks ==121== Rerun with --leak-check=full to see details of leaked memory ==121== ==121== For counts of detected and suppressed errors, rerun with: -v ==121== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1220== Memcheck, a memory error detector ==1220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1220== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1220== Parent PID: 115 ==1220== ==1220== ==1220== HEAP SUMMARY: ==1220== in use at exit: 1,110,708 bytes in 12,218 blocks ==1220== total heap usage: 385,457 allocs, 373,239 frees, 31,171,588 bytes allocated ==1220== ==1220== LEAK SUMMARY: ==1220== definitely lost: 0 bytes in 0 blocks ==1220== indirectly lost: 0 bytes in 0 blocks ==1220== possibly lost: 528 bytes in 2 blocks ==1220== still reachable: 434,035 bytes in 3,233 blocks ==1220== of which reachable via heuristic: ==1220== length64 : 4,688 bytes in 74 blocks ==1220== newarray : 6,312 bytes in 49 blocks ==1220== suppressed: 607,073 bytes in 8,456 blocks ==1220== Rerun with --leak-check=full to see details of leaked memory ==1220== ==1220== For counts of detected and suppressed errors, rerun with: -v ==1220== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1263== Memcheck, a memory error detector ==1263== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1263== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1263== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1263== Parent PID: 1220 ==1263== ==1281== Memcheck, a memory error detector ==1281== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1281== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1281== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1281== Parent PID: 1220 ==1281== ==1301== Memcheck, a memory error detector ==1301== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1301== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1301== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1301== Parent PID: 115 ==1301== ==1301== ==1301== HEAP SUMMARY: ==1301== in use at exit: 1,108,669 bytes in 12,162 blocks ==1301== total heap usage: 405,349 allocs, 393,187 frees, 32,287,735 bytes allocated ==1301== ==1301== LEAK SUMMARY: ==1301== definitely lost: 0 bytes in 0 blocks ==1301== indirectly lost: 0 bytes in 0 blocks ==1301== possibly lost: 528 bytes in 2 blocks ==1301== still reachable: 433,851 bytes in 3,233 blocks ==1301== of which reachable via heuristic: ==1301== length64 : 4,688 bytes in 74 blocks ==1301== newarray : 6,312 bytes in 49 blocks ==1301== suppressed: 605,050 bytes in 8,398 blocks ==1301== Rerun with --leak-check=full to see details of leaked memory ==1301== ==1301== For counts of detected and suppressed errors, rerun with: -v ==1301== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1352== Memcheck, a memory error detector ==1352== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1352== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1352== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1352== Parent PID: 1301 ==1352== ==1370== Memcheck, a memory error detector ==1370== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1370== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1370== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1370== Parent PID: 1301 ==1370== ==1386== Memcheck, a memory error detector ==1386== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1386== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1386== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1386== Parent PID: 115 ==1386== ==1386== ==1386== HEAP SUMMARY: ==1386== in use at exit: 1,115,128 bytes in 12,261 blocks ==1386== total heap usage: 423,908 allocs, 411,647 frees, 33,365,167 bytes allocated ==1386== ==1386== LEAK SUMMARY: ==1386== definitely lost: 0 bytes in 0 blocks ==1386== indirectly lost: 0 bytes in 0 blocks ==1386== possibly lost: 528 bytes in 2 blocks ==1386== still reachable: 437,940 bytes in 3,300 blocks ==1386== of which reachable via heuristic: ==1386== length64 : 4,688 bytes in 74 blocks ==1386== newarray : 6,312 bytes in 49 blocks ==1386== suppressed: 607,588 bytes in 8,432 blocks ==1386== Rerun with --leak-check=full to see details of leaked memory ==1386== ==1386== For counts of detected and suppressed errors, rerun with: -v ==1386== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1438== Memcheck, a memory error detector ==1438== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1438== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1438== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1438== Parent PID: 1386 ==1438== ==144== Memcheck, a memory error detector ==144== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==144== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==144== Command: ./client-test Client::Source::eds_event::testIterateTwice ==144== Parent PID: 115 ==144== ==144== ==144== HEAP SUMMARY: ==144== in use at exit: 956,823 bytes in 9,731 blocks ==144== total heap usage: 151,877 allocs, 142,146 frees, 14,441,800 bytes allocated ==144== ==144== LEAK SUMMARY: ==144== definitely lost: 0 bytes in 0 blocks ==144== indirectly lost: 0 bytes in 0 blocks ==144== possibly lost: 528 bytes in 2 blocks ==144== still reachable: 281,815 bytes in 804 blocks ==144== of which reachable via heuristic: ==144== length64 : 4,688 bytes in 74 blocks ==144== newarray : 6,312 bytes in 49 blocks ==144== suppressed: 605,408 bytes in 8,398 blocks ==144== Rerun with --leak-check=full to see details of leaked memory ==144== ==144== For counts of detected and suppressed errors, rerun with: -v ==144== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1456== Memcheck, a memory error detector ==1456== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1456== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1456== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1456== Parent PID: 1386 ==1456== ==1476== Memcheck, a memory error detector ==1476== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1476== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1476== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1476== Parent PID: 115 ==1476== ==1476== ==1476== HEAP SUMMARY: ==1476== in use at exit: 1,111,088 bytes in 12,230 blocks ==1476== total heap usage: 385,463 allocs, 373,233 frees, 31,163,385 bytes allocated ==1476== ==1476== LEAK SUMMARY: ==1476== definitely lost: 0 bytes in 0 blocks ==1476== indirectly lost: 0 bytes in 0 blocks ==1476== possibly lost: 528 bytes in 2 blocks ==1476== still reachable: 434,435 bytes in 3,241 blocks ==1476== of which reachable via heuristic: ==1476== length64 : 4,688 bytes in 74 blocks ==1476== newarray : 6,312 bytes in 49 blocks ==1476== suppressed: 606,885 bytes in 8,458 blocks ==1476== Rerun with --leak-check=full to see details of leaked memory ==1476== ==1476== For counts of detected and suppressed errors, rerun with: -v ==1476== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1519== Memcheck, a memory error detector ==1519== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1519== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1519== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1519== Parent PID: 1476 ==1519== ==1541== Memcheck, a memory error detector ==1541== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1541== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1541== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1541== Parent PID: 1476 ==1541== ==1557== Memcheck, a memory error detector ==1557== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1557== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1557== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1557== Parent PID: 115 ==1557== ==1557== ==1557== HEAP SUMMARY: ==1557== in use at exit: 1,113,338 bytes in 12,233 blocks ==1557== total heap usage: 384,946 allocs, 372,713 frees, 31,110,612 bytes allocated ==1557== ==1557== LEAK SUMMARY: ==1557== definitely lost: 0 bytes in 0 blocks ==1557== indirectly lost: 0 bytes in 0 blocks ==1557== possibly lost: 528 bytes in 2 blocks ==1557== still reachable: 436,486 bytes in 3,277 blocks ==1557== of which reachable via heuristic: ==1557== length64 : 4,688 bytes in 74 blocks ==1557== newarray : 6,312 bytes in 49 blocks ==1557== suppressed: 607,252 bytes in 8,427 blocks ==1557== Rerun with --leak-check=full to see details of leaked memory ==1557== ==1557== For counts of detected and suppressed errors, rerun with: -v ==1557== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1600== Memcheck, a memory error detector ==1600== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1600== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1600== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1600== Parent PID: 1557 ==1600== ==1622== Memcheck, a memory error detector ==1622== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1622== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1622== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1622== Parent PID: 1557 ==1622== ==1638== Memcheck, a memory error detector ==1638== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1638== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1638== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1638== Parent PID: 115 ==1638== ==1638== ==1638== HEAP SUMMARY: ==1638== in use at exit: 1,113,311 bytes in 12,233 blocks ==1638== total heap usage: 360,127 allocs, 347,894 frees, 29,089,563 bytes allocated ==1638== ==1638== LEAK SUMMARY: ==1638== definitely lost: 0 bytes in 0 blocks ==1638== indirectly lost: 0 bytes in 0 blocks ==1638== possibly lost: 528 bytes in 2 blocks ==1638== still reachable: 438,036 bytes in 3,301 blocks ==1638== of which reachable via heuristic: ==1638== length64 : 4,688 bytes in 74 blocks ==1638== newarray : 6,312 bytes in 49 blocks ==1638== suppressed: 605,675 bytes in 8,403 blocks ==1638== Rerun with --leak-check=full to see details of leaked memory ==1638== ==1638== For counts of detected and suppressed errors, rerun with: -v ==1638== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==164== Memcheck, a memory error detector ==164== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==164== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==164== Command: ./client-test Client::Source::eds_event::testDelete404 ==164== Parent PID: 115 ==164== ==164== ==164== HEAP SUMMARY: ==164== in use at exit: 958,824 bytes in 9,762 blocks ==164== total heap usage: 152,264 allocs, 142,502 frees, 14,455,271 bytes allocated ==164== ==164== LEAK SUMMARY: ==164== definitely lost: 0 bytes in 0 blocks ==164== indirectly lost: 0 bytes in 0 blocks ==164== possibly lost: 528 bytes in 2 blocks ==164== still reachable: 281,559 bytes in 800 blocks ==164== of which reachable via heuristic: ==164== length64 : 4,688 bytes in 74 blocks ==164== newarray : 6,312 bytes in 49 blocks ==164== suppressed: 607,665 bytes in 8,433 blocks ==164== Rerun with --leak-check=full to see details of leaked memory ==164== ==164== For counts of detected and suppressed errors, rerun with: -v ==164== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1682== Memcheck, a memory error detector ==1682== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1682== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1682== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1682== Parent PID: 1638 ==1682== ==1700== Memcheck, a memory error detector ==1700== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1700== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1700== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1700== Parent PID: 1638 ==1700== ==1716== Memcheck, a memory error detector ==1716== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1716== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1716== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1716== Parent PID: 115 ==1716== ==1716== ==1716== HEAP SUMMARY: ==1716== in use at exit: 1,111,513 bytes in 12,205 blocks ==1716== total heap usage: 360,487 allocs, 348,282 frees, 29,061,996 bytes allocated ==1716== ==1716== LEAK SUMMARY: ==1716== definitely lost: 0 bytes in 0 blocks ==1716== indirectly lost: 0 bytes in 0 blocks ==1716== possibly lost: 528 bytes in 2 blocks ==1716== still reachable: 436,518 bytes in 3,277 blocks ==1716== of which reachable via heuristic: ==1716== length64 : 4,688 bytes in 74 blocks ==1716== newarray : 6,312 bytes in 49 blocks ==1716== suppressed: 605,395 bytes in 8,399 blocks ==1716== Rerun with --leak-check=full to see details of leaked memory ==1716== ==1716== For counts of detected and suppressed errors, rerun with: -v ==1716== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1759== Memcheck, a memory error detector ==1759== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1759== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1759== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1759== Parent PID: 1716 ==1759== ==1777== Memcheck, a memory error detector ==1777== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1777== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1777== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1777== Parent PID: 1716 ==1777== ==1793== Memcheck, a memory error detector ==1793== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1793== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1793== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==1793== Parent PID: 115 ==1793== ==1793== ==1793== HEAP SUMMARY: ==1793== in use at exit: 1,111,590 bytes in 12,203 blocks ==1793== total heap usage: 272,706 allocs, 260,503 frees, 23,322,093 bytes allocated ==1793== ==1793== LEAK SUMMARY: ==1793== definitely lost: 0 bytes in 0 blocks ==1793== indirectly lost: 0 bytes in 0 blocks ==1793== possibly lost: 528 bytes in 2 blocks ==1793== still reachable: 434,970 bytes in 3,252 blocks ==1793== of which reachable via heuristic: ==1793== length64 : 4,688 bytes in 74 blocks ==1793== newarray : 6,312 bytes in 49 blocks ==1793== suppressed: 607,020 bytes in 8,422 blocks ==1793== Rerun with --leak-check=full to see details of leaked memory ==1793== ==1793== For counts of detected and suppressed errors, rerun with: -v ==1793== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1836== Memcheck, a memory error detector ==1836== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1836== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1836== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==1836== Parent PID: 1793 ==1836== ==184== Memcheck, a memory error detector ==184== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==184== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==184== Command: ./client-test Client::Source::eds_event::testReadItem404 ==184== Parent PID: 115 ==184== ==184== ==184== HEAP SUMMARY: ==184== in use at exit: 954,064 bytes in 9,690 blocks ==184== total heap usage: 152,307 allocs, 142,617 frees, 14,455,705 bytes allocated ==184== ==184== LEAK SUMMARY: ==184== definitely lost: 0 bytes in 0 blocks ==184== indirectly lost: 0 bytes in 0 blocks ==184== possibly lost: 528 bytes in 2 blocks ==184== still reachable: 277,579 bytes in 733 blocks ==184== of which reachable via heuristic: ==184== length64 : 4,688 bytes in 74 blocks ==184== newarray : 6,312 bytes in 49 blocks ==184== suppressed: 606,885 bytes in 8,428 blocks ==184== Rerun with --leak-check=full to see details of leaked memory ==184== ==184== For counts of detected and suppressed errors, rerun with: -v ==184== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1845== Memcheck, a memory error detector ==1845== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1845== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1845== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1845== Parent PID: 115 ==1845== ==1845== ==1845== HEAP SUMMARY: ==1845== in use at exit: 1,108,530 bytes in 12,147 blocks ==1845== total heap usage: 435,887 allocs, 423,740 frees, 35,367,701 bytes allocated ==1845== ==1845== LEAK SUMMARY: ==1845== definitely lost: 0 bytes in 0 blocks ==1845== indirectly lost: 0 bytes in 0 blocks ==1845== possibly lost: 528 bytes in 2 blocks ==1845== still reachable: 433,335 bytes in 3,228 blocks ==1845== of which reachable via heuristic: ==1845== length64 : 4,688 bytes in 74 blocks ==1845== newarray : 6,312 bytes in 49 blocks ==1845== suppressed: 605,595 bytes in 8,390 blocks ==1845== Rerun with --leak-check=full to see details of leaked memory ==1845== ==1845== For counts of detected and suppressed errors, rerun with: -v ==1845== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1897== Parent PID: 1845 ==1897== ==1915== Memcheck, a memory error detector ==1915== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1915== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1915== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1915== Parent PID: 1845 ==1915== ==1935== Memcheck, a memory error detector ==1935== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1935== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1935== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1935== Parent PID: 115 ==1935== ==1935== ==1935== HEAP SUMMARY: ==1935== in use at exit: 1,107,108 bytes in 12,132 blocks ==1935== total heap usage: 436,462 allocs, 424,330 frees, 35,405,496 bytes allocated ==1935== ==1935== LEAK SUMMARY: ==1935== definitely lost: 0 bytes in 0 blocks ==1935== indirectly lost: 0 bytes in 0 blocks ==1935== possibly lost: 528 bytes in 2 blocks ==1935== still reachable: 433,587 bytes in 3,231 blocks ==1935== of which reachable via heuristic: ==1935== length64 : 4,688 bytes in 74 blocks ==1935== newarray : 6,312 bytes in 49 blocks ==1935== suppressed: 603,753 bytes in 8,370 blocks ==1935== Rerun with --leak-check=full to see details of leaked memory ==1935== ==1935== For counts of detected and suppressed errors, rerun with: -v ==1935== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1987== Memcheck, a memory error detector ==1987== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1987== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1987== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1987== Parent PID: 1935 ==1987== ==2005== Memcheck, a memory error detector ==2005== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2005== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2005== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==2005== Parent PID: 1935 ==2005== ==2025== Memcheck, a memory error detector ==2025== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2025== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2025== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsSingle404 ==2025== Parent PID: 115 ==2025== ==2025== ==2025== HEAP SUMMARY: ==2025== in use at exit: 1,111,566 bytes in 12,203 blocks ==2025== total heap usage: 239,686 allocs, 227,483 frees, 20,142,083 bytes allocated ==2025== ==2025== LEAK SUMMARY: ==2025== definitely lost: 0 bytes in 0 blocks ==2025== indirectly lost: 0 bytes in 0 blocks ==2025== possibly lost: 528 bytes in 2 blocks ==2025== still reachable: 434,970 bytes in 3,252 blocks ==2025== of which reachable via heuristic: ==2025== length64 : 4,688 bytes in 74 blocks ==2025== newarray : 6,312 bytes in 49 blocks ==2025== suppressed: 606,996 bytes in 8,422 blocks ==2025== Rerun with --leak-check=full to see details of leaked memory ==2025== ==2025== For counts of detected and suppressed errors, rerun with: -v ==2025== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==204== Memcheck, a memory error detector ==204== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==204== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==204== Command: ./client-test Client::Source::eds_event::testSimpleInsert ==204== Parent PID: 115 ==204== ==204== ==204== HEAP SUMMARY: ==204== in use at exit: 942,661 bytes in 9,499 blocks ==204== total heap usage: 173,361 allocs, 163,862 frees, 15,680,605 bytes allocated ==204== ==204== LEAK SUMMARY: ==204== definitely lost: 0 bytes in 0 blocks ==204== indirectly lost: 0 bytes in 0 blocks ==204== possibly lost: 528 bytes in 2 blocks ==204== still reachable: 274,987 bytes in 722 blocks ==204== of which reachable via heuristic: ==204== length64 : 4,688 bytes in 74 blocks ==204== newarray : 6,312 bytes in 49 blocks ==204== suppressed: 597,906 bytes in 8,246 blocks ==204== Rerun with --leak-check=full to see details of leaked memory ==204== ==204== For counts of detected and suppressed errors, rerun with: -v ==204== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2062== Memcheck, a memory error detector ==2062== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2062== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2062== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsMany404 ==2062== Parent PID: 115 ==2062== ==2062== ==2062== HEAP SUMMARY: ==2062== in use at exit: 1,105,555 bytes in 12,105 blocks ==2062== total heap usage: 287,140 allocs, 275,035 frees, 23,516,737 bytes allocated ==2062== ==2062== LEAK SUMMARY: ==2062== definitely lost: 0 bytes in 0 blocks ==2062== indirectly lost: 0 bytes in 0 blocks ==2062== possibly lost: 528 bytes in 2 blocks ==2062== still reachable: 432,451 bytes in 3,226 blocks ==2062== of which reachable via heuristic: ==2062== length64 : 4,688 bytes in 74 blocks ==2062== newarray : 6,312 bytes in 49 blocks ==2062== suppressed: 603,336 bytes in 8,348 blocks ==2062== Rerun with --leak-check=full to see details of leaked memory ==2062== ==2062== For counts of detected and suppressed errors, rerun with: -v ==2062== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2106== Memcheck, a memory error detector ==2106== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2106== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2106== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent ==2106== Parent PID: 115 ==2106== ==2106== ==2106== HEAP SUMMARY: ==2106== in use at exit: 1,105,172 bytes in 12,092 blocks ==2106== total heap usage: 329,418 allocs, 317,326 frees, 26,000,235 bytes allocated ==2106== ==2106== LEAK SUMMARY: ==2106== definitely lost: 0 bytes in 0 blocks ==2106== indirectly lost: 0 bytes in 0 blocks ==2106== possibly lost: 528 bytes in 2 blocks ==2106== still reachable: 432,147 bytes in 3,220 blocks ==2106== of which reachable via heuristic: ==2106== length64 : 4,688 bytes in 74 blocks ==2106== newarray : 6,312 bytes in 49 blocks ==2106== suppressed: 603,425 bytes in 8,343 blocks ==2106== Rerun with --leak-check=full to see details of leaked memory ==2106== ==2106== For counts of detected and suppressed errors, rerun with: -v ==2106== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2149== Memcheck, a memory error detector ==2149== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2149== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2149== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent ==2149== Parent PID: 2106 ==2149== ==2169== Memcheck, a memory error detector ==2169== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2169== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2169== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild ==2169== Parent PID: 115 ==2169== ==2169== ==2169== HEAP SUMMARY: ==2169== in use at exit: 1,113,291 bytes in 12,234 blocks ==2169== total heap usage: 326,162 allocs, 313,928 frees, 25,790,279 bytes allocated ==2169== ==2169== LEAK SUMMARY: ==2169== definitely lost: 0 bytes in 0 blocks ==2169== indirectly lost: 0 bytes in 0 blocks ==2169== possibly lost: 528 bytes in 2 blocks ==2169== still reachable: 437,940 bytes in 3,299 blocks ==2169== of which reachable via heuristic: ==2169== length64 : 4,688 bytes in 74 blocks ==2169== newarray : 6,312 bytes in 49 blocks ==2169== suppressed: 605,751 bytes in 8,406 blocks ==2169== Rerun with --leak-check=full to see details of leaked memory ==2169== ==2169== For counts of detected and suppressed errors, rerun with: -v ==2169== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2212== Memcheck, a memory error detector ==2212== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2212== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2212== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild ==2212== Parent PID: 2169 ==2212== ==2232== Memcheck, a memory error detector ==2232== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2232== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2232== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==2232== Parent PID: 115 ==2232== ==2232== ==2232== HEAP SUMMARY: ==2232== in use at exit: 1,116,674 bytes in 12,299 blocks ==2232== total heap usage: 376,416 allocs, 364,117 frees, 29,999,008 bytes allocated ==2232== ==2232== LEAK SUMMARY: ==2232== definitely lost: 0 bytes in 0 blocks ==2232== indirectly lost: 0 bytes in 0 blocks ==2232== possibly lost: 528 bytes in 2 blocks ==2232== still reachable: 439,127 bytes in 3,326 blocks ==2232== of which reachable via heuristic: ==2232== length64 : 4,688 bytes in 74 blocks ==2232== newarray : 6,312 bytes in 49 blocks ==2232== suppressed: 607,779 bytes in 8,442 blocks ==2232== Rerun with --leak-check=full to see details of leaked memory ==2232== ==2232== For counts of detected and suppressed errors, rerun with: -v ==2232== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==228== Memcheck, a memory error detector ==228== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==228== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==228== Command: ./client-test Client::Source::eds_event::testLocalDeleteAll ==228== Parent PID: 115 ==228== ==228== ==228== HEAP SUMMARY: ==228== in use at exit: 952,319 bytes in 9,652 blocks ==228== total heap usage: 214,815 allocs, 205,163 frees, 18,066,734 bytes allocated ==228== ==228== LEAK SUMMARY: ==228== definitely lost: 0 bytes in 0 blocks ==228== indirectly lost: 0 bytes in 0 blocks ==228== possibly lost: 528 bytes in 2 blocks ==228== still reachable: 276,971 bytes in 728 blocks ==228== of which reachable via heuristic: ==228== length64 : 4,688 bytes in 74 blocks ==228== newarray : 6,312 bytes in 49 blocks ==228== suppressed: 605,748 bytes in 8,395 blocks ==228== Rerun with --leak-check=full to see details of leaked memory ==228== ==228== For counts of detected and suppressed errors, rerun with: -v ==228== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2283== Memcheck, a memory error detector ==2283== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2283== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2283== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==2283== Parent PID: 2232 ==2283== ==2303== Memcheck, a memory error detector ==2303== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2303== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2303== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==2303== Parent PID: 115 ==2303== ==2303== ==2303== HEAP SUMMARY: ==2303== in use at exit: 1,108,022 bytes in 12,148 blocks ==2303== total heap usage: 322,573 allocs, 310,425 frees, 27,494,815 bytes allocated ==2303== ==2303== LEAK SUMMARY: ==2303== definitely lost: 0 bytes in 0 blocks ==2303== indirectly lost: 0 bytes in 0 blocks ==2303== possibly lost: 528 bytes in 2 blocks ==2303== still reachable: 433,631 bytes in 3,230 blocks ==2303== of which reachable via heuristic: ==2303== length64 : 4,688 bytes in 74 blocks ==2303== newarray : 6,312 bytes in 49 blocks ==2303== suppressed: 604,791 bytes in 8,389 blocks ==2303== Rerun with --leak-check=full to see details of leaked memory ==2303== ==2303== For counts of detected and suppressed errors, rerun with: -v ==2303== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==2355== Parent PID: 2303 ==2355== ==2363== Memcheck, a memory error detector ==2363== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2363== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2363== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==2363== Parent PID: 115 ==2363== ==2363== ==2363== HEAP SUMMARY: ==2363== in use at exit: 1,111,354 bytes in 12,203 blocks ==2363== total heap usage: 361,676 allocs, 349,473 frees, 29,168,568 bytes allocated ==2363== ==2363== LEAK SUMMARY: ==2363== definitely lost: 0 bytes in 0 blocks ==2363== indirectly lost: 0 bytes in 0 blocks ==2363== possibly lost: 528 bytes in 2 blocks ==2363== still reachable: 434,874 bytes in 3,250 blocks ==2363== of which reachable via heuristic: ==2363== length64 : 4,688 bytes in 74 blocks ==2363== newarray : 6,312 bytes in 49 blocks ==2363== suppressed: 606,880 bytes in 8,424 blocks ==2363== Rerun with --leak-check=full to see details of leaked memory ==2363== ==2363== For counts of detected and suppressed errors, rerun with: -v ==2363== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2410== Memcheck, a memory error detector ==2410== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2410== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2410== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==2410== Parent PID: 2363 ==2410== ==2430== Memcheck, a memory error detector ==2430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2430== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2430== Parent PID: 115 ==2430== ==2430== ==2430== HEAP SUMMARY: ==2430== in use at exit: 1,111,252 bytes in 12,231 blocks ==2430== total heap usage: 386,593 allocs, 374,362 frees, 31,274,512 bytes allocated ==2430== ==2430== LEAK SUMMARY: ==2430== definitely lost: 0 bytes in 0 blocks ==2430== indirectly lost: 0 bytes in 0 blocks ==2430== possibly lost: 528 bytes in 2 blocks ==2430== still reachable: 434,427 bytes in 3,241 blocks ==2430== of which reachable via heuristic: ==2430== length64 : 4,688 bytes in 74 blocks ==2430== newarray : 6,312 bytes in 49 blocks ==2430== suppressed: 607,057 bytes in 8,459 blocks ==2430== Rerun with --leak-check=full to see details of leaked memory ==2430== ==2430== For counts of detected and suppressed errors, rerun with: -v ==2430== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2473== Memcheck, a memory error detector ==2473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2473== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2473== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2473== Parent PID: 2430 ==2473== ==2491== Memcheck, a memory error detector ==2491== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2491== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2491== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2491== Parent PID: 2430 ==2491== ==2512== Memcheck, a memory error detector ==2512== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2512== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2512== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2512== Parent PID: 115 ==2512== ==2512== ==2512== HEAP SUMMARY: ==2512== in use at exit: 1,114,454 bytes in 12,258 blocks ==2512== total heap usage: 406,365 allocs, 394,107 frees, 32,395,106 bytes allocated ==2512== ==2512== LEAK SUMMARY: ==2512== definitely lost: 0 bytes in 0 blocks ==2512== indirectly lost: 0 bytes in 0 blocks ==2512== possibly lost: 528 bytes in 2 blocks ==2512== still reachable: 439,063 bytes in 3,323 blocks ==2512== of which reachable via heuristic: ==2512== length64 : 4,688 bytes in 74 blocks ==2512== newarray : 6,312 bytes in 49 blocks ==2512== suppressed: 605,791 bytes in 8,406 blocks ==2512== Rerun with --leak-check=full to see details of leaked memory ==2512== ==2512== For counts of detected and suppressed errors, rerun with: -v ==2512== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2563== Memcheck, a memory error detector ==2563== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2563== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2563== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2563== Parent PID: 2512 ==2563== ==2581== Memcheck, a memory error detector ==2581== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2581== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2581== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2581== Parent PID: 2512 ==2581== ==2597== Memcheck, a memory error detector ==2597== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2597== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2597== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2597== Parent PID: 115 ==2597== ==2597== ==2597== HEAP SUMMARY: ==2597== in use at exit: 1,113,222 bytes in 12,230 blocks ==2597== total heap usage: 425,150 allocs, 412,920 frees, 33,473,497 bytes allocated ==2597== ==2597== LEAK SUMMARY: ==2597== definitely lost: 0 bytes in 0 blocks ==2597== indirectly lost: 0 bytes in 0 blocks ==2597== possibly lost: 528 bytes in 2 blocks ==2597== still reachable: 436,454 bytes in 3,276 blocks ==2597== of which reachable via heuristic: ==2597== length64 : 4,688 bytes in 74 blocks ==2597== newarray : 6,312 bytes in 49 blocks ==2597== suppressed: 607,168 bytes in 8,425 blocks ==2597== Rerun with --leak-check=full to see details of leaked memory ==2597== ==2597== For counts of detected and suppressed errors, rerun with: -v ==2597== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==260== Memcheck, a memory error detector ==260== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==260== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==260== Command: ./client-test Client::Source::eds_event::testComplexInsert ==260== Parent PID: 115 ==260== ==260== ==260== HEAP SUMMARY: ==260== in use at exit: 954,394 bytes in 9,707 blocks ==260== total heap usage: 231,820 allocs, 222,113 frees, 19,032,426 bytes allocated ==260== ==260== LEAK SUMMARY: ==260== definitely lost: 0 bytes in 0 blocks ==260== indirectly lost: 0 bytes in 0 blocks ==260== possibly lost: 528 bytes in 2 blocks ==260== still reachable: 277,171 bytes in 732 blocks ==260== of which reachable via heuristic: ==260== length64 : 4,688 bytes in 74 blocks ==260== newarray : 6,312 bytes in 49 blocks ==260== suppressed: 607,623 bytes in 8,446 blocks ==260== Rerun with --leak-check=full to see details of leaked memory ==260== ==260== For counts of detected and suppressed errors, rerun with: -v ==260== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2649== Memcheck, a memory error detector ==2649== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2649== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2649== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2649== Parent PID: 2597 ==2649== ==2667== Memcheck, a memory error detector ==2667== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2667== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2667== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2667== Parent PID: 2597 ==2667== ==2687== Memcheck, a memory error detector ==2687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2687== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2687== Parent PID: 115 ==2687== ==2687== ==2687== HEAP SUMMARY: ==2687== in use at exit: 1,113,286 bytes in 12,232 blocks ==2687== total heap usage: 386,120 allocs, 373,888 frees, 31,231,650 bytes allocated ==2687== ==2687== LEAK SUMMARY: ==2687== definitely lost: 0 bytes in 0 blocks ==2687== indirectly lost: 0 bytes in 0 blocks ==2687== possibly lost: 528 bytes in 2 blocks ==2687== still reachable: 436,398 bytes in 3,275 blocks ==2687== of which reachable via heuristic: ==2687== length64 : 4,688 bytes in 74 blocks ==2687== newarray : 6,312 bytes in 49 blocks ==2687== suppressed: 607,288 bytes in 8,428 blocks ==2687== Rerun with --leak-check=full to see details of leaked memory ==2687== ==2687== For counts of detected and suppressed errors, rerun with: -v ==2687== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2730== Memcheck, a memory error detector ==2730== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2730== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2730== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2730== Parent PID: 2687 ==2730== ==2752== Memcheck, a memory error detector ==2752== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2752== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2752== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2752== Parent PID: 2687 ==2752== ==2768== Memcheck, a memory error detector ==2768== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2768== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2768== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2768== Parent PID: 115 ==2768== ==2768== ==2768== HEAP SUMMARY: ==2768== in use at exit: 1,113,243 bytes in 12,232 blocks ==2768== total heap usage: 385,949 allocs, 373,717 frees, 31,186,403 bytes allocated ==2768== ==2768== LEAK SUMMARY: ==2768== definitely lost: 0 bytes in 0 blocks ==2768== indirectly lost: 0 bytes in 0 blocks ==2768== possibly lost: 528 bytes in 2 blocks ==2768== still reachable: 437,916 bytes in 3,298 blocks ==2768== of which reachable via heuristic: ==2768== length64 : 4,688 bytes in 74 blocks ==2768== newarray : 6,312 bytes in 49 blocks ==2768== suppressed: 605,727 bytes in 8,405 blocks ==2768== Rerun with --leak-check=full to see details of leaked memory ==2768== ==2768== For counts of detected and suppressed errors, rerun with: -v ==2768== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2811== Memcheck, a memory error detector ==2811== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2811== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2811== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2811== Parent PID: 2768 ==2811== ==2833== Memcheck, a memory error detector ==2833== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2833== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2833== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2833== Parent PID: 2768 ==2833== ==2849== Memcheck, a memory error detector ==2849== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2849== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2849== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2849== Parent PID: 115 ==2849== ==2849== ==2849== HEAP SUMMARY: ==2849== in use at exit: 1,109,523 bytes in 12,188 blocks ==2849== total heap usage: 362,185 allocs, 349,997 frees, 29,208,532 bytes allocated ==2849== ==2849== LEAK SUMMARY: ==2849== definitely lost: 0 bytes in 0 blocks ==2849== indirectly lost: 0 bytes in 0 blocks ==2849== possibly lost: 528 bytes in 2 blocks ==2849== still reachable: 433,171 bytes in 3,232 blocks ==2849== of which reachable via heuristic: ==2849== length64 : 4,688 bytes in 74 blocks ==2849== newarray : 6,312 bytes in 49 blocks ==2849== suppressed: 606,584 bytes in 8,425 blocks ==2849== Rerun with --leak-check=full to see details of leaked memory ==2849== ==2849== For counts of detected and suppressed errors, rerun with: -v ==2849== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2892== Memcheck, a memory error detector ==2892== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2892== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2892== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2892== Parent PID: 2849 ==2892== ==2910== Memcheck, a memory error detector ==2910== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2910== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2910== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2910== Parent PID: 2849 ==2910== ==2926== Memcheck, a memory error detector ==2926== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2926== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2926== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2926== Parent PID: 115 ==2926== ==2926== ==2926== HEAP SUMMARY: ==2926== in use at exit: 1,109,919 bytes in 12,178 blocks ==2926== total heap usage: 361,276 allocs, 349,098 frees, 29,134,798 bytes allocated ==2926== ==2926== LEAK SUMMARY: ==2926== definitely lost: 0 bytes in 0 blocks ==2926== indirectly lost: 0 bytes in 0 blocks ==2926== possibly lost: 528 bytes in 2 blocks ==2926== still reachable: 433,599 bytes in 3,230 blocks ==2926== of which reachable via heuristic: ==2926== length64 : 4,688 bytes in 74 blocks ==2926== newarray : 6,312 bytes in 49 blocks ==2926== suppressed: 606,720 bytes in 8,419 blocks ==2926== Rerun with --leak-check=full to see details of leaked memory ==2926== ==2926== For counts of detected and suppressed errors, rerun with: -v ==2926== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==296== Memcheck, a memory error detector ==296== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==296== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==296== Command: ./client-test Client::Source::eds_event::testInsertTwice ==296== Parent PID: 115 ==296== ==296== ==296== HEAP SUMMARY: ==296== in use at exit: 947,843 bytes in 9,608 blocks ==296== total heap usage: 194,622 allocs, 185,014 frees, 16,920,540 bytes allocated ==296== ==296== LEAK SUMMARY: ==296== definitely lost: 0 bytes in 0 blocks ==296== indirectly lost: 0 bytes in 0 blocks ==296== possibly lost: 528 bytes in 2 blocks ==296== still reachable: 275,395 bytes in 730 blocks ==296== of which reachable via heuristic: ==296== length64 : 4,688 bytes in 74 blocks ==296== newarray : 6,312 bytes in 49 blocks ==296== suppressed: 602,680 bytes in 8,347 blocks ==296== Rerun with --leak-check=full to see details of leaked memory ==296== ==296== For counts of detected and suppressed errors, rerun with: -v ==296== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2969== Memcheck, a memory error detector ==2969== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2969== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2969== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2969== Parent PID: 2926 ==2969== ==2987== Memcheck, a memory error detector ==2987== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2987== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2987== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2987== Parent PID: 2926 ==2987== ==3003== Memcheck, a memory error detector ==3003== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3003== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3003== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==3003== Parent PID: 115 ==3003== ==3003== ==3003== HEAP SUMMARY: ==3003== in use at exit: 1,115,100 bytes in 12,262 blocks ==3003== total heap usage: 273,319 allocs, 261,057 frees, 23,374,849 bytes allocated ==3003== ==3003== LEAK SUMMARY: ==3003== definitely lost: 0 bytes in 0 blocks ==3003== indirectly lost: 0 bytes in 0 blocks ==3003== possibly lost: 528 bytes in 2 blocks ==3003== still reachable: 437,940 bytes in 3,300 blocks ==3003== of which reachable via heuristic: ==3003== length64 : 4,688 bytes in 74 blocks ==3003== newarray : 6,312 bytes in 49 blocks ==3003== suppressed: 607,560 bytes in 8,433 blocks ==3003== Rerun with --leak-check=full to see details of leaked memory ==3003== ==3003== For counts of detected and suppressed errors, rerun with: -v ==3003== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3046== Memcheck, a memory error detector ==3046== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3046== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3046== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==3046== Parent PID: 3003 ==3046== ==3054== Memcheck, a memory error detector ==3054== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3054== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3054== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3054== Parent PID: 115 ==3054== ==3054== ==3054== HEAP SUMMARY: ==3054== in use at exit: 1,111,525 bytes in 12,206 blocks ==3054== total heap usage: 437,309 allocs, 425,103 frees, 35,500,248 bytes allocated ==3054== ==3054== LEAK SUMMARY: ==3054== definitely lost: 0 bytes in 0 blocks ==3054== indirectly lost: 0 bytes in 0 blocks ==3054== possibly lost: 528 bytes in 2 blocks ==3054== still reachable: 436,518 bytes in 3,277 blocks ==3054== of which reachable via heuristic: ==3054== length64 : 4,688 bytes in 74 blocks ==3054== newarray : 6,312 bytes in 49 blocks ==3054== suppressed: 605,407 bytes in 8,400 blocks ==3054== Rerun with --leak-check=full to see details of leaked memory ==3054== ==3054== For counts of detected and suppressed errors, rerun with: -v ==3054== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3105== Memcheck, a memory error detector ==3105== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3105== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3105== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3105== Parent PID: 3054 ==3105== ==3123== Memcheck, a memory error detector ==3123== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3123== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3123== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3123== Parent PID: 3054 ==3123== ==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::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3143== Parent PID: 115 ==3143== ==3143== ==3143== HEAP SUMMARY: ==3143== in use at exit: 1,115,004 bytes in 12,258 blocks ==3143== total heap usage: 438,367 allocs, 426,109 frees, 35,577,570 bytes allocated ==3143== ==3143== LEAK SUMMARY: ==3143== definitely lost: 0 bytes in 0 blocks ==3143== indirectly lost: 0 bytes in 0 blocks ==3143== possibly lost: 528 bytes in 2 blocks ==3143== still reachable: 437,972 bytes in 3,300 blocks ==3143== of which reachable via heuristic: ==3143== length64 : 4,688 bytes in 74 blocks ==3143== newarray : 6,312 bytes in 49 blocks ==3143== suppressed: 607,432 bytes in 8,429 blocks ==3143== Rerun with --leak-check=full to see details of leaked memory ==3143== ==3143== For counts of detected and suppressed errors, rerun with: -v ==3143== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3194== Memcheck, a memory error detector ==3194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3194== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3194== Parent PID: 3143 ==3194== ==3212== Memcheck, a memory error detector ==3212== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3212== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3212== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3212== Parent PID: 3143 ==3212== ==3232== Memcheck, a memory error detector ==3232== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3232== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3232== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent ==3232== Parent PID: 115 ==3232== ==3232== ==3232== HEAP SUMMARY: ==3232== in use at exit: 955,428 bytes in 9,712 blocks ==3232== total heap usage: 314,298 allocs, 304,586 frees, 23,823,605 bytes allocated ==3232== ==3232== LEAK SUMMARY: ==3232== definitely lost: 0 bytes in 0 blocks ==3232== indirectly lost: 0 bytes in 0 blocks ==3232== possibly lost: 528 bytes in 2 blocks ==3232== still reachable: 278,758 bytes in 757 blocks ==3232== of which reachable via heuristic: ==3232== length64 : 4,688 bytes in 74 blocks ==3232== newarray : 6,312 bytes in 49 blocks ==3232== suppressed: 607,070 bytes in 8,426 blocks ==3232== Rerun with --leak-check=full to see details of leaked memory ==3232== ==3232== For counts of detected and suppressed errors, rerun with: -v ==3232== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==324== Memcheck, a memory error detector ==324== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==324== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==324== Command: ./client-test Client::Source::eds_event::testLocalUpdate ==324== Parent PID: 115 ==324== ==324== ==324== HEAP SUMMARY: ==324== in use at exit: 954,498 bytes in 9,702 blocks ==324== total heap usage: 254,337 allocs, 244,635 frees, 20,370,660 bytes allocated ==324== ==324== LEAK SUMMARY: ==324== definitely lost: 0 bytes in 0 blocks ==324== indirectly lost: 0 bytes in 0 blocks ==324== possibly lost: 528 bytes in 2 blocks ==324== still reachable: 277,619 bytes in 734 blocks ==324== of which reachable via heuristic: ==324== length64 : 4,688 bytes in 74 blocks ==324== newarray : 6,312 bytes in 49 blocks ==324== suppressed: 607,279 bytes in 8,439 blocks ==324== Rerun with --leak-check=full to see details of leaked memory ==324== ==324== For counts of detected and suppressed errors, rerun with: -v ==324== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3275== Memcheck, a memory error detector ==3275== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3275== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3275== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent ==3275== Parent PID: 3232 ==3275== ==3295== Memcheck, a memory error detector ==3295== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3295== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3295== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild ==3295== Parent PID: 115 ==3295== ==3295== ==3295== HEAP SUMMARY: ==3295== in use at exit: 955,364 bytes in 9,710 blocks ==3295== total heap usage: 314,118 allocs, 304,408 frees, 23,794,837 bytes allocated ==3295== ==3295== LEAK SUMMARY: ==3295== definitely lost: 0 bytes in 0 blocks ==3295== indirectly lost: 0 bytes in 0 blocks ==3295== possibly lost: 528 bytes in 2 blocks ==3295== still reachable: 278,750 bytes in 757 blocks ==3295== of which reachable via heuristic: ==3295== length64 : 4,688 bytes in 74 blocks ==3295== newarray : 6,312 bytes in 49 blocks ==3295== suppressed: 607,014 bytes in 8,424 blocks ==3295== Rerun with --leak-check=full to see details of leaked memory ==3295== ==3295== For counts of detected and suppressed errors, rerun with: -v ==3295== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3338== Memcheck, a memory error detector ==3338== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3338== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3338== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild ==3338== Parent PID: 3295 ==3338== ==3358== Memcheck, a memory error detector ==3358== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3358== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3358== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild ==3358== Parent PID: 115 ==3358== ==3358== ==3358== HEAP SUMMARY: ==3358== in use at exit: 959,481 bytes in 9,779 blocks ==3358== total heap usage: 357,263 allocs, 347,484 frees, 26,329,451 bytes allocated ==3358== ==3358== LEAK SUMMARY: ==3358== definitely lost: 0 bytes in 0 blocks ==3358== indirectly lost: 0 bytes in 0 blocks ==3358== possibly lost: 528 bytes in 2 blocks ==3358== still reachable: 282,072 bytes in 811 blocks ==3358== of which reachable via heuristic: ==3358== length64 : 4,688 bytes in 74 blocks ==3358== newarray : 6,312 bytes in 49 blocks ==3358== suppressed: 607,641 bytes in 8,437 blocks ==3358== Rerun with --leak-check=full to see details of leaked memory ==3358== ==3358== For counts of detected and suppressed errors, rerun with: -v ==3358== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3409== Memcheck, a memory error detector ==3409== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3409== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3409== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild ==3409== Parent PID: 3358 ==3409== ==3430== Memcheck, a memory error detector ==3430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3430== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==3430== Parent PID: 115 ==3430== ==3430== ==3430== HEAP SUMMARY: ==3430== in use at exit: 954,435 bytes in 9,722 blocks ==3430== total heap usage: 298,706 allocs, 288,984 frees, 22,910,455 bytes allocated ==3430== ==3430== LEAK SUMMARY: ==3430== definitely lost: 0 bytes in 0 blocks ==3430== indirectly lost: 0 bytes in 0 blocks ==3430== possibly lost: 528 bytes in 2 blocks ==3430== still reachable: 277,919 bytes in 740 blocks ==3430== of which reachable via heuristic: ==3430== length64 : 4,688 bytes in 74 blocks ==3430== newarray : 6,312 bytes in 49 blocks ==3430== suppressed: 606,916 bytes in 8,453 blocks ==3430== Rerun with --leak-check=full to see details of leaked memory ==3430== ==3430== For counts of detected and suppressed errors, rerun with: -v ==3430== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3482== Memcheck, a memory error detector ==3482== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3482== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3482== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==3482== Parent PID: 3430 ==3482== ==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::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent ==3491== Parent PID: 115 ==3491== ==3491== ==3491== HEAP SUMMARY: ==3491== in use at exit: 952,739 bytes in 9,668 blocks ==3491== total heap usage: 342,443 allocs, 332,775 frees, 25,485,110 bytes allocated ==3491== ==3491== LEAK SUMMARY: ==3491== definitely lost: 0 bytes in 0 blocks ==3491== indirectly lost: 0 bytes in 0 blocks ==3491== possibly lost: 528 bytes in 2 blocks ==3491== still reachable: 277,279 bytes in 735 blocks ==3491== of which reachable via heuristic: ==3491== length64 : 4,688 bytes in 74 blocks ==3491== newarray : 6,312 bytes in 49 blocks ==3491== suppressed: 605,692 bytes in 8,402 blocks ==3491== Rerun with --leak-check=full to see details of leaked memory ==3491== ==3491== For counts of detected and suppressed errors, rerun with: -v ==3491== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3538== Memcheck, a memory error detector ==3538== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3538== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3538== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent ==3538== Parent PID: 3491 ==3538== ==3558== Memcheck, a memory error detector ==3558== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3558== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3558== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3558== Parent PID: 115 ==3558== ==3558== ==3558== HEAP SUMMARY: ==3558== in use at exit: 943,766 bytes in 9,524 blocks ==3558== total heap usage: 362,961 allocs, 353,437 frees, 26,713,524 bytes allocated ==3558== ==3558== LEAK SUMMARY: ==3558== definitely lost: 0 bytes in 0 blocks ==3558== indirectly lost: 0 bytes in 0 blocks ==3558== possibly lost: 528 bytes in 2 blocks ==3558== still reachable: 275,187 bytes in 728 blocks ==3558== of which reachable via heuristic: ==3558== length64 : 4,688 bytes in 74 blocks ==3558== newarray : 6,312 bytes in 49 blocks ==3558== suppressed: 598,811 bytes in 8,265 blocks ==3558== Rerun with --leak-check=full to see details of leaked memory ==3558== ==3558== For counts of detected and suppressed errors, rerun with: -v ==3558== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3601== Memcheck, a memory error detector ==3601== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3601== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3601== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3601== Parent PID: 3558 ==3601== ==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::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3619== Parent PID: 3558 ==3619== ==3639== Memcheck, a memory error detector ==3639== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3639== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3639== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3639== Parent PID: 115 ==3639== ==3639== ==3639== HEAP SUMMARY: ==3639== in use at exit: 955,380 bytes in 9,710 blocks ==3639== total heap usage: 382,850 allocs, 373,140 frees, 27,832,742 bytes allocated ==3639== ==3639== LEAK SUMMARY: ==3639== definitely lost: 0 bytes in 0 blocks ==3639== indirectly lost: 0 bytes in 0 blocks ==3639== possibly lost: 528 bytes in 2 blocks ==3639== still reachable: 278,822 bytes in 758 blocks ==3639== of which reachable via heuristic: ==3639== length64 : 4,688 bytes in 74 blocks ==3639== newarray : 6,312 bytes in 49 blocks ==3639== suppressed: 606,958 bytes in 8,423 blocks ==3639== Rerun with --leak-check=full to see details of leaked memory ==3639== ==3639== For counts of detected and suppressed errors, rerun with: -v ==3639== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==364== Memcheck, a memory error detector ==364== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==364== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==364== Command: ./client-test Client::Source::eds_event::testChanges ==364== Parent PID: 115 ==364== ==364== ==364== HEAP SUMMARY: ==364== in use at exit: 955,111 bytes in 9,728 blocks ==364== total heap usage: 896,241 allocs, 886,513 frees, 57,380,789 bytes allocated ==364== ==364== LEAK SUMMARY: ==364== definitely lost: 0 bytes in 0 blocks ==364== indirectly lost: 0 bytes in 0 blocks ==364== possibly lost: 528 bytes in 2 blocks ==364== still reachable: 278,626 bytes in 754 blocks ==364== of which reachable via heuristic: ==364== length64 : 4,688 bytes in 74 blocks ==364== newarray : 6,312 bytes in 49 blocks ==364== suppressed: 606,885 bytes in 8,445 blocks ==364== Rerun with --leak-check=full to see details of leaked memory ==364== ==364== For counts of detected and suppressed errors, rerun with: -v ==364== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3691== Memcheck, a memory error detector ==3691== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3691== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3691== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3691== Parent PID: 3639 ==3691== ==3709== Memcheck, a memory error detector ==3709== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3709== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3709== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3709== Parent PID: 3639 ==3709== ==3725== Memcheck, a memory error detector ==3725== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3725== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3725== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3725== Parent PID: 115 ==3725== ==3725== ==3725== HEAP SUMMARY: ==3725== in use at exit: 958,272 bytes in 9,764 blocks ==3725== total heap usage: 401,337 allocs, 391,573 frees, 28,914,610 bytes allocated ==3725== ==3725== LEAK SUMMARY: ==3725== definitely lost: 0 bytes in 0 blocks ==3725== indirectly lost: 0 bytes in 0 blocks ==3725== possibly lost: 528 bytes in 2 blocks ==3725== still reachable: 282,691 bytes in 825 blocks ==3725== of which reachable via heuristic: ==3725== length64 : 4,688 bytes in 74 blocks ==3725== newarray : 6,312 bytes in 49 blocks ==3725== suppressed: 605,981 bytes in 8,410 blocks ==3725== Rerun with --leak-check=full to see details of leaked memory ==3725== ==3725== For counts of detected and suppressed errors, rerun with: -v ==3725== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3777== Memcheck, a memory error detector ==3777== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3777== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3777== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3777== Parent PID: 3725 ==3777== ==3795== Memcheck, a memory error detector ==3795== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3795== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3795== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3795== Parent PID: 3725 ==3795== ==3815== Memcheck, a memory error detector ==3815== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3815== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3815== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3815== Parent PID: 115 ==3815== ==3815== ==3815== HEAP SUMMARY: ==3815== in use at exit: 960,740 bytes in 9,808 blocks ==3815== total heap usage: 359,320 allocs, 349,512 frees, 26,488,001 bytes allocated ==3815== ==3815== LEAK SUMMARY: ==3815== definitely lost: 0 bytes in 0 blocks ==3815== indirectly lost: 0 bytes in 0 blocks ==3815== possibly lost: 528 bytes in 2 blocks ==3815== still reachable: 283,083 bytes in 834 blocks ==3815== of which reachable via heuristic: ==3815== length64 : 4,688 bytes in 74 blocks ==3815== newarray : 6,312 bytes in 49 blocks ==3815== suppressed: 607,889 bytes in 8,443 blocks ==3815== Rerun with --leak-check=full to see details of leaked memory ==3815== ==3815== For counts of detected and suppressed errors, rerun with: -v ==3815== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3858== Memcheck, a memory error detector ==3858== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3858== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3858== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3858== Parent PID: 3815 ==3858== ==3880== Memcheck, a memory error detector ==3880== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3880== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3880== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3880== Parent PID: 3815 ==3880== ==3896== Memcheck, a memory error detector ==3896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3896== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3896== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3896== Parent PID: 115 ==3896== ==3896== ==3896== HEAP SUMMARY: ==3896== in use at exit: 950,679 bytes in 9,626 blocks ==3896== total heap usage: 359,758 allocs, 350,132 frees, 26,462,362 bytes allocated ==3896== ==3896== LEAK SUMMARY: ==3896== definitely lost: 0 bytes in 0 blocks ==3896== indirectly lost: 0 bytes in 0 blocks ==3896== possibly lost: 528 bytes in 2 blocks ==3896== still reachable: 276,603 bytes in 731 blocks ==3896== of which reachable via heuristic: ==3896== length64 : 4,688 bytes in 74 blocks ==3896== newarray : 6,312 bytes in 49 blocks ==3896== suppressed: 604,476 bytes in 8,366 blocks ==3896== Rerun with --leak-check=full to see details of leaked memory ==3896== ==3896== For counts of detected and suppressed errors, rerun with: -v ==3896== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3940== Memcheck, a memory error detector ==3940== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3940== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3940== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3940== Parent PID: 3896 ==3940== ==3962== Memcheck, a memory error detector ==3962== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3962== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3962== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3962== Parent PID: 3896 ==3962== ==3978== Memcheck, a memory error detector ==3978== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3978== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3978== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==3978== Parent PID: 115 ==3978== ==3978== ==3978== HEAP SUMMARY: ==3978== in use at exit: 954,243 bytes in 9,720 blocks ==3978== total heap usage: 340,041 allocs, 330,321 frees, 25,373,823 bytes allocated ==3978== ==3978== LEAK SUMMARY: ==3978== definitely lost: 0 bytes in 0 blocks ==3978== indirectly lost: 0 bytes in 0 blocks ==3978== possibly lost: 528 bytes in 2 blocks ==3978== still reachable: 277,983 bytes in 741 blocks ==3978== of which reachable via heuristic: ==3978== length64 : 4,688 bytes in 74 blocks ==3978== newarray : 6,312 bytes in 49 blocks ==3978== suppressed: 606,660 bytes in 8,450 blocks ==3978== Rerun with --leak-check=full to see details of leaked memory ==3978== ==3978== For counts of detected and suppressed errors, rerun with: -v ==3978== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4021== Memcheck, a memory error detector ==4021== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4021== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4021== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==4021== Parent PID: 3978 ==4021== ==4039== Memcheck, a memory error detector ==4039== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4039== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4039== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==4039== Parent PID: 3978 ==4039== ==4055== Memcheck, a memory error detector ==4055== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4055== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4055== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4055== Parent PID: 115 ==4055== ==4055== ==4055== HEAP SUMMARY: ==4055== in use at exit: 955,396 bytes in 9,710 blocks ==4055== total heap usage: 339,668 allocs, 329,958 frees, 25,319,362 bytes allocated ==4055== ==4055== LEAK SUMMARY: ==4055== definitely lost: 0 bytes in 0 blocks ==4055== indirectly lost: 0 bytes in 0 blocks ==4055== possibly lost: 528 bytes in 2 blocks ==4055== still reachable: 278,822 bytes in 758 blocks ==4055== of which reachable via heuristic: ==4055== length64 : 4,688 bytes in 74 blocks ==4055== newarray : 6,312 bytes in 49 blocks ==4055== suppressed: 606,974 bytes in 8,423 blocks ==4055== Rerun with --leak-check=full to see details of leaked memory ==4055== ==4055== For counts of detected and suppressed errors, rerun with: -v ==4055== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4098== Memcheck, a memory error detector ==4098== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4098== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4098== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4098== Parent PID: 4055 ==4098== ==4116== Memcheck, a memory error detector ==4116== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4116== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4116== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4116== Parent PID: 4055 ==4116== ==4132== Memcheck, a memory error detector ==4132== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4132== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4132== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==4132== Parent PID: 115 ==4132== ==4132== ==4132== HEAP SUMMARY: ==4132== in use at exit: 953,627 bytes in 9,684 blocks ==4132== total heap usage: 256,217 allocs, 246,533 frees, 20,448,592 bytes allocated ==4132== ==4132== LEAK SUMMARY: ==4132== definitely lost: 0 bytes in 0 blocks ==4132== indirectly lost: 0 bytes in 0 blocks ==4132== possibly lost: 528 bytes in 2 blocks ==4132== still reachable: 278,918 bytes in 759 blocks ==4132== of which reachable via heuristic: ==4132== length64 : 4,688 bytes in 74 blocks ==4132== newarray : 6,312 bytes in 49 blocks ==4132== suppressed: 605,109 bytes in 8,396 blocks ==4132== Rerun with --leak-check=full to see details of leaked memory ==4132== ==4132== For counts of detected and suppressed errors, rerun with: -v ==4132== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4176== Memcheck, a memory error detector ==4176== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4176== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4176== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==4176== Parent PID: 4132 ==4176== ==4184== Memcheck, a memory error detector ==4184== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4184== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4184== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4184== Parent PID: 115 ==4184== ==4184== ==4184== HEAP SUMMARY: ==4184== in use at exit: 943,246 bytes in 9,505 blocks ==4184== total heap usage: 407,097 allocs, 397,592 frees, 29,283,272 bytes allocated ==4184== ==4184== LEAK SUMMARY: ==4184== definitely lost: 0 bytes in 0 blocks ==4184== indirectly lost: 0 bytes in 0 blocks ==4184== possibly lost: 528 bytes in 2 blocks ==4184== still reachable: 274,695 bytes in 717 blocks ==4184== of which reachable via heuristic: ==4184== length64 : 4,688 bytes in 74 blocks ==4184== newarray : 6,312 bytes in 49 blocks ==4184== suppressed: 598,951 bytes in 8,259 blocks ==4184== Rerun with --leak-check=full to see details of leaked memory ==4184== ==4184== For counts of detected and suppressed errors, rerun with: -v ==4184== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4236== Memcheck, a memory error detector ==4236== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4236== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4236== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4236== Parent PID: 4184 ==4236== ==4254== Memcheck, a memory error detector ==4254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4254== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4254== Parent PID: 4184 ==4254== ==4274== Memcheck, a memory error detector ==4274== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4274== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4274== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4274== Parent PID: 115 ==4274== ==4274== ==4274== HEAP SUMMARY: ==4274== in use at exit: 957,136 bytes in 9,740 blocks ==4274== total heap usage: 407,334 allocs, 397,594 frees, 29,312,821 bytes allocated ==4274== ==4274== LEAK SUMMARY: ==4274== definitely lost: 0 bytes in 0 blocks ==4274== indirectly lost: 0 bytes in 0 blocks ==4274== possibly lost: 528 bytes in 2 blocks ==4274== still reachable: 280,274 bytes in 782 blocks ==4274== of which reachable via heuristic: ==4274== length64 : 4,688 bytes in 74 blocks ==4274== newarray : 6,312 bytes in 49 blocks ==4274== suppressed: 607,262 bytes in 8,429 blocks ==4274== Rerun with --leak-check=full to see details of leaked memory ==4274== ==4274== For counts of detected and suppressed errors, rerun with: -v ==4274== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4325== Memcheck, a memory error detector ==4325== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4325== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4325== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4325== Parent PID: 4274 ==4325== ==4343== Memcheck, a memory error detector ==4343== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4343== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4343== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4343== Parent PID: 4274 ==4343== ==4363== Memcheck, a memory error detector ==4363== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4363== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4363== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent ==4363== Parent PID: 115 ==4363== ==4363== ==4363== HEAP SUMMARY: ==4363== in use at exit: 952,522 bytes in 9,677 blocks ==4363== total heap usage: 314,412 allocs, 304,735 frees, 23,823,016 bytes allocated ==4363== ==4363== LEAK SUMMARY: ==4363== definitely lost: 0 bytes in 0 blocks ==4363== indirectly lost: 0 bytes in 0 blocks ==4363== possibly lost: 528 bytes in 2 blocks ==4363== still reachable: 277,267 bytes in 733 blocks ==4363== of which reachable via heuristic: ==4363== length64 : 4,688 bytes in 74 blocks ==4363== newarray : 6,312 bytes in 49 blocks ==4363== suppressed: 605,655 bytes in 8,415 blocks ==4363== Rerun with --leak-check=full to see details of leaked memory ==4363== ==4363== For counts of detected and suppressed errors, rerun with: -v ==4363== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4406== Memcheck, a memory error detector ==4406== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4406== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4406== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent ==4406== Parent PID: 4363 ==4406== ==4426== Memcheck, a memory error detector ==4426== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4426== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4426== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild ==4426== Parent PID: 115 ==4426== ==4426== ==4426== HEAP SUMMARY: ==4426== in use at exit: 960,049 bytes in 9,788 blocks ==4426== total heap usage: 314,177 allocs, 304,389 frees, 23,793,683 bytes allocated ==4426== ==4426== LEAK SUMMARY: ==4426== definitely lost: 0 bytes in 0 blocks ==4426== indirectly lost: 0 bytes in 0 blocks ==4426== possibly lost: 528 bytes in 2 blocks ==4426== still reachable: 282,687 bytes in 825 blocks ==4426== of which reachable via heuristic: ==4426== length64 : 4,688 bytes in 74 blocks ==4426== newarray : 6,312 bytes in 49 blocks ==4426== suppressed: 607,762 bytes in 8,434 blocks ==4426== Rerun with --leak-check=full to see details of leaked memory ==4426== ==4426== For counts of detected and suppressed errors, rerun with: -v ==4426== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4469== Memcheck, a memory error detector ==4469== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4469== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4469== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild ==4469== Parent PID: 4426 ==4469== ==4489== Memcheck, a memory error detector ==4489== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4489== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4489== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==4489== Parent PID: 115 ==4489== ==4489== ==4489== HEAP SUMMARY: ==4489== in use at exit: 947,265 bytes in 9,570 blocks ==4489== total heap usage: 357,394 allocs, 347,824 frees, 26,323,991 bytes allocated ==4489== ==4489== LEAK SUMMARY: ==4489== definitely lost: 0 bytes in 0 blocks ==4489== indirectly lost: 0 bytes in 0 blocks ==4489== possibly lost: 528 bytes in 2 blocks ==4489== still reachable: 275,495 bytes in 725 blocks ==4489== of which reachable via heuristic: ==4489== length64 : 4,688 bytes in 74 blocks ==4489== newarray : 6,312 bytes in 49 blocks ==4489== suppressed: 602,170 bytes in 8,316 blocks ==4489== Rerun with --leak-check=full to see details of leaked memory ==4489== ==4489== For counts of detected and suppressed errors, rerun with: -v ==4489== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4540== Memcheck, a memory error detector ==4540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4540== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==4540== Parent PID: 4489 ==4540== ==4560== Memcheck, a memory error detector ==4560== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4560== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4560== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==4560== Parent PID: 115 ==4560== ==4560== ==4560== HEAP SUMMARY: ==4560== in use at exit: 957,160 bytes in 9,738 blocks ==4560== total heap usage: 297,865 allocs, 288,127 frees, 22,864,061 bytes allocated ==4560== ==4560== LEAK SUMMARY: ==4560== definitely lost: 0 bytes in 0 blocks ==4560== indirectly lost: 0 bytes in 0 blocks ==4560== possibly lost: 528 bytes in 2 blocks ==4560== still reachable: 280,206 bytes in 780 blocks ==4560== of which reachable via heuristic: ==4560== length64 : 4,688 bytes in 74 blocks ==4560== newarray : 6,312 bytes in 49 blocks ==4560== suppressed: 607,354 bytes in 8,429 blocks ==4560== Rerun with --leak-check=full to see details of leaked memory ==4560== ==4560== For counts of detected and suppressed errors, rerun with: -v ==4560== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4611== Memcheck, a memory error detector ==4611== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4611== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4611== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==4611== Parent PID: 4560 ==4611== ==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::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==4620== Parent PID: 115 ==4620== ==4620== ==4620== HEAP SUMMARY: ==4620== in use at exit: 954,918 bytes in 9,735 blocks ==4620== total heap usage: 341,905 allocs, 332,170 frees, 25,449,652 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: 528 bytes in 2 blocks ==4620== still reachable: 278,059 bytes in 742 blocks ==4620== of which reachable via heuristic: ==4620== length64 : 4,688 bytes in 74 blocks ==4620== newarray : 6,312 bytes in 49 blocks ==4620== suppressed: 607,091 bytes in 8,462 blocks ==4620== Rerun with --leak-check=full to see details of leaked memory ==4620== ==4620== For counts of detected and suppressed errors, rerun with: -v ==4620== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4667== Memcheck, a memory error detector ==4667== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4667== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4667== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==4667== Parent PID: 4620 ==4667== ==4687== Memcheck, a memory error detector ==4687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4687== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4687== Parent PID: 115 ==4687== ==4687== ==4687== HEAP SUMMARY: ==4687== in use at exit: 960,748 bytes in 9,806 blocks ==4687== total heap usage: 362,582 allocs, 352,776 frees, 26,688,205 bytes allocated ==4687== ==4687== LEAK SUMMARY: ==4687== definitely lost: 0 bytes in 0 blocks ==4687== indirectly lost: 0 bytes in 0 blocks ==4687== possibly lost: 528 bytes in 2 blocks ==4687== still reachable: 282,919 bytes in 830 blocks ==4687== of which reachable via heuristic: ==4687== length64 : 4,688 bytes in 74 blocks ==4687== newarray : 6,312 bytes in 49 blocks ==4687== suppressed: 608,061 bytes in 8,445 blocks ==4687== Rerun with --leak-check=full to see details of leaked memory ==4687== ==4687== For counts of detected and suppressed errors, rerun with: -v ==4687== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4730== Parent PID: 4687 ==4730== ==4748== Memcheck, a memory error detector ==4748== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4748== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4748== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4748== Parent PID: 4687 ==4748== ==4768== Memcheck, a memory error detector ==4768== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4768== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4768== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4768== Parent PID: 115 ==4768== ==4768== ==4768== HEAP SUMMARY: ==4768== in use at exit: 953,385 bytes in 9,677 blocks ==4768== total heap usage: 382,342 allocs, 372,665 frees, 27,796,247 bytes allocated ==4768== ==4768== LEAK SUMMARY: ==4768== definitely lost: 0 bytes in 0 blocks ==4768== indirectly lost: 0 bytes in 0 blocks ==4768== possibly lost: 528 bytes in 2 blocks ==4768== still reachable: 277,383 bytes in 734 blocks ==4768== of which reachable via heuristic: ==4768== length64 : 4,688 bytes in 74 blocks ==4768== newarray : 6,312 bytes in 49 blocks ==4768== suppressed: 606,402 bytes in 8,414 blocks ==4768== Rerun with --leak-check=full to see details of leaked memory ==4768== ==4768== For counts of detected and suppressed errors, rerun with: -v ==4768== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4819== Memcheck, a memory error detector ==4819== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4819== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4819== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4819== Parent PID: 4768 ==4819== ==4837== Memcheck, a memory error detector ==4837== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4837== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4837== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4837== Parent PID: 4768 ==4837== ==4853== Memcheck, a memory error detector ==4853== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4853== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4853== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4853== Parent PID: 115 ==4853== ==4853== ==4853== HEAP SUMMARY: ==4853== in use at exit: 955,356 bytes in 9,708 blocks ==4853== total heap usage: 401,242 allocs, 391,534 frees, 28,892,064 bytes allocated ==4853== ==4853== LEAK SUMMARY: ==4853== definitely lost: 0 bytes in 0 blocks ==4853== indirectly lost: 0 bytes in 0 blocks ==4853== possibly lost: 528 bytes in 2 blocks ==4853== still reachable: 278,658 bytes in 754 blocks ==4853== of which reachable via heuristic: ==4853== length64 : 4,688 bytes in 74 blocks ==4853== newarray : 6,312 bytes in 49 blocks ==4853== suppressed: 607,098 bytes in 8,425 blocks ==4853== Rerun with --leak-check=full to see details of leaked memory ==4853== ==4853== For counts of detected and suppressed errors, rerun with: -v ==4853== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4904== Memcheck, a memory error detector ==4904== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4904== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4904== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4904== Parent PID: 4853 ==4904== ==4922== Memcheck, a memory error detector ==4922== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4922== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4922== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4922== Parent PID: 4853 ==4922== ==4942== Memcheck, a memory error detector ==4942== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4942== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4942== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==4942== Parent PID: 115 ==4942== ==4942== ==4942== HEAP SUMMARY: ==4942== in use at exit: 950,543 bytes in 9,626 blocks ==4942== total heap usage: 359,426 allocs, 349,800 frees, 26,484,586 bytes allocated ==4942== ==4942== LEAK SUMMARY: ==4942== definitely lost: 0 bytes in 0 blocks ==4942== indirectly lost: 0 bytes in 0 blocks ==4942== possibly lost: 528 bytes in 2 blocks ==4942== still reachable: 277,067 bytes in 729 blocks ==4942== of which reachable via heuristic: ==4942== length64 : 4,688 bytes in 74 blocks ==4942== newarray : 6,312 bytes in 49 blocks ==4942== suppressed: 603,876 bytes in 8,368 blocks ==4942== Rerun with --leak-check=full to see details of leaked memory ==4942== ==4942== For counts of detected and suppressed errors, rerun with: -v ==4942== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4985== Memcheck, a memory error detector ==4985== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4985== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4985== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==4985== Parent PID: 4942 ==4985== ==5007== Memcheck, a memory error detector ==5007== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5007== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5007== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==5007== Parent PID: 4942 ==5007== ==5023== Memcheck, a memory error detector ==5023== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5023== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5023== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5023== Parent PID: 115 ==5023== ==5023== ==5023== HEAP SUMMARY: ==5023== in use at exit: 957,088 bytes in 9,736 blocks ==5023== total heap usage: 359,302 allocs, 349,566 frees, 26,430,609 bytes allocated ==5023== ==5023== LEAK SUMMARY: ==5023== definitely lost: 0 bytes in 0 blocks ==5023== indirectly lost: 0 bytes in 0 blocks ==5023== possibly lost: 528 bytes in 2 blocks ==5023== still reachable: 280,246 bytes in 780 blocks ==5023== of which reachable via heuristic: ==5023== length64 : 4,688 bytes in 74 blocks ==5023== newarray : 6,312 bytes in 49 blocks ==5023== suppressed: 607,242 bytes in 8,427 blocks ==5023== Rerun with --leak-check=full to see details of leaked memory ==5023== ==5023== For counts of detected and suppressed errors, rerun with: -v ==5023== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5066== Memcheck, a memory error detector ==5066== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5066== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5066== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5066== Parent PID: 5023 ==5066== ==5088== Memcheck, a memory error detector ==5088== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5088== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5088== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5088== Parent PID: 5023 ==5088== ==5104== Memcheck, a memory error detector ==5104== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5104== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5104== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5104== Parent PID: 115 ==5104== ==5104== ==5104== HEAP SUMMARY: ==5104== in use at exit: 958,806 bytes in 9,762 blocks ==5104== total heap usage: 339,385 allocs, 329,623 frees, 25,341,477 bytes allocated ==5104== ==5104== LEAK SUMMARY: ==5104== definitely lost: 0 bytes in 0 blocks ==5104== indirectly lost: 0 bytes in 0 blocks ==5104== possibly lost: 528 bytes in 2 blocks ==5104== still reachable: 281,700 bytes in 803 blocks ==5104== of which reachable via heuristic: ==5104== length64 : 4,688 bytes in 74 blocks ==5104== newarray : 6,312 bytes in 49 blocks ==5104== suppressed: 607,506 bytes in 8,430 blocks ==5104== Rerun with --leak-check=full to see details of leaked memory ==5104== ==5104== For counts of detected and suppressed errors, rerun with: -v ==5104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5147== Memcheck, a memory error detector ==5147== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5147== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5147== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5147== Parent PID: 5104 ==5147== ==5165== Memcheck, a memory error detector ==5165== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5165== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5165== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5165== Parent PID: 5104 ==5165== ==5181== Memcheck, a memory error detector ==5181== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5181== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5181== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5181== Parent PID: 115 ==5181== ==5181== ==5181== HEAP SUMMARY: ==5181== in use at exit: 956,287 bytes in 9,746 blocks ==5181== total heap usage: 340,072 allocs, 330,326 frees, 25,320,303 bytes allocated ==5181== ==5181== LEAK SUMMARY: ==5181== definitely lost: 0 bytes in 0 blocks ==5181== indirectly lost: 0 bytes in 0 blocks ==5181== possibly lost: 528 bytes in 2 blocks ==5181== still reachable: 277,739 bytes in 740 blocks ==5181== of which reachable via heuristic: ==5181== length64 : 4,688 bytes in 74 blocks ==5181== newarray : 6,312 bytes in 49 blocks ==5181== suppressed: 608,780 bytes in 8,475 blocks ==5181== Rerun with --leak-check=full to see details of leaked memory ==5181== ==5181== For counts of detected and suppressed errors, rerun with: -v ==5181== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5224== Memcheck, a memory error detector ==5224== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5224== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5224== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5224== Parent PID: 5181 ==5224== ==5242== Memcheck, a memory error detector ==5242== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5242== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5242== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5242== Parent PID: 5181 ==5242== ==5258== Memcheck, a memory error detector ==5258== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5258== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5258== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==5258== Parent PID: 115 ==5258== ==5258== ==5258== HEAP SUMMARY: ==5258== in use at exit: 953,721 bytes in 9,682 blocks ==5258== total heap usage: 256,430 allocs, 246,748 frees, 20,444,925 bytes allocated ==5258== ==5258== LEAK SUMMARY: ==5258== definitely lost: 0 bytes in 0 blocks ==5258== indirectly lost: 0 bytes in 0 blocks ==5258== possibly lost: 528 bytes in 2 blocks ==5258== still reachable: 277,235 bytes in 730 blocks ==5258== of which reachable via heuristic: ==5258== length64 : 4,688 bytes in 74 blocks ==5258== newarray : 6,312 bytes in 49 blocks ==5258== suppressed: 606,886 bytes in 8,423 blocks ==5258== Rerun with --leak-check=full to see details of leaked memory ==5258== ==5258== For counts of detected and suppressed errors, rerun with: -v ==5258== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5301== Memcheck, a memory error detector ==5301== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5301== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5301== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==5301== Parent PID: 5258 ==5301== ==5309== Memcheck, a memory error detector ==5309== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5309== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5309== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5309== Parent PID: 115 ==5309== ==5309== ==5309== HEAP SUMMARY: ==5309== in use at exit: 952,312 bytes in 9,652 blocks ==5309== total heap usage: 406,069 allocs, 396,417 frees, 29,224,358 bytes allocated ==5309== ==5309== LEAK SUMMARY: ==5309== definitely lost: 0 bytes in 0 blocks ==5309== indirectly lost: 0 bytes in 0 blocks ==5309== possibly lost: 528 bytes in 2 blocks ==5309== still reachable: 276,959 bytes in 729 blocks ==5309== of which reachable via heuristic: ==5309== length64 : 4,688 bytes in 74 blocks ==5309== newarray : 6,312 bytes in 49 blocks ==5309== suppressed: 605,753 bytes in 8,394 blocks ==5309== Rerun with --leak-check=full to see details of leaked memory ==5309== ==5309== For counts of detected and suppressed errors, rerun with: -v ==5309== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==534== Memcheck, a memory error detector ==534== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==534== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==534== Command: ./client-test Client::Source::eds_event::testChangesMultiCycles ==534== Parent PID: 115 ==534== ==534== ==534== HEAP SUMMARY: ==534== in use at exit: 957,074 bytes in 9,738 blocks ==534== total heap usage: 810,904 allocs, 801,166 frees, 49,715,102 bytes allocated ==534== ==534== LEAK SUMMARY: ==534== definitely lost: 0 bytes in 0 blocks ==534== indirectly lost: 0 bytes in 0 blocks ==534== possibly lost: 528 bytes in 2 blocks ==534== still reachable: 281,562 bytes in 800 blocks ==534== of which reachable via heuristic: ==534== length64 : 4,688 bytes in 74 blocks ==534== newarray : 6,312 bytes in 49 blocks ==534== suppressed: 605,912 bytes in 8,409 blocks ==534== Rerun with --leak-check=full to see details of leaked memory ==534== ==534== For counts of detected and suppressed errors, rerun with: -v ==534== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5360== Memcheck, a memory error detector ==5360== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5360== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5360== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5360== Parent PID: 5309 ==5360== ==5378== Memcheck, a memory error detector ==5378== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5378== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5378== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5378== Parent PID: 5309 ==5378== ==5398== Memcheck, a memory error detector ==5398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5398== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5398== Parent PID: 115 ==5398== ==5398== ==5398== HEAP SUMMARY: ==5398== in use at exit: 955,396 bytes in 9,708 blocks ==5398== total heap usage: 407,540 allocs, 397,832 frees, 29,295,072 bytes allocated ==5398== ==5398== LEAK SUMMARY: ==5398== definitely lost: 0 bytes in 0 blocks ==5398== indirectly lost: 0 bytes in 0 blocks ==5398== possibly lost: 528 bytes in 2 blocks ==5398== still reachable: 278,658 bytes in 754 blocks ==5398== of which reachable via heuristic: ==5398== length64 : 4,688 bytes in 74 blocks ==5398== newarray : 6,312 bytes in 49 blocks ==5398== suppressed: 607,138 bytes in 8,425 blocks ==5398== Rerun with --leak-check=full to see details of leaked memory ==5398== ==5398== For counts of detected and suppressed errors, rerun with: -v ==5398== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5449== Memcheck, a memory error detector ==5449== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5449== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5449== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5449== Parent PID: 5398 ==5449== ==5467== Memcheck, a memory error detector ==5467== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5467== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5467== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5467== Parent PID: 5398 ==5467== ==5487== Memcheck, a memory error detector ==5487== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5487== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5487== Command: ./client-test Client::Source::eds_task::testOpen ==5487== Parent PID: 115 ==5487== ==5487== ==5487== HEAP SUMMARY: ==5487== in use at exit: 945,697 bytes in 9,537 blocks ==5487== total heap usage: 132,423 allocs, 122,886 frees, 13,343,593 bytes allocated ==5487== ==5487== LEAK SUMMARY: ==5487== definitely lost: 0 bytes in 0 blocks ==5487== indirectly lost: 0 bytes in 0 blocks ==5487== possibly lost: 528 bytes in 2 blocks ==5487== still reachable: 277,739 bytes in 730 blocks ==5487== of which reachable via heuristic: ==5487== length64 : 4,448 bytes in 71 blocks ==5487== newarray : 6,296 bytes in 48 blocks ==5487== suppressed: 599,974 bytes in 8,296 blocks ==5487== Rerun with --leak-check=full to see details of leaked memory ==5487== ==5487== For counts of detected and suppressed errors, rerun with: -v ==5487== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5504== Memcheck, a memory error detector ==5504== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5504== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5504== Command: ./client-test Client::Source::eds_task::testIterateTwice ==5504== Parent PID: 115 ==5504== ==5504== ==5504== HEAP SUMMARY: ==5504== in use at exit: 952,363 bytes in 9,675 blocks ==5504== total heap usage: 136,219 allocs, 126,544 frees, 13,533,525 bytes allocated ==5504== ==5504== LEAK SUMMARY: ==5504== definitely lost: 0 bytes in 0 blocks ==5504== indirectly lost: 0 bytes in 0 blocks ==5504== possibly lost: 528 bytes in 2 blocks ==5504== still reachable: 277,995 bytes in 740 blocks ==5504== of which reachable via heuristic: ==5504== length64 : 4,688 bytes in 74 blocks ==5504== newarray : 6,312 bytes in 49 blocks ==5504== suppressed: 604,600 bytes in 8,404 blocks ==5504== Rerun with --leak-check=full to see details of leaked memory ==5504== ==5504== For counts of detected and suppressed errors, rerun with: -v ==5504== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5522== Memcheck, a memory error detector ==5522== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5522== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5522== Command: ./client-test Client::Source::eds_task::testDelete404 ==5522== Parent PID: 115 ==5522== ==5522== ==5522== HEAP SUMMARY: ==5522== in use at exit: 952,843 bytes in 9,682 blocks ==5522== total heap usage: 136,497 allocs, 126,815 frees, 13,534,459 bytes allocated ==5522== ==5522== LEAK SUMMARY: ==5522== definitely lost: 0 bytes in 0 blocks ==5522== indirectly lost: 0 bytes in 0 blocks ==5522== possibly lost: 528 bytes in 2 blocks ==5522== still reachable: 277,995 bytes in 740 blocks ==5522== of which reachable via heuristic: ==5522== length64 : 4,688 bytes in 74 blocks ==5522== newarray : 6,312 bytes in 49 blocks ==5522== suppressed: 605,080 bytes in 8,411 blocks ==5522== Rerun with --leak-check=full to see details of leaked memory ==5522== ==5522== For counts of detected and suppressed errors, rerun with: -v ==5522== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5540== Memcheck, a memory error detector ==5540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5540== Command: ./client-test Client::Source::eds_task::testReadItem404 ==5540== Parent PID: 115 ==5540== ==5540== ==5540== HEAP SUMMARY: ==5540== in use at exit: 955,268 bytes in 9,728 blocks ==5540== total heap usage: 136,263 allocs, 126,535 frees, 13,525,298 bytes allocated ==5540== ==5540== LEAK SUMMARY: ==5540== definitely lost: 0 bytes in 0 blocks ==5540== indirectly lost: 0 bytes in 0 blocks ==5540== possibly lost: 528 bytes in 2 blocks ==5540== still reachable: 277,411 bytes in 733 blocks ==5540== of which reachable via heuristic: ==5540== length64 : 4,688 bytes in 74 blocks ==5540== newarray : 6,312 bytes in 49 blocks ==5540== suppressed: 608,257 bytes in 8,466 blocks ==5540== Rerun with --leak-check=full to see details of leaked memory ==5540== ==5540== For counts of detected and suppressed errors, rerun with: -v ==5540== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5558== Memcheck, a memory error detector ==5558== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5558== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5558== Command: ./client-test Client::Source::eds_task::testSimpleInsert ==5558== Parent PID: 115 ==5558== ==5558== ==5558== HEAP SUMMARY: ==5558== in use at exit: 942,526 bytes in 9,495 blocks ==5558== total heap usage: 159,252 allocs, 149,757 frees, 14,802,668 bytes allocated ==5558== ==5558== LEAK SUMMARY: ==5558== definitely lost: 0 bytes in 0 blocks ==5558== indirectly lost: 0 bytes in 0 blocks ==5558== possibly lost: 528 bytes in 2 blocks ==5558== still reachable: 274,707 bytes in 716 blocks ==5558== of which reachable via heuristic: ==5558== length64 : 4,688 bytes in 74 blocks ==5558== newarray : 6,312 bytes in 49 blocks ==5558== suppressed: 598,219 bytes in 8,250 blocks ==5558== Rerun with --leak-check=full to see details of leaked memory ==5558== ==5558== For counts of detected and suppressed errors, rerun with: -v ==5558== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5589== Memcheck, a memory error detector ==5589== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5589== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5589== Command: ./client-test Client::Source::eds_task::testLocalDeleteAll ==5589== Parent PID: 115 ==5589== ==5589== ==5589== HEAP SUMMARY: ==5589== in use at exit: 954,604 bytes in 9,710 blocks ==5589== total heap usage: 204,580 allocs, 194,870 frees, 17,296,100 bytes allocated ==5589== ==5589== LEAK SUMMARY: ==5589== definitely lost: 0 bytes in 0 blocks ==5589== indirectly lost: 0 bytes in 0 blocks ==5589== possibly lost: 528 bytes in 2 blocks ==5589== still reachable: 277,931 bytes in 740 blocks ==5589== of which reachable via heuristic: ==5589== length64 : 4,688 bytes in 74 blocks ==5589== newarray : 6,312 bytes in 49 blocks ==5589== suppressed: 606,905 bytes in 8,439 blocks ==5589== Rerun with --leak-check=full to see details of leaked memory ==5589== ==5589== For counts of detected and suppressed errors, rerun with: -v ==5589== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5643== Memcheck, a memory error detector ==5643== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5643== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5643== Command: ./client-test Client::Source::eds_task::testComplexInsert ==5643== Parent PID: 115 ==5643== ==5643== ==5643== HEAP SUMMARY: ==5643== in use at exit: 954,339 bytes in 9,699 blocks ==5643== total heap usage: 224,474 allocs, 214,775 frees, 18,358,401 bytes allocated ==5643== ==5643== LEAK SUMMARY: ==5643== definitely lost: 0 bytes in 0 blocks ==5643== indirectly lost: 0 bytes in 0 blocks ==5643== possibly lost: 528 bytes in 2 blocks ==5643== still reachable: 277,795 bytes in 734 blocks ==5643== of which reachable via heuristic: ==5643== length64 : 4,688 bytes in 74 blocks ==5643== newarray : 6,312 bytes in 49 blocks ==5643== suppressed: 606,944 bytes in 8,436 blocks ==5643== Rerun with --leak-check=full to see details of leaked memory ==5643== ==5643== For counts of detected and suppressed errors, rerun with: -v ==5643== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5709== Memcheck, a memory error detector ==5709== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5709== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5709== Command: ./client-test Client::Source::eds_task::testInsertTwice ==5709== Parent PID: 115 ==5709== ==5709== ==5709== HEAP SUMMARY: ==5709== in use at exit: 952,064 bytes in 9,652 blocks ==5709== total heap usage: 182,146 allocs, 172,494 frees, 16,068,603 bytes allocated ==5709== ==5709== LEAK SUMMARY: ==5709== definitely lost: 0 bytes in 0 blocks ==5709== indirectly lost: 0 bytes in 0 blocks ==5709== possibly lost: 528 bytes in 2 blocks ==5709== still reachable: 276,987 bytes in 728 blocks ==5709== of which reachable via heuristic: ==5709== length64 : 4,688 bytes in 74 blocks ==5709== newarray : 6,312 bytes in 49 blocks ==5709== suppressed: 605,477 bytes in 8,395 blocks ==5709== Rerun with --leak-check=full to see details of leaked memory ==5709== ==5709== For counts of detected and suppressed errors, rerun with: -v ==5709== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5751== Memcheck, a memory error detector ==5751== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5751== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5751== Command: ./client-test Client::Source::eds_task::testLocalUpdate ==5751== Parent PID: 115 ==5751== ==5751== ==5751== HEAP SUMMARY: ==5751== in use at exit: 954,060 bytes in 9,695 blocks ==5751== total heap usage: 248,482 allocs, 238,787 frees, 19,728,473 bytes allocated ==5751== ==5751== LEAK SUMMARY: ==5751== definitely lost: 0 bytes in 0 blocks ==5751== indirectly lost: 0 bytes in 0 blocks ==5751== possibly lost: 528 bytes in 2 blocks ==5751== still reachable: 277,555 bytes in 736 blocks ==5751== of which reachable via heuristic: ==5751== length64 : 4,688 bytes in 74 blocks ==5751== newarray : 6,312 bytes in 49 blocks ==5751== suppressed: 606,737 bytes in 8,428 blocks ==5751== Rerun with --leak-check=full to see details of leaked memory ==5751== ==5751== For counts of detected and suppressed errors, rerun with: -v ==5751== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5829== Memcheck, a memory error detector ==5829== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5829== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5829== Command: ./client-test Client::Source::eds_task::testChanges ==5829== Parent PID: 115 ==5829== ==5829== ==5829== HEAP SUMMARY: ==5829== in use at exit: 954,219 bytes in 9,700 blocks ==5829== total heap usage: 960,490 allocs, 950,790 frees, 58,798,595 bytes allocated ==5829== ==5829== LEAK SUMMARY: ==5829== definitely lost: 0 bytes in 0 blocks ==5829== indirectly lost: 0 bytes in 0 blocks ==5829== possibly lost: 528 bytes in 2 blocks ==5829== still reachable: 277,635 bytes in 734 blocks ==5829== of which reachable via heuristic: ==5829== length64 : 4,688 bytes in 74 blocks ==5829== newarray : 6,312 bytes in 49 blocks ==5829== suppressed: 606,984 bytes in 8,437 blocks ==5829== Rerun with --leak-check=full to see details of leaked memory ==5829== ==5829== For counts of detected and suppressed errors, rerun with: -v ==5829== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6293== Memcheck, a memory error detector ==6293== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6293== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6293== Command: ./client-test Client::Source::eds_task::testChangesMultiCycles ==6293== Parent PID: 115 ==6293== ==6293== ==6293== HEAP SUMMARY: ==6293== in use at exit: 952,723 bytes in 9,668 blocks ==6293== total heap usage: 873,104 allocs, 863,436 frees, 51,213,244 bytes allocated ==6293== ==6293== LEAK SUMMARY: ==6293== definitely lost: 0 bytes in 0 blocks ==6293== indirectly lost: 0 bytes in 0 blocks ==6293== possibly lost: 528 bytes in 2 blocks ==6293== still reachable: 277,291 bytes in 734 blocks ==6293== of which reachable via heuristic: ==6293== length64 : 4,688 bytes in 74 blocks ==6293== newarray : 6,312 bytes in 49 blocks ==6293== suppressed: 605,664 bytes in 8,403 blocks ==6293== Rerun with --leak-check=full to see details of leaked memory ==6293== ==6293== For counts of detected and suppressed errors, rerun with: -v ==6293== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6757== Memcheck, a memory error detector ==6757== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6757== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6757== Command: ./client-test Client::Source::eds_task::testImport ==6757== Parent PID: 115 ==6757== ==6757== ==6757== HEAP SUMMARY: ==6757== in use at exit: 1,133,654 bytes in 12,573 blocks ==6757== total heap usage: 223,978 allocs, 211,405 frees, 20,120,646 bytes allocated ==6757== ==6757== LEAK SUMMARY: ==6757== definitely lost: 0 bytes in 0 blocks ==6757== indirectly lost: 0 bytes in 0 blocks ==6757== possibly lost: 528 bytes in 2 blocks ==6757== still reachable: 457,840 bytes in 3,625 blocks ==6757== of which reachable via heuristic: ==6757== length64 : 4,688 bytes in 74 blocks ==6757== newarray : 6,312 bytes in 49 blocks ==6757== suppressed: 606,214 bytes in 8,419 blocks ==6757== Rerun with --leak-check=full to see details of leaked memory ==6757== ==6757== For counts of detected and suppressed errors, rerun with: -v ==6757== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6813== Memcheck, a memory error detector ==6813== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6813== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6813== Command: ./client-test Client::Source::eds_task::testImport ==6813== Parent PID: 6757 ==6813== ==6821== Memcheck, a memory error detector ==6821== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6821== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6821== Command: ./client-test Client::Source::eds_task::testImportDelete ==6821== Parent PID: 115 ==6821== ==6821== ==6821== HEAP SUMMARY: ==6821== in use at exit: 1,135,157 bytes in 12,589 blocks ==6821== total heap usage: 267,754 allocs, 255,165 frees, 22,524,934 bytes allocated ==6821== ==6821== LEAK SUMMARY: ==6821== definitely lost: 0 bytes in 0 blocks ==6821== indirectly lost: 0 bytes in 0 blocks ==6821== possibly lost: 528 bytes in 2 blocks ==6821== still reachable: 458,808 bytes in 3,629 blocks ==6821== of which reachable via heuristic: ==6821== length64 : 4,688 bytes in 74 blocks ==6821== newarray : 6,312 bytes in 49 blocks ==6821== suppressed: 606,749 bytes in 8,431 blocks ==6821== Rerun with --leak-check=full to see details of leaked memory ==6821== ==6821== For counts of detected and suppressed errors, rerun with: -v ==6821== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6877== Memcheck, a memory error detector ==6877== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6877== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6877== Command: ./client-test Client::Source::eds_task::testImportDelete ==6877== Parent PID: 6821 ==6877== ==6909== Memcheck, a memory error detector ==6909== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6909== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6909== Command: ./client-test Client::Source::eds_task::testRemoveProperties ==6909== Parent PID: 115 ==6909== ==6909== ==6909== HEAP SUMMARY: ==6909== in use at exit: 1,135,192 bytes in 12,589 blocks ==6909== total heap usage: 254,175 allocs, 241,586 frees, 22,838,276 bytes allocated ==6909== ==6909== LEAK SUMMARY: ==6909== definitely lost: 0 bytes in 0 blocks ==6909== indirectly lost: 0 bytes in 0 blocks ==6909== possibly lost: 528 bytes in 2 blocks ==6909== still reachable: 458,728 bytes in 3,631 blocks ==6909== of which reachable via heuristic: ==6909== length64 : 4,688 bytes in 74 blocks ==6909== newarray : 6,312 bytes in 49 blocks ==6909== suppressed: 606,696 bytes in 8,427 blocks ==6909== Rerun with --leak-check=full to see details of leaked memory ==6909== ==6909== For counts of detected and suppressed errors, rerun with: -v ==6909== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_task::testRemoveProperties ==6977== Parent PID: 6909 ==6977== ==6985== Memcheck, a memory error detector ==6985== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6985== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6985== Command: ./client-test Client::Source::eds_task::testManyChanges ==6985== Parent PID: 115 ==6985== ==6985== ==6985== HEAP SUMMARY: ==6985== in use at exit: 955,027 bytes in 9,723 blocks ==6985== total heap usage: 561,355 allocs, 551,632 frees, 44,910,858 bytes allocated ==6985== ==6985== LEAK SUMMARY: ==6985== definitely lost: 0 bytes in 0 blocks ==6985== indirectly lost: 0 bytes in 0 blocks ==6985== possibly lost: 528 bytes in 2 blocks ==6985== still reachable: 278,955 bytes in 740 blocks ==6985== of which reachable via heuristic: ==6985== length64 : 4,688 bytes in 74 blocks ==6985== newarray : 6,312 bytes in 49 blocks ==6985== suppressed: 606,472 bytes in 8,454 blocks ==6985== Rerun with --leak-check=full to see details of leaked memory ==6985== ==6985== For counts of detected and suppressed errors, rerun with: -v ==6985== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==703== Memcheck, a memory error detector ==703== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==703== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==703== Command: ./client-test Client::Source::eds_event::testImport ==703== Parent PID: 115 ==703== ==703== ==703== HEAP SUMMARY: ==703== in use at exit: 1,108,077 bytes in 12,150 blocks ==703== total heap usage: 290,474 allocs, 278,324 frees, 26,394,672 bytes allocated ==703== ==703== LEAK SUMMARY: ==703== definitely lost: 0 bytes in 0 blocks ==703== indirectly lost: 0 bytes in 0 blocks ==703== possibly lost: 528 bytes in 2 blocks ==703== still reachable: 433,631 bytes in 3,230 blocks ==703== of which reachable via heuristic: ==703== length64 : 4,688 bytes in 74 blocks ==703== newarray : 6,312 bytes in 49 blocks ==703== suppressed: 604,846 bytes in 8,391 blocks ==703== Rerun with --leak-check=full to see details of leaked memory ==703== ==703== For counts of detected and suppressed errors, rerun with: -v ==703== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7089== Memcheck, a memory error detector ==7089== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7089== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7089== Command: ./client-test Client::Source::eds_contact::testOpen ==7089== Parent PID: 115 ==7089== ==7089== ==7089== HEAP SUMMARY: ==7089== in use at exit: 860,475 bytes in 9,053 blocks ==7089== total heap usage: 140,366 allocs, 131,313 frees, 13,903,990 bytes allocated ==7089== ==7089== LEAK SUMMARY: ==7089== definitely lost: 0 bytes in 0 blocks ==7089== indirectly lost: 0 bytes in 0 blocks ==7089== possibly lost: 528 bytes in 2 blocks ==7089== still reachable: 278,531 bytes in 738 blocks ==7089== of which reachable via heuristic: ==7089== length64 : 4,424 bytes in 71 blocks ==7089== newarray : 6,280 bytes in 47 blocks ==7089== suppressed: 514,936 bytes in 7,815 blocks ==7089== Rerun with --leak-check=full to see details of leaked memory ==7089== ==7089== For counts of detected and suppressed errors, rerun with: -v ==7089== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7107== Memcheck, a memory error detector ==7107== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7107== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7107== Command: ./client-test Client::Source::eds_contact::testIterateTwice ==7107== Parent PID: 115 ==7107== ==7107== ==7107== HEAP SUMMARY: ==7107== in use at exit: 868,919 bytes in 9,175 blocks ==7107== total heap usage: 145,266 allocs, 136,091 frees, 14,129,042 bytes allocated ==7107== ==7107== LEAK SUMMARY: ==7107== definitely lost: 0 bytes in 0 blocks ==7107== indirectly lost: 0 bytes in 0 blocks ==7107== possibly lost: 528 bytes in 2 blocks ==7107== still reachable: 277,695 bytes in 740 blocks ==7107== of which reachable via heuristic: ==7107== length64 : 4,664 bytes in 74 blocks ==7107== newarray : 6,296 bytes in 48 blocks ==7107== suppressed: 522,472 bytes in 7,916 blocks ==7107== Rerun with --leak-check=full to see details of leaked memory ==7107== ==7107== For counts of detected and suppressed errors, rerun with: -v ==7107== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7129== Memcheck, a memory error detector ==7129== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7129== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7129== Command: ./client-test Client::Source::eds_contact::testDelete404 ==7129== Parent PID: 115 ==7129== ==7129== ==7129== HEAP SUMMARY: ==7129== in use at exit: 868,722 bytes in 9,173 blocks ==7129== total heap usage: 145,453 allocs, 136,280 frees, 14,133,946 bytes allocated ==7129== ==7129== LEAK SUMMARY: ==7129== definitely lost: 0 bytes in 0 blocks ==7129== indirectly lost: 0 bytes in 0 blocks ==7129== possibly lost: 528 bytes in 2 blocks ==7129== still reachable: 279,227 bytes in 764 blocks ==7129== of which reachable via heuristic: ==7129== length64 : 4,664 bytes in 74 blocks ==7129== newarray : 6,296 bytes in 48 blocks ==7129== suppressed: 520,743 bytes in 7,890 blocks ==7129== Rerun with --leak-check=full to see details of leaked memory ==7129== ==7129== For counts of detected and suppressed errors, rerun with: -v ==7129== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7151== Memcheck, a memory error detector ==7151== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7151== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7151== Command: ./client-test Client::Source::eds_contact::testReadItem404 ==7151== Parent PID: 115 ==7151== ==7151== ==7151== HEAP SUMMARY: ==7151== in use at exit: 872,331 bytes in 9,231 blocks ==7151== total heap usage: 145,424 allocs, 136,193 frees, 14,136,722 bytes allocated ==7151== ==7151== LEAK SUMMARY: ==7151== definitely lost: 0 bytes in 0 blocks ==7151== indirectly lost: 0 bytes in 0 blocks ==7151== possibly lost: 528 bytes in 2 blocks ==7151== still reachable: 280,587 bytes in 787 blocks ==7151== of which reachable via heuristic: ==7151== length64 : 4,664 bytes in 74 blocks ==7151== newarray : 6,296 bytes in 48 blocks ==7151== suppressed: 522,992 bytes in 7,925 blocks ==7151== Rerun with --leak-check=full to see details of leaked memory ==7151== ==7151== For counts of detected and suppressed errors, rerun with: -v ==7151== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7172== Memcheck, a memory error detector ==7172== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7172== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7172== Command: ./client-test Client::Source::eds_contact::testSimpleInsert ==7172== Parent PID: 115 ==7172== ==7172== ==7172== HEAP SUMMARY: ==7172== in use at exit: 925,266 bytes in 9,676 blocks ==7172== total heap usage: 164,469 allocs, 154,793 frees, 15,320,641 bytes allocated ==7172== ==7172== LEAK SUMMARY: ==7172== definitely lost: 0 bytes in 0 blocks ==7172== indirectly lost: 0 bytes in 0 blocks ==7172== possibly lost: 960 bytes in 3 blocks ==7172== still reachable: 280,111 bytes in 745 blocks ==7172== of which reachable via heuristic: ==7172== length64 : 4,664 bytes in 74 blocks ==7172== newarray : 6,296 bytes in 48 blocks ==7172== suppressed: 555,275 bytes in 8,276 blocks ==7172== Rerun with --leak-check=full to see details of leaked memory ==7172== ==7172== For counts of detected and suppressed errors, rerun with: -v ==7172== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7198== Memcheck, a memory error detector ==7198== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7198== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7198== Command: ./client-test Client::Source::eds_contact::testLocalDeleteAll ==7198== Parent PID: 115 ==7198== ==7198== ==7198== HEAP SUMMARY: ==7198== in use at exit: 924,500 bytes in 9,679 blocks ==7198== total heap usage: 200,319 allocs, 190,640 frees, 17,469,622 bytes allocated ==7198== ==7198== LEAK SUMMARY: ==7198== definitely lost: 0 bytes in 0 blocks ==7198== indirectly lost: 0 bytes in 0 blocks ==7198== possibly lost: 960 bytes in 3 blocks ==7198== still reachable: 280,679 bytes in 755 blocks ==7198== of which reachable via heuristic: ==7198== length64 : 4,664 bytes in 74 blocks ==7198== newarray : 6,296 bytes in 48 blocks ==7198== suppressed: 553,773 bytes in 8,267 blocks ==7198== Rerun with --leak-check=full to see details of leaked memory ==7198== ==7198== For counts of detected and suppressed errors, rerun with: -v ==7198== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7233== Memcheck, a memory error detector ==7233== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7233== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7233== Command: ./client-test Client::Source::eds_contact::testComplexInsert ==7233== Parent PID: 115 ==7233== ==7233== ==7233== HEAP SUMMARY: ==7233== in use at exit: 932,310 bytes in 9,791 blocks ==7233== total heap usage: 215,109 allocs, 205,318 frees, 18,371,342 bytes allocated ==7233== ==7233== LEAK SUMMARY: ==7233== definitely lost: 0 bytes in 0 blocks ==7233== indirectly lost: 0 bytes in 0 blocks ==7233== possibly lost: 960 bytes in 3 blocks ==7233== still reachable: 287,183 bytes in 879 blocks ==7233== of which reachable via heuristic: ==7233== length64 : 4,664 bytes in 74 blocks ==7233== newarray : 6,296 bytes in 48 blocks ==7233== suppressed: 555,079 bytes in 8,255 blocks ==7233== Rerun with --leak-check=full to see details of leaked memory ==7233== ==7233== For counts of detected and suppressed errors, rerun with: -v ==7233== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7272== Memcheck, a memory error detector ==7272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7272== Command: ./client-test Client::Source::eds_contact::testLocalUpdate ==7272== Parent PID: 115 ==7272== ==7272== ==7272== HEAP SUMMARY: ==7272== in use at exit: 921,950 bytes in 9,596 blocks ==7272== total heap usage: 235,526 allocs, 225,930 frees, 19,609,916 bytes allocated ==7272== ==7272== LEAK SUMMARY: ==7272== definitely lost: 0 bytes in 0 blocks ==7272== indirectly lost: 0 bytes in 0 blocks ==7272== possibly lost: 960 bytes in 3 blocks ==7272== still reachable: 279,431 bytes in 738 blocks ==7272== of which reachable via heuristic: ==7272== length64 : 4,664 bytes in 74 blocks ==7272== newarray : 6,296 bytes in 48 blocks ==7272== suppressed: 552,639 bytes in 8,203 blocks ==7272== Rerun with --leak-check=full to see details of leaked memory ==7272== ==7272== For counts of detected and suppressed errors, rerun with: -v ==7272== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7317== Memcheck, a memory error detector ==7317== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7317== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7317== Command: ./client-test Client::Source::eds_contact::testChanges ==7317== Parent PID: 115 ==7317== ==7317== ==7317== HEAP SUMMARY: ==7317== in use at exit: 923,351 bytes in 9,626 blocks ==7317== total heap usage: 796,804 allocs, 787,178 frees, 53,440,620 bytes allocated ==7317== ==7317== LEAK SUMMARY: ==7317== definitely lost: 0 bytes in 0 blocks ==7317== indirectly lost: 0 bytes in 0 blocks ==7317== possibly lost: 960 bytes in 3 blocks ==7317== still reachable: 279,843 bytes in 744 blocks ==7317== of which reachable via heuristic: ==7317== length64 : 4,664 bytes in 74 blocks ==7317== newarray : 6,296 bytes in 48 blocks ==7317== suppressed: 553,628 bytes in 8,227 blocks ==7317== Rerun with --leak-check=full to see details of leaked memory ==7317== ==7317== For counts of detected and suppressed errors, rerun with: -v ==7317== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==738== Memcheck, a memory error detector ==738== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==738== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==738== Command: ./client-test Client::Source::eds_event::testImport ==738== Parent PID: 703 ==738== ==747== Memcheck, a memory error detector ==747== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==747== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==747== Command: ./client-test Client::Source::eds_event::testImportDelete ==747== Parent PID: 115 ==747== ==747== ==747== HEAP SUMMARY: ==747== in use at exit: 1,110,489 bytes in 12,191 blocks ==747== total heap usage: 375,248 allocs, 363,057 frees, 31,480,215 bytes allocated ==747== ==747== LEAK SUMMARY: ==747== definitely lost: 0 bytes in 0 blocks ==747== indirectly lost: 0 bytes in 0 blocks ==747== possibly lost: 528 bytes in 2 blocks ==747== still reachable: 433,755 bytes in 3,232 blocks ==747== of which reachable via heuristic: ==747== length64 : 4,688 bytes in 74 blocks ==747== newarray : 6,312 bytes in 49 blocks ==747== suppressed: 606,966 bytes in 8,428 blocks ==747== Rerun with --leak-check=full to see details of leaked memory ==747== ==747== For counts of detected and suppressed errors, rerun with: -v ==747== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7502== Memcheck, a memory error detector ==7502== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7502== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7502== Command: ./client-test Client::Source::eds_contact::testChangesMultiCycles ==7502== Parent PID: 115 ==7502== ==7502== ==7502== HEAP SUMMARY: ==7502== in use at exit: 927,003 bytes in 9,687 blocks ==7502== total heap usage: 709,567 allocs, 699,880 frees, 45,839,192 bytes allocated ==7502== ==7502== LEAK SUMMARY: ==7502== definitely lost: 0 bytes in 0 blocks ==7502== indirectly lost: 0 bytes in 0 blocks ==7502== possibly lost: 960 bytes in 3 blocks ==7502== still reachable: 285,002 bytes in 827 blocks ==7502== of which reachable via heuristic: ==7502== length64 : 4,664 bytes in 74 blocks ==7502== newarray : 6,296 bytes in 48 blocks ==7502== suppressed: 552,121 bytes in 8,205 blocks ==7502== Rerun with --leak-check=full to see details of leaked memory ==7502== ==7502== For counts of detected and suppressed errors, rerun with: -v ==7502== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7687== Memcheck, a memory error detector ==7687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7687== Command: ./client-test Client::Source::eds_contact::testImport ==7687== Parent PID: 115 ==7687== ==7687== ==7687== HEAP SUMMARY: ==7687== in use at exit: 926,914 bytes in 9,692 blocks ==7687== total heap usage: 262,828 allocs, 253,136 frees, 23,663,652 bytes allocated ==7687== ==7687== LEAK SUMMARY: ==7687== definitely lost: 0 bytes in 0 blocks ==7687== indirectly lost: 0 bytes in 0 blocks ==7687== possibly lost: 960 bytes in 3 blocks ==7687== still reachable: 284,559 bytes in 826 blocks ==7687== of which reachable via heuristic: ==7687== length64 : 4,664 bytes in 74 blocks ==7687== newarray : 6,296 bytes in 48 blocks ==7687== suppressed: 552,475 bytes in 8,211 blocks ==7687== Rerun with --leak-check=full to see details of leaked memory ==7687== ==7687== For counts of detected and suppressed errors, rerun with: -v ==7687== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7725== Memcheck, a memory error detector ==7725== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7725== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7725== Command: ./client-test Client::Source::eds_contact::testImport ==7725== Parent PID: 7687 ==7725== ==7734== Memcheck, a memory error detector ==7734== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7734== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7734== Command: ./client-test Client::Source::eds_contact::testImportDelete ==7734== Parent PID: 115 ==7734== ==7734== ==7734== HEAP SUMMARY: ==7734== in use at exit: 928,995 bytes in 9,720 blocks ==7734== total heap usage: 319,117 allocs, 309,397 frees, 27,337,846 bytes allocated ==7734== ==7734== LEAK SUMMARY: ==7734== definitely lost: 0 bytes in 0 blocks ==7734== indirectly lost: 0 bytes in 0 blocks ==7734== possibly lost: 960 bytes in 3 blocks ==7734== still reachable: 284,975 bytes in 826 blocks ==7734== of which reachable via heuristic: ==7734== length64 : 4,664 bytes in 74 blocks ==7734== newarray : 6,296 bytes in 48 blocks ==7734== suppressed: 554,140 bytes in 8,239 blocks ==7734== Rerun with --leak-check=full to see details of leaked memory ==7734== ==7734== For counts of detected and suppressed errors, rerun with: -v ==7734== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7771== Memcheck, a memory error detector ==7771== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7771== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7771== Command: ./client-test Client::Source::eds_contact::testImportDelete ==7771== Parent PID: 7734 ==7771== ==7789== Memcheck, a memory error detector ==7789== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7789== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7789== Command: ./client-test Client::Source::eds_contact::testRemoveProperties ==7789== Parent PID: 115 ==7789== ==7789== ==7789== HEAP SUMMARY: ==7789== in use at exit: 926,615 bytes in 9,678 blocks ==7789== total heap usage: 327,476 allocs, 317,798 frees, 30,351,264 bytes allocated ==7789== ==7789== LEAK SUMMARY: ==7789== definitely lost: 0 bytes in 0 blocks ==7789== indirectly lost: 0 bytes in 0 blocks ==7789== possibly lost: 960 bytes in 3 blocks ==7789== still reachable: 284,332 bytes in 815 blocks ==7789== of which reachable via heuristic: ==7789== length64 : 4,664 bytes in 74 blocks ==7789== newarray : 6,296 bytes in 48 blocks ==7789== suppressed: 552,403 bytes in 8,208 blocks ==7789== Rerun with --leak-check=full to see details of leaked memory ==7789== ==7789== For counts of detected and suppressed errors, rerun with: -v ==7789== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_event::testImportDelete ==783== Parent PID: 747 ==783== ==7830== Memcheck, a memory error detector ==7830== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7830== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7830== Command: ./client-test Client::Source::eds_contact::testRemoveProperties ==7830== Parent PID: 7789 ==7830== ==7839== Memcheck, a memory error detector ==7839== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7839== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7839== Command: ./client-test Client::Source::eds_contact::testManyChanges ==7839== Parent PID: 115 ==7839== ==7839== ==7839== HEAP SUMMARY: ==7839== in use at exit: 926,988 bytes in 9,660 blocks ==7839== total heap usage: 513,351 allocs, 503,691 frees, 44,937,939 bytes allocated ==7839== ==7839== LEAK SUMMARY: ==7839== definitely lost: 0 bytes in 0 blocks ==7839== indirectly lost: 0 bytes in 0 blocks ==7839== possibly lost: 960 bytes in 3 blocks ==7839== still reachable: 282,271 bytes in 748 blocks ==7839== of which reachable via heuristic: ==7839== length64 : 4,664 bytes in 74 blocks ==7839== newarray : 6,296 bytes in 48 blocks ==7839== suppressed: 554,669 bytes in 8,255 blocks ==7839== Rerun with --leak-check=full to see details of leaked memory ==7839== ==7839== For counts of detected and suppressed errors, rerun with: -v ==7839== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7891== Memcheck, a memory error detector ==7891== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7891== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7891== Command: ./client-test Client::Source::eds_memo::testOpen ==7891== Parent PID: 115 ==7891== ==7891== ==7891== HEAP SUMMARY: ==7891== in use at exit: 949,154 bytes in 9,593 blocks ==7891== total heap usage: 131,853 allocs, 122,260 frees, 13,324,408 bytes allocated ==7891== ==7891== LEAK SUMMARY: ==7891== definitely lost: 0 bytes in 0 blocks ==7891== indirectly lost: 0 bytes in 0 blocks ==7891== possibly lost: 528 bytes in 2 blocks ==7891== still reachable: 278,747 bytes in 733 blocks ==7891== of which reachable via heuristic: ==7891== length64 : 4,448 bytes in 71 blocks ==7891== newarray : 6,296 bytes in 48 blocks ==7891== suppressed: 602,423 bytes in 8,349 blocks ==7891== Rerun with --leak-check=full to see details of leaked memory ==7891== ==7891== For counts of detected and suppressed errors, rerun with: -v ==7891== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7908== Memcheck, a memory error detector ==7908== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7908== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7908== Command: ./client-test Client::Source::eds_memo::testIterateTwice ==7908== Parent PID: 115 ==7908== ==7908== ==7908== HEAP SUMMARY: ==7908== in use at exit: 948,606 bytes in 9,593 blocks ==7908== total heap usage: 136,149 allocs, 126,556 frees, 13,529,218 bytes allocated ==7908== ==7908== LEAK SUMMARY: ==7908== definitely lost: 0 bytes in 0 blocks ==7908== indirectly lost: 0 bytes in 0 blocks ==7908== possibly lost: 528 bytes in 2 blocks ==7908== still reachable: 275,939 bytes in 723 blocks ==7908== of which reachable via heuristic: ==7908== length64 : 4,688 bytes in 74 blocks ==7908== newarray : 6,312 bytes in 49 blocks ==7908== suppressed: 603,067 bytes in 8,341 blocks ==7908== Rerun with --leak-check=full to see details of leaked memory ==7908== ==7908== For counts of detected and suppressed errors, rerun with: -v ==7908== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7926== Memcheck, a memory error detector ==7926== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7926== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7926== Command: ./client-test Client::Source::eds_memo::testDelete404 ==7926== Parent PID: 115 ==7926== ==7926== ==7926== HEAP SUMMARY: ==7926== in use at exit: 954,065 bytes in 9,695 blocks ==7926== total heap usage: 136,162 allocs, 126,467 frees, 13,523,226 bytes allocated ==7926== ==7926== LEAK SUMMARY: ==7926== definitely lost: 0 bytes in 0 blocks ==7926== indirectly lost: 0 bytes in 0 blocks ==7926== possibly lost: 528 bytes in 2 blocks ==7926== still reachable: 277,627 bytes in 733 blocks ==7926== of which reachable via heuristic: ==7926== length64 : 4,688 bytes in 74 blocks ==7926== newarray : 6,312 bytes in 49 blocks ==7926== suppressed: 606,838 bytes in 8,433 blocks ==7926== Rerun with --leak-check=full to see details of leaked memory ==7926== ==7926== For counts of detected and suppressed errors, rerun with: -v ==7926== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7944== Memcheck, a memory error detector ==7944== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7944== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7944== Command: ./client-test Client::Source::eds_memo::testReadItem404 ==7944== Parent PID: 115 ==7944== ==7944== ==7944== HEAP SUMMARY: ==7944== in use at exit: 950,063 bytes in 9,618 blocks ==7944== total heap usage: 136,350 allocs, 126,732 frees, 13,527,153 bytes allocated ==7944== ==7944== LEAK SUMMARY: ==7944== definitely lost: 0 bytes in 0 blocks ==7944== indirectly lost: 0 bytes in 0 blocks ==7944== possibly lost: 528 bytes in 2 blocks ==7944== still reachable: 276,459 bytes in 725 blocks ==7944== of which reachable via heuristic: ==7944== length64 : 4,688 bytes in 74 blocks ==7944== newarray : 6,312 bytes in 49 blocks ==7944== suppressed: 604,004 bytes in 8,364 blocks ==7944== Rerun with --leak-check=full to see details of leaked memory ==7944== ==7944== For counts of detected and suppressed errors, rerun with: -v ==7944== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7962== Memcheck, a memory error detector ==7962== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7962== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7962== Command: ./client-test Client::Source::eds_memo::testSimpleInsert ==7962== Parent PID: 115 ==7962== ==7962== ==7962== HEAP SUMMARY: ==7962== in use at exit: 952,299 bytes in 9,661 blocks ==7962== total heap usage: 159,088 allocs, 149,427 frees, 14,784,383 bytes allocated ==7962== ==7962== LEAK SUMMARY: ==7962== definitely lost: 0 bytes in 0 blocks ==7962== indirectly lost: 0 bytes in 0 blocks ==7962== possibly lost: 528 bytes in 2 blocks ==7962== still reachable: 277,323 bytes in 734 blocks ==7962== of which reachable via heuristic: ==7962== length64 : 4,688 bytes in 74 blocks ==7962== newarray : 6,312 bytes in 49 blocks ==7962== suppressed: 605,208 bytes in 8,396 blocks ==7962== Rerun with --leak-check=full to see details of leaked memory ==7962== ==7962== For counts of detected and suppressed errors, rerun with: -v ==7962== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==799== Memcheck, a memory error detector ==799== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==799== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==799== Command: ./client-test Client::Source::eds_event::testRemoveProperties ==799== Parent PID: 115 ==799== ==799== ==799== HEAP SUMMARY: ==799== in use at exit: 1,110,616 bytes in 12,203 blocks ==799== total heap usage: 374,337 allocs, 362,134 frees, 35,279,611 bytes allocated ==799== ==799== LEAK SUMMARY: ==799== definitely lost: 0 bytes in 0 blocks ==799== indirectly lost: 0 bytes in 0 blocks ==799== possibly lost: 528 bytes in 2 blocks ==799== still reachable: 433,291 bytes in 3,226 blocks ==799== of which reachable via heuristic: ==799== length64 : 4,688 bytes in 74 blocks ==799== newarray : 6,312 bytes in 49 blocks ==799== suppressed: 607,725 bytes in 8,448 blocks ==799== Rerun with --leak-check=full to see details of leaked memory ==799== ==799== For counts of detected and suppressed errors, rerun with: -v ==799== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7992== Memcheck, a memory error detector ==7992== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7992== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7992== Command: ./client-test Client::Source::eds_memo::testLocalDeleteAll ==7992== Parent PID: 115 ==7992== ==7992== ==7992== HEAP SUMMARY: ==7992== in use at exit: 952,184 bytes in 9,667 blocks ==7992== total heap usage: 203,349 allocs, 193,682 frees, 17,248,815 bytes allocated ==7992== ==7992== LEAK SUMMARY: ==7992== definitely lost: 0 bytes in 0 blocks ==7992== indirectly lost: 0 bytes in 0 blocks ==7992== possibly lost: 528 bytes in 2 blocks ==7992== still reachable: 277,763 bytes in 735 blocks ==7992== of which reachable via heuristic: ==7992== length64 : 4,688 bytes in 74 blocks ==7992== newarray : 6,312 bytes in 49 blocks ==7992== suppressed: 604,821 bytes in 8,403 blocks ==7992== Rerun with --leak-check=full to see details of leaked memory ==7992== ==7992== For counts of detected and suppressed errors, rerun with: -v ==7992== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8046== Memcheck, a memory error detector ==8046== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8046== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8046== Command: ./client-test Client::Source::eds_memo::testComplexInsert ==8046== Parent PID: 115 ==8046== ==8046== ==8046== HEAP SUMMARY: ==8046== in use at exit: 952,547 bytes in 9,663 blocks ==8046== total heap usage: 223,674 allocs, 214,011 frees, 18,318,157 bytes allocated ==8046== ==8046== LEAK SUMMARY: ==8046== definitely lost: 0 bytes in 0 blocks ==8046== indirectly lost: 0 bytes in 0 blocks ==8046== possibly lost: 528 bytes in 2 blocks ==8046== still reachable: 277,323 bytes in 734 blocks ==8046== of which reachable via heuristic: ==8046== length64 : 4,688 bytes in 74 blocks ==8046== newarray : 6,312 bytes in 49 blocks ==8046== suppressed: 605,456 bytes in 8,398 blocks ==8046== Rerun with --leak-check=full to see details of leaked memory ==8046== ==8046== For counts of detected and suppressed errors, rerun with: -v ==8046== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8113== Memcheck, a memory error detector ==8113== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8113== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8113== Command: ./client-test Client::Source::eds_memo::testLocalUpdate ==8113== Parent PID: 115 ==8113== ==8113== ==8113== HEAP SUMMARY: ==8113== in use at exit: 949,012 bytes in 9,621 blocks ==8113== total heap usage: 248,569 allocs, 238,948 frees, 19,712,238 bytes allocated ==8113== ==8113== LEAK SUMMARY: ==8113== definitely lost: 0 bytes in 0 blocks ==8113== indirectly lost: 0 bytes in 0 blocks ==8113== possibly lost: 528 bytes in 2 blocks ==8113== still reachable: 275,659 bytes in 726 blocks ==8113== of which reachable via heuristic: ==8113== length64 : 4,688 bytes in 74 blocks ==8113== newarray : 6,312 bytes in 49 blocks ==8113== suppressed: 603,753 bytes in 8,366 blocks ==8113== Rerun with --leak-check=full to see details of leaked memory ==8113== ==8113== For counts of detected and suppressed errors, rerun with: -v ==8113== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8193== Memcheck, a memory error detector ==8193== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8193== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8193== Command: ./client-test Client::Source::eds_memo::testChanges ==8193== Parent PID: 115 ==8193== ==8193== ==8193== HEAP SUMMARY: ==8193== in use at exit: 952,096 bytes in 9,652 blocks ==8193== total heap usage: 957,253 allocs, 947,601 frees, 58,570,939 bytes allocated ==8193== ==8193== LEAK SUMMARY: ==8193== definitely lost: 0 bytes in 0 blocks ==8193== indirectly lost: 0 bytes in 0 blocks ==8193== possibly lost: 528 bytes in 2 blocks ==8193== still reachable: 277,019 bytes in 728 blocks ==8193== of which reachable via heuristic: ==8193== length64 : 4,688 bytes in 74 blocks ==8193== newarray : 6,312 bytes in 49 blocks ==8193== suppressed: 605,477 bytes in 8,395 blocks ==8193== Rerun with --leak-check=full to see details of leaked memory ==8193== ==8193== For counts of detected and suppressed errors, rerun with: -v ==8193== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==839== Memcheck, a memory error detector ==839== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==839== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==839== Command: ./client-test Client::Source::eds_event::testRemoveProperties ==839== Parent PID: 799 ==839== ==847== Memcheck, a memory error detector ==847== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==847== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==847== Command: ./client-test Client::Source::eds_event::testManyChanges ==847== Parent PID: 115 ==847== ==847== ==847== HEAP SUMMARY: ==847== in use at exit: 950,413 bytes in 9,600 blocks ==847== total heap usage: 611,516 allocs, 601,916 frees, 49,824,747 bytes allocated ==847== ==847== LEAK SUMMARY: ==847== definitely lost: 0 bytes in 0 blocks ==847== indirectly lost: 0 bytes in 0 blocks ==847== possibly lost: 528 bytes in 2 blocks ==847== still reachable: 278,599 bytes in 729 blocks ==847== of which reachable via heuristic: ==847== length64 : 4,688 bytes in 74 blocks ==847== newarray : 6,312 bytes in 49 blocks ==847== suppressed: 602,214 bytes in 8,342 blocks ==847== Rerun with --leak-check=full to see details of leaked memory ==847== ==847== For counts of detected and suppressed errors, rerun with: -v ==847== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::Source::eds_memo::testChangesMultiCycles ==8655== Parent PID: 115 ==8655== ==8655== ==8655== HEAP SUMMARY: ==8655== in use at exit: 952,280 bytes in 9,670 blocks ==8655== total heap usage: 871,786 allocs, 862,116 frees, 51,048,344 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: 528 bytes in 2 blocks ==8655== still reachable: 277,763 bytes in 735 blocks ==8655== of which reachable via heuristic: ==8655== length64 : 4,688 bytes in 74 blocks ==8655== newarray : 6,312 bytes in 49 blocks ==8655== suppressed: 604,917 bytes in 8,406 blocks ==8655== Rerun with --leak-check=full to see details of leaked memory ==8655== ==8655== For counts of detected and suppressed errors, rerun with: -v ==8655== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==896== Memcheck, a memory error detector ==896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==896== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==896== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent ==896== Parent PID: 115 ==896== ==896== ==896== HEAP SUMMARY: ==896== in use at exit: 1,113,312 bytes in 12,231 blocks ==896== total heap usage: 326,105 allocs, 313,874 frees, 25,784,733 bytes allocated ==896== ==896== LEAK SUMMARY: ==896== definitely lost: 0 bytes in 0 blocks ==896== indirectly lost: 0 bytes in 0 blocks ==896== possibly lost: 528 bytes in 2 blocks ==896== still reachable: 436,461 bytes in 3,276 blocks ==896== of which reachable via heuristic: ==896== length64 : 4,688 bytes in 74 blocks ==896== newarray : 6,312 bytes in 49 blocks ==896== suppressed: 607,251 bytes in 8,426 blocks ==896== Rerun with --leak-check=full to see details of leaked memory ==896== ==896== For counts of detected and suppressed errors, rerun with: -v ==896== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9119== Memcheck, a memory error detector ==9119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9119== Command: ./client-test Client::Source::eds_memo::testImport ==9119== Parent PID: 115 ==9119== ==9119== ==9119== HEAP SUMMARY: ==9119== in use at exit: 953,497 bytes in 9,682 blocks ==9119== total heap usage: 212,995 allocs, 203,313 frees, 18,029,827 bytes allocated ==9119== ==9119== LEAK SUMMARY: ==9119== definitely lost: 0 bytes in 0 blocks ==9119== indirectly lost: 0 bytes in 0 blocks ==9119== possibly lost: 528 bytes in 2 blocks ==9119== still reachable: 277,283 bytes in 730 blocks ==9119== of which reachable via heuristic: ==9119== length64 : 4,688 bytes in 74 blocks ==9119== newarray : 6,312 bytes in 49 blocks ==9119== suppressed: 606,614 bytes in 8,423 blocks ==9119== Rerun with --leak-check=full to see details of leaked memory ==9119== ==9119== For counts of detected and suppressed errors, rerun with: -v ==9119== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9175== Memcheck, a memory error detector ==9175== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9175== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9175== Command: ./client-test Client::Source::eds_memo::testImport ==9175== Parent PID: 9119 ==9175== ==9183== Memcheck, a memory error detector ==9183== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9183== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9183== Command: ./client-test Client::Source::eds_memo::testImportDelete ==9183== Parent PID: 115 ==9183== ==9183== ==9183== HEAP SUMMARY: ==9183== in use at exit: 954,219 bytes in 9,707 blocks ==9183== total heap usage: 263,719 allocs, 254,012 frees, 20,805,137 bytes allocated ==9183== ==9183== LEAK SUMMARY: ==9183== definitely lost: 0 bytes in 0 blocks ==9183== indirectly lost: 0 bytes in 0 blocks ==9183== possibly lost: 528 bytes in 2 blocks ==9183== still reachable: 277,219 bytes in 732 blocks ==9183== of which reachable via heuristic: ==9183== length64 : 4,688 bytes in 74 blocks ==9183== newarray : 6,312 bytes in 49 blocks ==9183== suppressed: 607,400 bytes in 8,446 blocks ==9183== Rerun with --leak-check=full to see details of leaked memory ==9183== ==9183== For counts of detected and suppressed errors, rerun with: -v ==9183== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9239== Memcheck, a memory error detector ==9239== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9239== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9239== Command: ./client-test Client::Source::eds_memo::testImportDelete ==9239== Parent PID: 9183 ==9239== ==9271== Memcheck, a memory error detector ==9271== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9271== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9271== Command: ./client-test Client::Source::eds_memo::testRemoveProperties ==9271== Parent PID: 115 ==9271== ==9271== ==9271== HEAP SUMMARY: ==9271== in use at exit: 958,665 bytes in 9,764 blocks ==9271== total heap usage: 242,520 allocs, 232,756 frees, 20,067,882 bytes allocated ==9271== ==9271== LEAK SUMMARY: ==9271== definitely lost: 0 bytes in 0 blocks ==9271== indirectly lost: 0 bytes in 0 blocks ==9271== possibly lost: 528 bytes in 2 blocks ==9271== still reachable: 281,751 bytes in 803 blocks ==9271== of which reachable via heuristic: ==9271== length64 : 4,688 bytes in 74 blocks ==9271== newarray : 6,312 bytes in 49 blocks ==9271== suppressed: 607,314 bytes in 8,432 blocks ==9271== Rerun with --leak-check=full to see details of leaked memory ==9271== ==9271== For counts of detected and suppressed errors, rerun with: -v ==9271== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9339== Memcheck, a memory error detector ==9339== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9339== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9339== Command: ./client-test Client::Source::eds_memo::testRemoveProperties ==9339== Parent PID: 9271 ==9339== ==9347== Memcheck, a memory error detector ==9347== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9347== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9347== Command: ./client-test Client::Source::eds_memo::testManyChanges ==9347== Parent PID: 115 ==9347== ==9347== ==9347== HEAP SUMMARY: ==9347== in use at exit: 954,793 bytes in 9,695 blocks ==9347== total heap usage: 515,649 allocs, 505,954 frees, 42,041,044 bytes allocated ==9347== ==9347== LEAK SUMMARY: ==9347== definitely lost: 0 bytes in 0 blocks ==9347== indirectly lost: 0 bytes in 0 blocks ==9347== possibly lost: 528 bytes in 2 blocks ==9347== still reachable: 278,691 bytes in 735 blocks ==9347== of which reachable via heuristic: ==9347== length64 : 4,688 bytes in 74 blocks ==9347== newarray : 6,312 bytes in 49 blocks ==9347== suppressed: 606,502 bytes in 8,431 blocks ==9347== Rerun with --leak-check=full to see details of leaked memory ==9347== ==9347== For counts of detected and suppressed errors, rerun with: -v ==9347== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==939== Memcheck, a memory error detector ==939== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==939== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==939== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent ==939== Parent PID: 896 ==939== ==959== Memcheck, a memory error detector ==959== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==959== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==959== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild ==959== Parent PID: 115 ==959== ==959== ==959== HEAP SUMMARY: ==959== in use at exit: 1,109,922 bytes in 12,177 blocks ==959== total heap usage: 326,094 allocs, 313,917 frees, 25,761,165 bytes allocated ==959== ==959== LEAK SUMMARY: ==959== definitely lost: 0 bytes in 0 blocks ==959== indirectly lost: 0 bytes in 0 blocks ==959== possibly lost: 528 bytes in 2 blocks ==959== still reachable: 433,535 bytes in 3,229 blocks ==959== of which reachable via heuristic: ==959== length64 : 4,688 bytes in 74 blocks ==959== newarray : 6,312 bytes in 49 blocks ==959== suppressed: 606,787 bytes in 8,419 blocks ==959== Rerun with --leak-check=full to see details of leaked memory ==959== ==959== For counts of detected and suppressed errors, rerun with: -v ==959== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) valgrindcheck: ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo: final result 0 wrappercheck-104 line 100: RET=0 wrappercheck-104 line 101: set -e wrappercheck-104 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-104 line 108: kill -INT -106 wrappercheck-104 line 108: kill -TERM -106 wrappercheck-104 line 108: kill -TERM 106 wrappercheck-104 line 110: KILL_PID=12435 wrappercheck-104 line 115: set +e wrappercheck-104 line 116: wait 106 wrappercheck-104 line 109: perl -e 'sleep(60); kill(9, -106);' wrappercheck-104 line 117: SUBRET=143 wrappercheck-104 line 118: case $SUBRET in wrappercheck-104 line 118: SUBRET=0 wrappercheck-104 line 120: SUBRET=0 wrappercheck-104 line 121: '[' 12435 ']' wwrappercheck-104 line 122: LC_ALL=C wwrappercheck-104 line 122: kill -KILL 12435 wrappercheck-104 line 122: msg= wrappercheck-104 line 123: grep -q 'No such process' wrappercheck-104 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 12435 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-104 line 127: echo '' wrappercheck-104 line 129: wait 12435 wrappercheck-104 line 131: set -e wrappercheck-104 line 132: '[' 0 = 0 ']' wrappercheck-104 line 133: RET=0 wrappercheck-104 line 136: exit 0 wrappercheck-84 line 100: RET=0 wrappercheck-84 line 101: set -e wrappercheck-84 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-84 line 108: kill -INT -86 wrappercheck-84 line 108: kill -TERM -86 wrappercheck-84 line 108: kill -TERM 86 wrappercheck-84 line 110: KILL_PID=12440 wrappercheck-84 line 109: perl -e 'sleep(60); kill(9, -86);' wrappercheck-84 line 115: set +e wrappercheck-84 line 116: wait 86 wrappercheck-84 line 117: SUBRET=143 wrappercheck-84 line 118: case $SUBRET in wrappercheck-84 line 118: SUBRET=0 wrappercheck-84 line 120: SUBRET=0 wrappercheck-84 line 121: '[' 12440 ']' wwrappercheck-84 line 122: LC_ALL=C wwrappercheck-84 line 122: kill -KILL 12440 wrappercheck-84 line 122: msg= wrappercheck-84 line 123: echo '' wrappercheck-84 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 12440 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-84 line 127: echo '' wrappercheck-84 line 129: wait 12440 wrappercheck-84 line 131: set -e wrappercheck-84 line 132: '[' 0 = 0 ']' wrappercheck-84 line 133: RET=0 wrappercheck-84 line 136: exit 0 wrappercheck-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=12445 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 30 wrappercheck-25 line 117: SUBRET=143 wrappercheck-25 line 118: case $SUBRET in wrappercheck-25 line 118: SUBRET=0 wrappercheck-25 line 120: SUBRET=0 wrappercheck-25 line 121: '[' 12445 ']' wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 12445 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 12445 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 12445 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=12450 wrappercheck-19 line 115: set +e wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' 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: '[' 12450 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 12450 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: 12450 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 12450 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.MA34HXFd1P Fri Jan 5 16:25:18 2018 UTC (+ 2296.8s / 2353.3s) === cleaning up ===