runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 1.9s / 65.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-i386/home/eds/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/data/runtests/work/prebuilt-testing-i386/home/eds/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/eds/data runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) === starting eds === runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/7-eds, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/7-eds runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/eds (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/eds) runtests.py-32138 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/eds; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' '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-i386/home/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/cache'; unset ; /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-i386/tests/eds -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib 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:30:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['eds'] === Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:31:25 2018 UTC (+ 28.6s / 28.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-cppcheck] 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-i386 chroot] Running command: “env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib 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” + 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: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=17 wrappercheck-15 line 73: PIDS+=17 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' ** Message: couldn't access control socket: /tmp/tmp.zEIV8zjllx/keyring/control: No such file or directory wrappercheck-15 line 70: set -x wrappercheck-15 line 99: set -x wrappercheck-15 line 70: exec 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-20 line 16: PIDS= wrappercheck-20 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-20 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-20 line 21: DAEMON_LOG= wrappercheck-20 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-20 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-20 line 25: declare -a BACKGROUND wrappercheck-20 line 26: declare -a ENV wrappercheck-20 line 28: '[' 29 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 31: shift wrappercheck-20 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 27 -gt 1 ']' wrappercheck-20 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 43: shift wrappercheck-20 line 44: DAEMON_SLEEP=5 wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 25 -gt 1 ']' wrappercheck-20 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 35: shift wrappercheck-20 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-20 line 53: shift wrappercheck-20 line 28: '[' 23 -gt 1 ']' wrappercheck-20 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 29: case "$1" in wrappercheck-20 line 50: break wrappercheck-20 line 56: '[' 23 -gt 1 ']' wrappercheck-20 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-20 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-20 line 58: shift wrappercheck-20 line 56: '[' 22 -gt 1 ']' wrappercheck-20 line 56: '[' -- '!=' -- ']' wrappercheck-20 line 60: shift wrappercheck-20 line 62: '[' evolution-source-registry.log ']' wrappercheck-20 line 62: '[' '' ']' wrappercheck-20 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-20 line 72: BACKGROUND_PID=24 wrappercheck-20 line 73: PIDS+=24 wrappercheck-20 line 75: '[' evolution-source-registry.log ']' wrappercheck-20 line 75: '[' '' ']' wrappercheck-20 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-20 line 70: set -x wrappercheck-20 line 70: exec wrappercheck-20 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-20 line 93: kill -0 24 wrappercheck-20 line 94: set +e wrappercheck-20 line 95: '[' 5 ']' wrappercheck-20 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-20 line 97: sleep 5 wrappercheck-20 line 99: set -x wrappercheck-20 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh eds ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-72 line 16: PIDS= wrappercheck-72 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-72 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-72 line 21: DAEMON_LOG= wrappercheck-72 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-72 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-72 line 25: declare -a BACKGROUND wrappercheck-72 line 26: declare -a ENV wrappercheck-72 line 28: '[' 20 -gt 1 ']' wrappercheck-72 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 31: shift wrappercheck-72 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-72 line 53: shift wrappercheck-72 line 28: '[' 18 -gt 1 ']' wrappercheck-72 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 35: shift wrappercheck-72 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-72 line 53: shift wrappercheck-72 line 28: '[' 16 -gt 1 ']' wrappercheck-72 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-72 line 29: case "$1" in wrappercheck-72 line 50: break wrappercheck-72 line 56: '[' 16 -gt 1 ']' wrappercheck-72 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 15 -gt 1 ']' wrappercheck-72 line 56: '[' --keep-running '!=' -- ']' wrappercheck-72 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-72 line 58: shift wrappercheck-72 line 56: '[' 14 -gt 1 ']' wrappercheck-72 line 56: '[' -- '!=' -- ']' wrappercheck-72 line 60: shift wrappercheck-72 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-72 line 62: '[' '' ']' wrappercheck-72 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-72 line 72: BACKGROUND_PID=74 wrappercheck-72 line 73: PIDS+=74 wrappercheck-72 line 70: set -x wrappercheck-72 line 70: exec wrappercheck-72 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-72 line 75: '[' '' ']' wrappercheck-72 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-72 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-72 line 93: kill -0 74 wrappercheck-72 line 94: set +e wrappercheck-72 line 95: '[' '' ']' wrappercheck-72 line 99: set -x wrappercheck-72 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-92 line 16: PIDS= wrappercheck-92 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-92 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-92 line 21: DAEMON_LOG= wrappercheck-92 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-92 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-92 line 25: declare -a BACKGROUND wrappercheck-92 line 26: declare -a ENV wrappercheck-92 line 28: '[' 12 -gt 1 ']' wrappercheck-92 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-92 line 29: case "$1" in wrappercheck-92 line 31: shift wrappercheck-92 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-92 line 53: shift wrappercheck-92 line 28: '[' 10 -gt 1 ']' wrappercheck-92 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-92 line 29: case "$1" in wrappercheck-92 line 50: break wrappercheck-92 line 56: '[' 10 -gt 1 ']' wrappercheck-92 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-92 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-92 line 58: shift wrappercheck-92 line 56: '[' 9 -gt 1 ']' wrappercheck-92 line 56: '[' --keep-running '!=' -- ']' wrappercheck-92 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-92 line 58: shift wrappercheck-92 line 56: '[' 8 -gt 1 ']' wrappercheck-92 line 56: '[' -- '!=' -- ']' wrappercheck-92 line 60: shift wrappercheck-92 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-92 line 62: '[' '' ']' wrappercheck-92 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-92 line 72: BACKGROUND_PID=94 wrappercheck-92 line 73: PIDS+=94 wrappercheck-92 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-92 line 75: '[' '' ']' wrappercheck-92 line 84: '[' '' ']' wrappercheck-92 line 93: kill -0 94 wrappercheck-92 line 94: set +e wrappercheck-92 line 95: '[' '' ']' wrappercheck-92 line 70: set -x wrappercheck-92 line 70: exec wrappercheck-92 line 99: set -x wrappercheck-92 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-97 line 16: PIDS= wrappercheck-97 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-97 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-97 line 21: DAEMON_LOG= wrappercheck-97 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-97 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-97 line 25: declare -a BACKGROUND wrappercheck-97 line 26: declare -a ENV wrappercheck-97 line 28: '[' 5 -gt 1 ']' wrappercheck-97 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 50: break wrappercheck-97 line 56: '[' 5 -gt 1 ']' wrappercheck-97 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 4 -gt 1 ']' wrappercheck-97 line 56: '[' -- '!=' -- ']' wrappercheck-97 line 60: shift wrappercheck-97 line 62: '[' '' ']' wrappercheck-97 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-97 line 72: BACKGROUND_PID=99 wrappercheck-97 line 73: PIDS+=99 wrappercheck-97 line 75: '[' '' ']' wrappercheck-97 line 84: '[' '' ']' wrappercheck-97 line 93: kill -0 99 wrappercheck-97 line 94: set +e wrappercheck-97 line 95: '[' '' ']' wrappercheck-97 line 99: set -x wrappercheck-97 line 70: set -x wrappercheck-97 line 70: exec wrappercheck-97 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 ++ echo evolution-contacts=eds_contact ++ sed -e 's/=.*//' + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + grep Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + grep Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar Test_eds_event_2 (1303827982.6946.28@mob-sync2) + echo evolution-calendar: Test_eds_event_2 exists evolution-calendar: Test_eds_event_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-tasks=eds_task + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks 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 ++ sed -e 's/.*=//' ++ echo evolution-memos=eds_memo + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-97 line 100: RET=0 wrappercheck-97 line 101: set -e wrappercheck-97 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-97 line 108: kill -INT -99 wrappercheck-97 line 108: kill -TERM -99 wrappercheck-97 line 108: kill -TERM 99 wrappercheck-97 line 110: KILL_PID=185 wrappercheck-97 line 115: set +e wrappercheck-97 line 109: perl -e 'sleep(60); kill(9, -99);' wrappercheck-97 line 116: wait 99 wrappercheck-97 line 117: SUBRET=143 wrappercheck-97 line 118: case $SUBRET in wrappercheck-97 line 118: SUBRET=0 wrappercheck-97 line 120: SUBRET=0 wrappercheck-97 line 121: '[' 185 ']' wwrappercheck-97 line 122: LC_ALL=C wwrappercheck-97 line 122: kill -KILL 185 wrappercheck-97 line 122: msg= wrappercheck-97 line 123: echo '' wrappercheck-97 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 185 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-97 line 127: echo '' wrappercheck-97 line 129: wait 185 wrappercheck-97 line 131: set -e wrappercheck-97 line 132: '[' 0 = 0 ']' wrappercheck-97 line 133: RET=0 wrappercheck-97 line 136: exit 0 wrappercheck-92 line 100: RET=0 wrappercheck-92 line 101: set -e wrappercheck-92 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-92 line 108: kill -INT -94 wrappercheck-92 line 108: kill -TERM -94 wrappercheck-92 line 108: kill -TERM 94 wrappercheck-92 line 110: KILL_PID=190 wrappercheck-92 line 109: perl -e 'sleep(60); kill(9, -94);' wrappercheck-92 line 115: set +e wrappercheck-92 line 116: wait 94 wrappercheck-92 line 117: SUBRET=143 wrappercheck-92 line 118: case $SUBRET in wrappercheck-92 line 118: SUBRET=0 wrappercheck-92 line 120: SUBRET=0 wrappercheck-92 line 121: '[' 190 ']' wwrappercheck-92 line 122: LC_ALL=C wwrappercheck-92 line 122: kill -KILL 190 wrappercheck-92 line 122: msg= wrappercheck-92 line 123: echo '' wrappercheck-92 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 190 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-92 line 127: echo '' wrappercheck-92 line 129: wait 190 wrappercheck-92 line 131: set -e wrappercheck-92 line 132: '[' 0 = 0 ']' wrappercheck-92 line 133: RET=0 wrappercheck-92 line 136: exit 0 wrappercheck-72 line 100: RET=0 wrappercheck-72 line 101: set -e wrappercheck-72 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-72 line 108: kill -INT -74 wrappercheck-72 line 108: kill -TERM -74 wrappercheck-72 line 108: kill -TERM 74 wrappercheck-72 line 110: KILL_PID=195 wrappercheck-72 line 115: set +e wrappercheck-72 line 116: wait 74 wrappercheck-72 line 117: SUBRET=143 wrappercheck-72 line 118: case $SUBRET in wrappercheck-72 line 118: SUBRET=0 wrappercheck-72 line 120: SUBRET=0 wrappercheck-72 line 121: '[' 195 ']' wrappercheck-72 line 109: perl -e 'sleep(60); kill(9, -74);' wwrappercheck-72 line 122: LC_ALL=C wwrappercheck-72 line 122: kill -KILL 195 wrappercheck-72 line 122: msg= wrappercheck-72 line 123: echo '' wrappercheck-72 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 195 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-72 line 127: echo '' wrappercheck-72 line 129: wait 195 wrappercheck-72 line 131: set -e wrappercheck-72 line 132: '[' 0 = 0 ']' wrappercheck-72 line 133: RET=0 wrappercheck-72 line 136: exit 0 wrappercheck-20 line 100: RET=0 wrappercheck-20 line 101: set -e wrappercheck-20 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-20 line 108: kill -INT -24 wrappercheck-20 line 108: kill -TERM -24 wrappercheck-20 line 108: kill -TERM 24 wrappercheck-20 line 110: KILL_PID=200 wrappercheck-20 line 109: perl -e 'sleep(60); kill(9, -24);' wrappercheck-20 line 115: set +e wrappercheck-20 line 116: wait 24 wrappercheck-20 line 117: SUBRET=143 wrappercheck-20 line 118: case $SUBRET in wrappercheck-20 line 118: SUBRET=0 wrappercheck-20 line 120: SUBRET=0 wrappercheck-20 line 121: '[' 200 ']' wwrappercheck-20 line 122: LC_ALL=C wwrappercheck-20 line 122: kill -KILL 200 wrappercheck-20 line 122: msg= wrappercheck-20 line 123: echo '' wrappercheck-20 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 200 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-20 line 127: echo '' wrappercheck-20 line 129: wait 200 wrappercheck-20 line 131: set -e wrappercheck-20 line 132: '[' 0 = 0 ']' wrappercheck-20 line 133: RET=0 wrappercheck-20 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -17 wrappercheck-15 line 108: kill -TERM -17 wrappercheck-15 line 108: kill -TERM 17 wrappercheck-15 line 110: KILL_PID=205 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 205 ']' wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 205 wrappercheck-15 line 122: msg= wrappercheck-15 line 123: echo '' wrappercheck-15 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 205 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 205 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.zEIV8zjllx Fri Jan 5 15:31:33 2018 UTC (+ 8.0s / 36.7s) === cleaning up === runtests.py-32138 Fri Jan 5 15:31:33 2018 UTC (+ 36.7s / 102.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/eds; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' '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-i386/home/eds' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/eds/cache'; unset ; /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-i386/tests/eds -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib 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 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:31:33 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['eds'] === Fri Jan 5 15:31:33 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:31:33 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:31:33 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:33:04 2018 UTC (+ 91.3s / 91.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-cppcheck] 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-i386 chroot] Running command: “env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib 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 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.YqS8jxrP20/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: '[' 36 -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: '[' 34 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 34 -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: '[' 33 -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: '[' 32 -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 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 70: set -x wrappercheck-19 line 99: set -x wrappercheck-19 line 70: exec 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 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: '[' 30 -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: '[' 28 -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: '[' 26 -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: '[' 24 -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: '[' 24 -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: '[' 23 -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=28 wrappercheck-25 line 73: PIDS+=28 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 70: set -x wrappercheck-25 line 70: exec wrappercheck-25 line 93: kill -0 28 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 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-73 line 16: PIDS= wrappercheck-73 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-73 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-73 line 21: DAEMON_LOG= wrappercheck-73 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-73 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-73 line 25: declare -a BACKGROUND wrappercheck-73 line 26: declare -a ENV wrappercheck-73 line 28: '[' 21 -gt 1 ']' wrappercheck-73 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 31: shift wrappercheck-73 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 19 -gt 1 ']' wrappercheck-73 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 35: shift wrappercheck-73 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 17 -gt 1 ']' wrappercheck-73 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 50: break wrappercheck-73 line 56: '[' 17 -gt 1 ']' wrappercheck-73 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 16 -gt 1 ']' wrappercheck-73 line 56: '[' --keep-running '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 15 -gt 1 ']' wrappercheck-73 line 56: '[' -- '!=' -- ']' wrappercheck-73 line 60: shift wrappercheck-73 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 62: '[' '' ']' wrappercheck-73 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-73 line 72: BACKGROUND_PID=75 wrappercheck-73 line 73: PIDS+=75 wrappercheck-73 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 75: '[' '' ']' wrappercheck-73 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-73 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-73 line 70: set -x wrappercheck-73 line 70: exec wrappercheck-73 line 93: kill -0 75 wrappercheck-73 line 94: set +e wrappercheck-73 line 95: '[' '' ']' wrappercheck-73 line 99: set -x wrappercheck-73 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 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-93 line 16: PIDS= wrappercheck-93 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-93 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-93 line 21: DAEMON_LOG= wrappercheck-93 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-93 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-93 line 25: declare -a BACKGROUND wrappercheck-93 line 26: declare -a ENV wrappercheck-93 line 28: '[' 13 -gt 1 ']' wrappercheck-93 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 31: shift wrappercheck-93 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-93 line 53: shift wrappercheck-93 line 28: '[' 11 -gt 1 ']' wrappercheck-93 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 50: break wrappercheck-93 line 56: '[' 11 -gt 1 ']' wrappercheck-93 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 10 -gt 1 ']' wrappercheck-93 line 56: '[' --keep-running '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 9 -gt 1 ']' wrappercheck-93 line 56: '[' -- '!=' -- ']' wrappercheck-93 line 60: shift wrappercheck-93 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 62: '[' '' ']' wrappercheck-93 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-93 line 72: BACKGROUND_PID=95 wrappercheck-93 line 73: PIDS+=95 wrappercheck-93 line 70: set -x wrappercheck-93 line 70: exec wrappercheck-93 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 75: '[' '' ']' wrappercheck-93 line 84: '[' '' ']' wrappercheck-93 line 93: kill -0 95 wrappercheck-93 line 94: set +e wrappercheck-93 line 95: '[' '' ']' wrappercheck-93 line 99: set -x wrappercheck-93 line 99: env 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-i386/tests/eds/valgrind.p98.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 (98): './client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo' (104): returned 0 ==1011== Memcheck, a memory error detector ==1011== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1011== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1011== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild ==1011== Parent PID: 104 ==1011== ==1011== ==1011== HEAP SUMMARY: ==1011== in use at exit: 736,287 bytes in 12,198 blocks ==1011== total heap usage: 375,389 allocs, 363,191 frees, 24,471,322 bytes allocated ==1011== ==1011== LEAK SUMMARY: ==1011== definitely lost: 0 bytes in 0 blocks ==1011== indirectly lost: 0 bytes in 0 blocks ==1011== possibly lost: 268 bytes in 2 blocks ==1011== still reachable: 299,411 bytes in 3,328 blocks ==1011== of which reachable via heuristic: ==1011== newarray : 7,312 bytes in 123 blocks ==1011== suppressed: 396,716 bytes in 8,341 blocks ==1011== Rerun with --leak-check=full to see details of leaked memory ==1011== ==1011== For counts of detected and suppressed errors, rerun with: -v ==1011== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==104== Memcheck, a memory error detector ==104== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==104== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==104== Command: ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo ==104== Parent PID: 98 ==104== ==104== ==104== HEAP SUMMARY: ==104== in use at exit: 289,654 bytes in 4,101 blocks ==104== total heap usage: 144,580 allocs, 140,479 frees, 15,164,540 bytes allocated ==104== ==104== LEAK SUMMARY: ==104== definitely lost: 0 bytes in 0 blocks ==104== indirectly lost: 0 bytes in 0 blocks ==104== possibly lost: 52 bytes in 1 blocks ==104== still reachable: 127,249 bytes in 678 blocks ==104== of which reachable via heuristic: ==104== newarray : 4,712 bytes in 17 blocks ==104== suppressed: 162,353 bytes in 3,422 blocks ==104== Rerun with --leak-check=full to see details of leaked memory ==104== ==104== For counts of detected and suppressed errors, rerun with: -v ==104== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==104== could not unlink /tmp/vgdb-pipe-from-vgdb-to-104-by-nightly-on-syncev ==104== could not unlink /tmp/vgdb-pipe-to-vgdb-from-104-by-nightly-on-syncev ==104== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-104-by-nightly-on-syncev ==1062== Memcheck, a memory error detector ==1062== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1062== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1062== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentChild ==1062== Parent PID: 1011 ==1062== ==1082== Memcheck, a memory error detector ==1082== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1082== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1082== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==1082== Parent PID: 104 ==1082== ==1082== ==1082== HEAP SUMMARY: ==1082== in use at exit: 734,910 bytes in 12,168 blocks ==1082== total heap usage: 320,921 allocs, 308,753 frees, 22,637,879 bytes allocated ==1082== ==1082== LEAK SUMMARY: ==1082== definitely lost: 0 bytes in 0 blocks ==1082== indirectly lost: 0 bytes in 0 blocks ==1082== possibly lost: 268 bytes in 2 blocks ==1082== still reachable: 298,390 bytes in 3,300 blocks ==1082== of which reachable via heuristic: ==1082== newarray : 7,312 bytes in 123 blocks ==1082== suppressed: 396,360 bytes in 8,339 blocks ==1082== Rerun with --leak-check=full to see details of leaked memory ==1082== ==1082== For counts of detected and suppressed errors, rerun with: -v ==1082== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==110== Memcheck, a memory error detector ==110== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==110== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==110== Command: ./client-test Client::Source::eds_event::testOpen ==110== Parent PID: 104 ==110== ==110== ==110== HEAP SUMMARY: ==110== in use at exit: 626,531 bytes in 9,606 blocks ==110== total heap usage: 148,088 allocs, 138,482 frees, 11,591,972 bytes allocated ==110== ==110== LEAK SUMMARY: ==110== definitely lost: 0 bytes in 0 blocks ==110== indirectly lost: 0 bytes in 0 blocks ==110== possibly lost: 700 bytes in 4 blocks ==110== still reachable: 199,121 bytes in 941 blocks ==110== of which reachable via heuristic: ==110== newarray : 7,184 bytes in 119 blocks ==110== suppressed: 387,662 bytes in 8,152 blocks ==110== Rerun with --leak-check=full to see details of leaked memory ==110== ==110== For counts of detected and suppressed errors, rerun with: -v ==110== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1134== Memcheck, a memory error detector ==1134== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1134== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1134== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs ==1134== Parent PID: 1082 ==1134== ==1142== Memcheck, a memory error detector ==1142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1142== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent ==1142== Parent PID: 104 ==1142== ==1142== ==1142== HEAP SUMMARY: ==1142== in use at exit: 738,507 bytes in 12,250 blocks ==1142== total heap usage: 359,503 allocs, 347,253 frees, 23,791,692 bytes allocated ==1142== ==1142== LEAK SUMMARY: ==1142== definitely lost: 0 bytes in 0 blocks ==1142== indirectly lost: 0 bytes in 0 blocks ==1142== possibly lost: 268 bytes in 2 blocks ==1142== still reachable: 301,279 bytes in 3,372 blocks ==1142== of which reachable via heuristic: ==1142== newarray : 7,312 bytes in 123 blocks ==1142== suppressed: 397,068 bytes in 8,349 blocks ==1142== Rerun with --leak-check=full to see details of leaked memory ==1142== ==1142== For counts of detected and suppressed errors, rerun with: -v ==1142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1190== Memcheck, a memory error detector ==1190== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1190== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1190== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildParent ==1190== Parent PID: 1142 ==1190== ==1211== Memcheck, a memory error detector ==1211== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1211== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1211== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1211== Parent PID: 104 ==1211== ==1211== ==1211== HEAP SUMMARY: ==1211== in use at exit: 737,661 bytes in 12,226 blocks ==1211== total heap usage: 384,845 allocs, 372,619 frees, 25,592,271 bytes allocated ==1211== ==1211== LEAK SUMMARY: ==1211== definitely lost: 0 bytes in 0 blocks ==1211== indirectly lost: 0 bytes in 0 blocks ==1211== possibly lost: 268 bytes in 2 blocks ==1211== still reachable: 300,508 bytes in 3,348 blocks ==1211== of which reachable via heuristic: ==1211== newarray : 7,312 bytes in 123 blocks ==1211== suppressed: 396,993 bytes in 8,349 blocks ==1211== Rerun with --leak-check=full to see details of leaked memory ==1211== ==1211== For counts of detected and suppressed errors, rerun with: -v ==1211== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1254== Memcheck, a memory error detector ==1254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1254== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1254== Parent PID: 1211 ==1254== ==1272== Memcheck, a memory error detector ==1272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1272== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==1272== Parent PID: 1211 ==1272== ==129== Memcheck, a memory error detector ==129== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==129== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==129== Command: ./client-test Client::Source::eds_event::testIterateTwice ==129== Parent PID: 104 ==129== ==129== ==129== HEAP SUMMARY: ==129== in use at exit: 628,082 bytes in 9,642 blocks ==129== total heap usage: 151,796 allocs, 142,154 frees, 11,830,887 bytes allocated ==129== ==129== LEAK SUMMARY: ==129== definitely lost: 0 bytes in 0 blocks ==129== indirectly lost: 0 bytes in 0 blocks ==129== possibly lost: 268 bytes in 2 blocks ==129== still reachable: 191,596 bytes in 783 blocks ==129== of which reachable via heuristic: ==129== newarray : 7,312 bytes in 123 blocks ==129== suppressed: 396,326 bytes in 8,330 blocks ==129== Rerun with --leak-check=full to see details of leaked memory ==129== ==129== For counts of detected and suppressed errors, rerun with: -v ==129== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1293== Memcheck, a memory error detector ==1293== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1293== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1293== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1293== Parent PID: 104 ==1293== ==1293== ==1293== HEAP SUMMARY: ==1293== in use at exit: 734,936 bytes in 12,168 blocks ==1293== total heap usage: 405,010 allocs, 392,842 frees, 26,466,936 bytes allocated ==1293== ==1293== LEAK SUMMARY: ==1293== definitely lost: 0 bytes in 0 blocks ==1293== indirectly lost: 0 bytes in 0 blocks ==1293== possibly lost: 268 bytes in 2 blocks ==1293== still reachable: 298,146 bytes in 3,300 blocks ==1293== of which reachable via heuristic: ==1293== newarray : 7,312 bytes in 123 blocks ==1293== suppressed: 396,630 bytes in 8,339 blocks ==1293== Rerun with --leak-check=full to see details of leaked memory ==1293== ==1293== For counts of detected and suppressed errors, rerun with: -v ==1293== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1344== Memcheck, a memory error detector ==1344== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1344== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1344== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1344== Parent PID: 1293 ==1344== ==1362== Memcheck, a memory error detector ==1362== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1362== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1362== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==1362== Parent PID: 1293 ==1362== ==1378== Memcheck, a memory error detector ==1378== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1378== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1378== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1378== Parent PID: 104 ==1378== ==1378== ==1378== HEAP SUMMARY: ==1378== in use at exit: 734,944 bytes in 12,168 blocks ==1378== total heap usage: 423,442 allocs, 411,274 frees, 27,300,995 bytes allocated ==1378== ==1378== LEAK SUMMARY: ==1378== definitely lost: 0 bytes in 0 blocks ==1378== indirectly lost: 0 bytes in 0 blocks ==1378== possibly lost: 700 bytes in 4 blocks ==1378== still reachable: 303,845 bytes in 3,459 blocks ==1378== of which reachable via heuristic: ==1378== newarray : 7,312 bytes in 123 blocks ==1378== suppressed: 390,507 bytes in 8,178 blocks ==1378== Rerun with --leak-check=full to see details of leaked memory ==1378== ==1378== For counts of detected and suppressed errors, rerun with: -v ==1378== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1429== Memcheck, a memory error detector ==1429== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1429== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1429== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1429== Parent PID: 1378 ==1429== ==1447== Memcheck, a memory error detector ==1447== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1447== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1447== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==1447== Parent PID: 1378 ==1447== ==1467== Memcheck, a memory error detector ==1467== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1467== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1467== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1467== Parent PID: 104 ==1467== ==1467== ==1467== HEAP SUMMARY: ==1467== in use at exit: 738,509 bytes in 12,250 blocks ==1467== total heap usage: 385,240 allocs, 372,990 frees, 25,574,946 bytes allocated ==1467== ==1467== LEAK SUMMARY: ==1467== definitely lost: 0 bytes in 0 blocks ==1467== indirectly lost: 0 bytes in 0 blocks ==1467== possibly lost: 700 bytes in 4 blocks ==1467== still reachable: 306,894 bytes in 3,528 blocks ==1467== of which reachable via heuristic: ==1467== newarray : 7,312 bytes in 123 blocks ==1467== suppressed: 391,023 bytes in 8,191 blocks ==1467== Rerun with --leak-check=full to see details of leaked memory ==1467== ==1467== For counts of detected and suppressed errors, rerun with: -v ==1467== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==149== Memcheck, a memory error detector ==149== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==149== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==149== Command: ./client-test Client::Source::eds_event::testDelete404 ==149== Parent PID: 104 ==149== ==149== ==149== HEAP SUMMARY: ==149== in use at exit: 628,509 bytes in 9,660 blocks ==149== total heap usage: 152,533 allocs, 142,873 frees, 11,849,932 bytes allocated ==149== ==149== LEAK SUMMARY: ==149== definitely lost: 0 bytes in 0 blocks ==149== indirectly lost: 0 bytes in 0 blocks ==149== possibly lost: 700 bytes in 4 blocks ==149== still reachable: 197,321 bytes in 942 blocks ==149== of which reachable via heuristic: ==149== newarray : 7,312 bytes in 123 blocks ==149== suppressed: 390,512 bytes in 8,185 blocks ==149== Rerun with --leak-check=full to see details of leaked memory ==149== ==149== For counts of detected and suppressed errors, rerun with: -v ==149== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1510== Memcheck, a memory error detector ==1510== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1510== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1510== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1510== Parent PID: 1467 ==1510== ==1532== Memcheck, a memory error detector ==1532== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1532== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1532== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertParentTwice ==1532== Parent PID: 1467 ==1532== ==1548== Memcheck, a memory error detector ==1548== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1548== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1548== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1548== Parent PID: 104 ==1548== ==1548== ==1548== HEAP SUMMARY: ==1548== in use at exit: 732,688 bytes in 12,114 blocks ==1548== total heap usage: 385,030 allocs, 372,916 frees, 25,532,205 bytes allocated ==1548== ==1548== LEAK SUMMARY: ==1548== definitely lost: 0 bytes in 0 blocks ==1548== indirectly lost: 0 bytes in 0 blocks ==1548== possibly lost: 700 bytes in 4 blocks ==1548== still reachable: 302,474 bytes in 3,435 blocks ==1548== of which reachable via heuristic: ==1548== newarray : 7,312 bytes in 123 blocks ==1548== suppressed: 389,622 bytes in 8,148 blocks ==1548== Rerun with --leak-check=full to see details of leaked memory ==1548== ==1548== For counts of detected and suppressed errors, rerun with: -v ==1548== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1591== Memcheck, a memory error detector ==1591== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1591== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1591== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1591== Parent PID: 1548 ==1591== ==1613== Memcheck, a memory error detector ==1613== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1613== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1613== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertChildTwice ==1613== Parent PID: 1548 ==1613== ==1629== Memcheck, a memory error detector ==1629== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1629== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1629== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1629== Parent PID: 104 ==1629== ==1629== ==1629== HEAP SUMMARY: ==1629== in use at exit: 734,919 bytes in 12,168 blocks ==1629== total heap usage: 360,134 allocs, 347,966 frees, 23,827,445 bytes allocated ==1629== ==1629== LEAK SUMMARY: ==1629== definitely lost: 0 bytes in 0 blocks ==1629== indirectly lost: 0 bytes in 0 blocks ==1629== possibly lost: 268 bytes in 2 blocks ==1629== still reachable: 298,358 bytes in 3,299 blocks ==1629== of which reachable via heuristic: ==1629== newarray : 7,312 bytes in 123 blocks ==1629== suppressed: 396,401 bytes in 8,340 blocks ==1629== Rerun with --leak-check=full to see details of leaked memory ==1629== ==1629== For counts of detected and suppressed errors, rerun with: -v ==1629== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1672== Memcheck, a memory error detector ==1672== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1672== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1672== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1672== Parent PID: 1629 ==1672== ==1690== Memcheck, a memory error detector ==1690== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1690== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1690== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==1690== Parent PID: 1629 ==1690== ==170== Memcheck, a memory error detector ==170== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==170== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==170== Command: ./client-test Client::Source::eds_event::testReadItem404 ==170== Parent PID: 104 ==170== ==170== ==170== HEAP SUMMARY: ==170== in use at exit: 629,408 bytes in 9,670 blocks ==170== total heap usage: 151,888 allocs, 142,218 frees, 11,833,997 bytes allocated ==170== ==170== LEAK SUMMARY: ==170== definitely lost: 0 bytes in 0 blocks ==170== indirectly lost: 0 bytes in 0 blocks ==170== possibly lost: 700 bytes in 4 blocks ==170== still reachable: 198,383 bytes in 963 blocks ==170== of which reachable via heuristic: ==170== newarray : 7,312 bytes in 123 blocks ==170== suppressed: 390,433 bytes in 8,176 blocks ==170== Rerun with --leak-check=full to see details of leaked memory ==170== ==170== For counts of detected and suppressed errors, rerun with: -v ==170== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1706== Memcheck, a memory error detector ==1706== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1706== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1706== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1706== Parent PID: 104 ==1706== ==1706== ==1706== HEAP SUMMARY: ==1706== in use at exit: 736,280 bytes in 12,198 blocks ==1706== total heap usage: 360,166 allocs, 347,968 frees, 23,787,545 bytes allocated ==1706== ==1706== LEAK SUMMARY: ==1706== definitely lost: 0 bytes in 0 blocks ==1706== indirectly lost: 0 bytes in 0 blocks ==1706== possibly lost: 268 bytes in 2 blocks ==1706== still reachable: 299,379 bytes in 3,327 blocks ==1706== of which reachable via heuristic: ==1706== newarray : 7,312 bytes in 123 blocks ==1706== suppressed: 396,741 bytes in 8,342 blocks ==1706== Rerun with --leak-check=full to see details of leaked memory ==1706== ==1706== For counts of detected and suppressed errors, rerun with: -v ==1706== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1749== Memcheck, a memory error detector ==1749== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1749== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1749== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1749== Parent PID: 1706 ==1749== ==1767== Memcheck, a memory error detector ==1767== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1767== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1767== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==1767== Parent PID: 1706 ==1767== ==1783== Memcheck, a memory error detector ==1783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1783== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1783== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==1783== Parent PID: 104 ==1783== ==1783== ==1783== HEAP SUMMARY: ==1783== in use at exit: 734,250 bytes in 12,181 blocks ==1783== total heap usage: 273,161 allocs, 260,980 frees, 19,173,207 bytes allocated ==1783== ==1783== LEAK SUMMARY: ==1783== definitely lost: 0 bytes in 0 blocks ==1783== indirectly lost: 0 bytes in 0 blocks ==1783== possibly lost: 700 bytes in 4 blocks ==1783== still reachable: 302,690 bytes in 3,442 blocks ==1783== of which reachable via heuristic: ==1783== newarray : 7,312 bytes in 123 blocks ==1783== suppressed: 390,884 bytes in 8,206 blocks ==1783== Rerun with --leak-check=full to see details of leaked memory ==1783== ==1783== For counts of detected and suppressed errors, rerun with: -v ==1783== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1826== Memcheck, a memory error detector ==1826== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1826== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1826== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs ==1826== Parent PID: 1783 ==1826== ==1834== Memcheck, a memory error detector ==1834== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1834== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1834== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1834== Parent PID: 104 ==1834== ==1834== ==1834== HEAP SUMMARY: ==1834== in use at exit: 733,623 bytes in 12,142 blocks ==1834== total heap usage: 435,172 allocs, 423,030 frees, 29,166,145 bytes allocated ==1834== ==1834== LEAK SUMMARY: ==1834== definitely lost: 0 bytes in 0 blocks ==1834== indirectly lost: 0 bytes in 0 blocks ==1834== possibly lost: 700 bytes in 4 blocks ==1834== still reachable: 302,868 bytes in 3,433 blocks ==1834== of which reachable via heuristic: ==1834== newarray : 7,312 bytes in 123 blocks ==1834== suppressed: 390,163 bytes in 8,178 blocks ==1834== Rerun with --leak-check=full to see details of leaked memory ==1834== ==1834== For counts of detected and suppressed errors, rerun with: -v ==1834== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1885== Memcheck, a memory error detector ==1885== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1885== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1885== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1885== Parent PID: 1834 ==1885== ==1903== Memcheck, a memory error detector ==1903== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1903== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1903== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==1903== Parent PID: 1834 ==1903== ==191== Memcheck, a memory error detector ==191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==191== Command: ./client-test Client::Source::eds_event::testSimpleInsert ==191== Parent PID: 104 ==191== ==191== ==191== HEAP SUMMARY: ==191== in use at exit: 627,081 bytes in 9,612 blocks ==191== total heap usage: 172,921 allocs, 163,309 frees, 12,792,901 bytes allocated ==191== ==191== LEAK SUMMARY: ==191== definitely lost: 0 bytes in 0 blocks ==191== indirectly lost: 0 bytes in 0 blocks ==191== possibly lost: 268 bytes in 2 blocks ==191== still reachable: 191,199 bytes in 775 blocks ==191== of which reachable via heuristic: ==191== newarray : 7,312 bytes in 123 blocks ==191== suppressed: 395,722 bytes in 8,308 blocks ==191== Rerun with --leak-check=full to see details of leaked memory ==191== ==191== For counts of detected and suppressed errors, rerun with: -v ==191== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1923== Memcheck, a memory error detector ==1923== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1923== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1923== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1923== Parent PID: 104 ==1923== ==1923== ==1923== HEAP SUMMARY: ==1923== in use at exit: 735,873 bytes in 12,228 blocks ==1923== total heap usage: 436,232 allocs, 424,004 frees, 29,212,471 bytes allocated ==1923== ==1923== LEAK SUMMARY: ==1923== definitely lost: 0 bytes in 0 blocks ==1923== indirectly lost: 0 bytes in 0 blocks ==1923== possibly lost: 268 bytes in 2 blocks ==1923== still reachable: 297,854 bytes in 3,291 blocks ==1923== of which reachable via heuristic: ==1923== newarray : 7,312 bytes in 123 blocks ==1923== suppressed: 397,775 bytes in 8,406 blocks ==1923== Rerun with --leak-check=full to see details of leaked memory ==1923== ==1923== For counts of detected and suppressed errors, rerun with: -v ==1923== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1974== Memcheck, a memory error detector ==1974== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1974== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1974== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1974== Parent PID: 1923 ==1974== ==1992== Memcheck, a memory error detector ==1992== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1992== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1992== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==1992== Parent PID: 1923 ==1992== ==2012== Memcheck, a memory error detector ==2012== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2012== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2012== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsSingle404 ==2012== Parent PID: 104 ==2012== ==2012== ==2012== HEAP SUMMARY: ==2012== in use at exit: 735,224 bytes in 12,208 blocks ==2012== total heap usage: 239,597 allocs, 227,389 frees, 16,399,940 bytes allocated ==2012== ==2012== LEAK SUMMARY: ==2012== definitely lost: 0 bytes in 0 blocks ==2012== indirectly lost: 0 bytes in 0 blocks ==2012== possibly lost: 268 bytes in 2 blocks ==2012== still reachable: 297,239 bytes in 3,281 blocks ==2012== of which reachable via heuristic: ==2012== newarray : 7,312 bytes in 123 blocks ==2012== suppressed: 397,825 bytes in 8,398 blocks ==2012== Rerun with --leak-check=full to see details of leaked memory ==2012== ==2012== For counts of detected and suppressed errors, rerun with: -v ==2012== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2049== Memcheck, a memory error detector ==2049== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2049== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2049== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsMany404 ==2049== Parent PID: 104 ==2049== ==2049== ==2049== HEAP SUMMARY: ==2049== in use at exit: 734,110 bytes in 12,195 blocks ==2049== total heap usage: 286,535 allocs, 274,340 frees, 19,157,055 bytes allocated ==2049== ==2049== LEAK SUMMARY: ==2049== definitely lost: 0 bytes in 0 blocks ==2049== indirectly lost: 0 bytes in 0 blocks ==2049== possibly lost: 268 bytes in 2 blocks ==2049== still reachable: 296,386 bytes in 3,260 blocks ==2049== of which reachable via heuristic: ==2049== newarray : 7,312 bytes in 123 blocks ==2049== suppressed: 397,480 bytes in 8,404 blocks ==2049== Rerun with --leak-check=full to see details of leaked memory ==2049== ==2049== For counts of detected and suppressed errors, rerun with: -v ==2049== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2094== Memcheck, a memory error detector ==2094== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2094== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2094== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent ==2094== Parent PID: 104 ==2094== ==2094== ==2094== HEAP SUMMARY: ==2094== in use at exit: 734,740 bytes in 12,193 blocks ==2094== total heap usage: 329,183 allocs, 316,990 frees, 21,108,539 bytes allocated ==2094== ==2094== LEAK SUMMARY: ==2094== definitely lost: 0 bytes in 0 blocks ==2094== indirectly lost: 0 bytes in 0 blocks ==2094== possibly lost: 268 bytes in 2 blocks ==2094== still reachable: 297,111 bytes in 3,282 blocks ==2094== of which reachable via heuristic: ==2094== newarray : 7,312 bytes in 123 blocks ==2094== suppressed: 397,469 bytes in 8,382 blocks ==2094== Rerun with --leak-check=full to see details of leaked memory ==2094== ==2094== For counts of detected and suppressed errors, rerun with: -v ==2094== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2137== Memcheck, a memory error detector ==2137== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2137== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2137== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParent ==2137== Parent PID: 2094 ==2137== ==2157== Memcheck, a memory error detector ==2157== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2157== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2157== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild ==2157== Parent PID: 104 ==2157== ==2157== ==2157== HEAP SUMMARY: ==2157== in use at exit: 733,621 bytes in 12,141 blocks ==2157== total heap usage: 326,129 allocs, 313,988 frees, 20,944,858 bytes allocated ==2157== ==2157== LEAK SUMMARY: ==2157== definitely lost: 0 bytes in 0 blocks ==2157== indirectly lost: 0 bytes in 0 blocks ==2157== possibly lost: 268 bytes in 2 blocks ==2157== still reachable: 297,092 bytes in 3,281 blocks ==2157== of which reachable via heuristic: ==2157== newarray : 7,312 bytes in 123 blocks ==2157== suppressed: 396,369 bytes in 8,331 blocks ==2157== Rerun with --leak-check=full to see details of leaked memory ==2157== ==2157== For counts of detected and suppressed errors, rerun with: -v ==2157== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==216== Memcheck, a memory error detector ==216== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==216== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==216== Command: ./client-test Client::Source::eds_event::testLocalDeleteAll ==216== Parent PID: 104 ==216== ==216== ==216== HEAP SUMMARY: ==216== in use at exit: 630,830 bytes in 9,703 blocks ==216== total heap usage: 213,983 allocs, 204,280 frees, 14,637,144 bytes allocated ==216== ==216== LEAK SUMMARY: ==216== definitely lost: 0 bytes in 0 blocks ==216== indirectly lost: 0 bytes in 0 blocks ==216== possibly lost: 268 bytes in 2 blocks ==216== still reachable: 193,940 bytes in 832 blocks ==216== of which reachable via heuristic: ==216== newarray : 7,312 bytes in 123 blocks ==216== suppressed: 396,730 bytes in 8,342 blocks ==216== Rerun with --leak-check=full to see details of leaked memory ==216== ==216== For counts of detected and suppressed errors, rerun with: -v ==216== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2200== Memcheck, a memory error detector ==2200== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2200== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2200== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChild ==2200== Parent PID: 2157 ==2200== ==2220== Memcheck, a memory error detector ==2220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2220== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==2220== Parent PID: 104 ==2220== ==2220== ==2220== HEAP SUMMARY: ==2220== in use at exit: 734,948 bytes in 12,169 blocks ==2220== total heap usage: 376,813 allocs, 364,644 frees, 24,551,779 bytes allocated ==2220== ==2220== LEAK SUMMARY: ==2220== definitely lost: 0 bytes in 0 blocks ==2220== indirectly lost: 0 bytes in 0 blocks ==2220== possibly lost: 700 bytes in 4 blocks ==2220== still reachable: 303,881 bytes in 3,461 blocks ==2220== of which reachable via heuristic: ==2220== newarray : 7,312 bytes in 123 blocks ==2220== suppressed: 390,475 bytes in 8,177 blocks ==2220== Rerun with --leak-check=full to see details of leaked memory ==2220== ==2220== For counts of detected and suppressed errors, rerun with: -v ==2220== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2272== Memcheck, a memory error detector ==2272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2272== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==2272== Parent PID: 2220 ==2272== ==2292== Memcheck, a memory error detector ==2292== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2292== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2292== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==2292== Parent PID: 104 ==2292== ==2292== ==2292== HEAP SUMMARY: ==2292== in use at exit: 732,668 bytes in 12,113 blocks ==2292== total heap usage: 322,511 allocs, 310,398 frees, 22,731,702 bytes allocated ==2292== ==2292== LEAK SUMMARY: ==2292== definitely lost: 0 bytes in 0 blocks ==2292== indirectly lost: 0 bytes in 0 blocks ==2292== possibly lost: 268 bytes in 2 blocks ==2292== still reachable: 296,832 bytes in 3,279 blocks ==2292== of which reachable via heuristic: ==2292== newarray : 7,312 bytes in 123 blocks ==2292== suppressed: 395,676 bytes in 8,305 blocks ==2292== Rerun with --leak-check=full to see details of leaked memory ==2292== ==2292== For counts of detected and suppressed errors, rerun with: -v ==2292== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2343== Memcheck, a memory error detector ==2343== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2343== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2343== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs ==2343== Parent PID: 2292 ==2343== ==2351== Memcheck, a memory error detector ==2351== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2351== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2351== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==2351== Parent PID: 104 ==2351== ==2351== ==2351== HEAP SUMMARY: ==2351== in use at exit: 733,645 bytes in 12,143 blocks ==2351== total heap usage: 361,164 allocs, 349,021 frees, 23,890,535 bytes allocated ==2351== ==2351== LEAK SUMMARY: ==2351== definitely lost: 0 bytes in 0 blocks ==2351== indirectly lost: 0 bytes in 0 blocks ==2351== possibly lost: 268 bytes in 2 blocks ==2351== still reachable: 297,092 bytes in 3,281 blocks ==2351== of which reachable via heuristic: ==2351== newarray : 7,312 bytes in 123 blocks ==2351== suppressed: 396,393 bytes in 8,333 blocks ==2351== Rerun with --leak-check=full to see details of leaked memory ==2351== ==2351== For counts of detected and suppressed errors, rerun with: -v ==2351== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2398== Memcheck, a memory error detector ==2398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2398== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==2398== Parent PID: 2351 ==2398== ==2418== Memcheck, a memory error detector ==2418== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2418== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2418== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2418== Parent PID: 104 ==2418== ==2418== ==2418== HEAP SUMMARY: ==2418== in use at exit: 734,972 bytes in 12,171 blocks ==2418== total heap usage: 386,354 allocs, 374,183 frees, 25,694,041 bytes allocated ==2418== ==2418== LEAK SUMMARY: ==2418== definitely lost: 0 bytes in 0 blocks ==2418== indirectly lost: 0 bytes in 0 blocks ==2418== possibly lost: 268 bytes in 2 blocks ==2418== still reachable: 298,235 bytes in 3,304 blocks ==2418== of which reachable via heuristic: ==2418== newarray : 7,312 bytes in 123 blocks ==2418== suppressed: 396,577 bytes in 8,338 blocks ==2418== Rerun with --leak-check=full to see details of leaked memory ==2418== ==2418== For counts of detected and suppressed errors, rerun with: -v ==2418== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2461== Memcheck, a memory error detector ==2461== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2461== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2461== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2461== Parent PID: 2418 ==2461== ==2479== Memcheck, a memory error detector ==2479== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2479== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2479== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==2479== Parent PID: 2418 ==2479== ==249== Memcheck, a memory error detector ==249== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==249== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==249== Command: ./client-test Client::Source::eds_event::testComplexInsert ==249== Parent PID: 104 ==249== ==249== ==249== HEAP SUMMARY: ==249== in use at exit: 629,325 bytes in 9,672 blocks ==249== total heap usage: 230,964 allocs, 221,292 frees, 15,391,571 bytes allocated ==249== ==249== LEAK SUMMARY: ==249== definitely lost: 0 bytes in 0 blocks ==249== indirectly lost: 0 bytes in 0 blocks ==249== possibly lost: 268 bytes in 2 blocks ==249== still reachable: 192,782 bytes in 800 blocks ==249== of which reachable via heuristic: ==249== newarray : 7,312 bytes in 123 blocks ==249== suppressed: 396,383 bytes in 8,343 blocks ==249== Rerun with --leak-check=full to see details of leaked memory ==249== ==249== For counts of detected and suppressed errors, rerun with: -v ==249== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2499== Memcheck, a memory error detector ==2499== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2499== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2499== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2499== Parent PID: 104 ==2499== ==2499== ==2499== HEAP SUMMARY: ==2499== in use at exit: 728,757 bytes in 12,031 blocks ==2499== total heap usage: 406,754 allocs, 394,723 frees, 26,577,558 bytes allocated ==2499== ==2499== LEAK SUMMARY: ==2499== definitely lost: 0 bytes in 0 blocks ==2499== indirectly lost: 0 bytes in 0 blocks ==2499== possibly lost: 700 bytes in 4 blocks ==2499== still reachable: 300,854 bytes in 3,426 blocks ==2499== of which reachable via heuristic: ==2499== newarray : 7,312 bytes in 123 blocks ==2499== suppressed: 387,311 bytes in 8,074 blocks ==2499== Rerun with --leak-check=full to see details of leaked memory ==2499== ==2499== For counts of detected and suppressed errors, rerun with: -v ==2499== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2550== Memcheck, a memory error detector ==2550== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2550== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2550== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2550== Parent PID: 2499 ==2550== ==2568== Memcheck, a memory error detector ==2568== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2568== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2568== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==2568== Parent PID: 2499 ==2568== ==2584== Memcheck, a memory error detector ==2584== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2584== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2584== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2584== Parent PID: 104 ==2584== ==2584== ==2584== HEAP SUMMARY: ==2584== in use at exit: 734,734 bytes in 12,175 blocks ==2584== total heap usage: 425,340 allocs, 413,165 frees, 27,406,179 bytes allocated ==2584== ==2584== LEAK SUMMARY: ==2584== definitely lost: 0 bytes in 0 blocks ==2584== indirectly lost: 0 bytes in 0 blocks ==2584== possibly lost: 268 bytes in 2 blocks ==2584== still reachable: 297,822 bytes in 3,292 blocks ==2584== of which reachable via heuristic: ==2584== newarray : 7,312 bytes in 123 blocks ==2584== suppressed: 396,668 bytes in 8,352 blocks ==2584== Rerun with --leak-check=full to see details of leaked memory ==2584== ==2584== For counts of detected and suppressed errors, rerun with: -v ==2584== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2635== Memcheck, a memory error detector ==2635== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2635== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2635== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2635== Parent PID: 2584 ==2635== ==2653== Memcheck, a memory error detector ==2653== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2653== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2653== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==2653== Parent PID: 2584 ==2653== ==2673== Memcheck, a memory error detector ==2673== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2673== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2673== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2673== Parent PID: 104 ==2673== ==2673== ==2673== HEAP SUMMARY: ==2673== in use at exit: 736,301 bytes in 12,197 blocks ==2673== total heap usage: 385,625 allocs, 373,428 frees, 25,625,808 bytes allocated ==2673== ==2673== LEAK SUMMARY: ==2673== definitely lost: 0 bytes in 0 blocks ==2673== indirectly lost: 0 bytes in 0 blocks ==2673== possibly lost: 700 bytes in 4 blocks ==2673== still reachable: 305,190 bytes in 3,480 blocks ==2673== of which reachable via heuristic: ==2673== newarray : 7,312 bytes in 123 blocks ==2673== suppressed: 390,519 bytes in 8,186 blocks ==2673== Rerun with --leak-check=full to see details of leaked memory ==2673== ==2673== For counts of detected and suppressed errors, rerun with: -v ==2673== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2716== Memcheck, a memory error detector ==2716== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2716== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2716== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2716== Parent PID: 2673 ==2716== ==2738== Memcheck, a memory error detector ==2738== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2738== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2738== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertParentTwice ==2738== Parent PID: 2673 ==2738== ==2754== Memcheck, a memory error detector ==2754== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2754== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2754== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2754== Parent PID: 104 ==2754== ==2754== ==2754== HEAP SUMMARY: ==2754== in use at exit: 728,916 bytes in 12,042 blocks ==2754== total heap usage: 385,660 allocs, 373,618 frees, 25,593,203 bytes allocated ==2754== ==2754== LEAK SUMMARY: ==2754== definitely lost: 0 bytes in 0 blocks ==2754== indirectly lost: 0 bytes in 0 blocks ==2754== possibly lost: 268 bytes in 2 blocks ==2754== still reachable: 295,440 bytes in 3,279 blocks ==2754== of which reachable via heuristic: ==2754== newarray : 7,312 bytes in 123 blocks ==2754== suppressed: 393,232 bytes in 8,232 blocks ==2754== Rerun with --leak-check=full to see details of leaked memory ==2754== ==2754== For counts of detected and suppressed errors, rerun with: -v ==2754== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2797== Memcheck, a memory error detector ==2797== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2797== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2797== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2797== Parent PID: 2754 ==2797== ==2819== Memcheck, a memory error detector ==2819== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2819== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2819== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertChildTwice ==2819== Parent PID: 2754 ==2819== ==2835== Memcheck, a memory error detector ==2835== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2835== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2835== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2835== Parent PID: 104 ==2835== ==2835== ==2835== HEAP SUMMARY: ==2835== in use at exit: 733,637 bytes in 12,143 blocks ==2835== total heap usage: 360,623 allocs, 348,480 frees, 23,881,962 bytes allocated ==2835== ==2835== LEAK SUMMARY: ==2835== definitely lost: 0 bytes in 0 blocks ==2835== indirectly lost: 0 bytes in 0 blocks ==2835== possibly lost: 268 bytes in 2 blocks ==2835== still reachable: 297,084 bytes in 3,281 blocks ==2835== of which reachable via heuristic: ==2835== newarray : 7,312 bytes in 123 blocks ==2835== suppressed: 396,393 bytes in 8,333 blocks ==2835== Rerun with --leak-check=full to see details of leaked memory ==2835== ==2835== For counts of detected and suppressed errors, rerun with: -v ==2835== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==286== Memcheck, a memory error detector ==286== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==286== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==286== Command: ./client-test Client::Source::eds_event::testInsertTwice ==286== Parent PID: 104 ==286== ==286== ==286== HEAP SUMMARY: ==286== in use at exit: 625,800 bytes in 9,588 blocks ==286== total heap usage: 193,920 allocs, 184,332 frees, 13,751,683 bytes allocated ==286== ==286== LEAK SUMMARY: ==286== definitely lost: 0 bytes in 0 blocks ==286== indirectly lost: 0 bytes in 0 blocks ==286== possibly lost: 700 bytes in 4 blocks ==286== still reachable: 196,413 bytes in 933 blocks ==286== of which reachable via heuristic: ==286== newarray : 7,312 bytes in 123 blocks ==286== suppressed: 388,795 bytes in 8,124 blocks ==286== Rerun with --leak-check=full to see details of leaked memory ==286== ==286== For counts of detected and suppressed errors, rerun with: -v ==286== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2878== Memcheck, a memory error detector ==2878== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2878== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2878== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2878== Parent PID: 2835 ==2878== ==2896== Memcheck, a memory error detector ==2896== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2896== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2896== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==2896== Parent PID: 2835 ==2896== ==2912== Memcheck, a memory error detector ==2912== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2912== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2912== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2912== Parent PID: 104 ==2912== ==2912== ==2912== HEAP SUMMARY: ==2912== in use at exit: 733,011 bytes in 12,129 blocks ==2912== total heap usage: 361,154 allocs, 349,025 frees, 23,855,429 bytes allocated ==2912== ==2912== LEAK SUMMARY: ==2912== definitely lost: 0 bytes in 0 blocks ==2912== indirectly lost: 0 bytes in 0 blocks ==2912== possibly lost: 268 bytes in 2 blocks ==2912== still reachable: 296,944 bytes in 3,282 blocks ==2912== of which reachable via heuristic: ==2912== newarray : 7,312 bytes in 123 blocks ==2912== suppressed: 395,823 bytes in 8,316 blocks ==2912== Rerun with --leak-check=full to see details of leaked memory ==2912== ==2912== For counts of detected and suppressed errors, rerun with: -v ==2912== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==2955== Memcheck, a memory error detector ==2955== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2955== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2955== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2955== Parent PID: 2912 ==2955== ==2973== Memcheck, a memory error detector ==2973== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2973== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2973== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==2973== Parent PID: 2912 ==2973== ==2989== Memcheck, a memory error detector ==2989== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==2989== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==2989== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==2989== Parent PID: 104 ==2989== ==2989== ==2989== HEAP SUMMARY: ==2989== in use at exit: 736,128 bytes in 12,196 blocks ==2989== total heap usage: 273,141 allocs, 260,945 frees, 19,203,927 bytes allocated ==2989== ==2989== LEAK SUMMARY: ==2989== definitely lost: 0 bytes in 0 blocks ==2989== indirectly lost: 0 bytes in 0 blocks ==2989== possibly lost: 268 bytes in 2 blocks ==2989== still reachable: 299,266 bytes in 3,324 blocks ==2989== of which reachable via heuristic: ==2989== newarray : 7,312 bytes in 123 blocks ==2989== suppressed: 396,702 bytes in 8,343 blocks ==2989== Rerun with --leak-check=full to see details of leaked memory ==2989== ==2989== For counts of detected and suppressed errors, rerun with: -v ==2989== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3033== Memcheck, a memory error detector ==3033== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3033== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3033== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs ==3033== Parent PID: 2989 ==3033== ==3041== Memcheck, a memory error detector ==3041== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3041== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3041== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3041== Parent PID: 104 ==3041== ==3041== ==3041== HEAP SUMMARY: ==3041== in use at exit: 736,297 bytes in 12,197 blocks ==3041== total heap usage: 437,018 allocs, 424,821 frees, 29,305,222 bytes allocated ==3041== ==3041== LEAK SUMMARY: ==3041== definitely lost: 0 bytes in 0 blocks ==3041== indirectly lost: 0 bytes in 0 blocks ==3041== possibly lost: 268 bytes in 2 blocks ==3041== still reachable: 299,608 bytes in 3,325 blocks ==3041== of which reachable via heuristic: ==3041== newarray : 7,312 bytes in 123 blocks ==3041== suppressed: 396,529 bytes in 8,343 blocks ==3041== Rerun with --leak-check=full to see details of leaked memory ==3041== ==3041== For counts of detected and suppressed errors, rerun with: -v ==3041== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3092== Memcheck, a memory error detector ==3092== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3092== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3092== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3092== Parent PID: 3041 ==3092== ==3110== Memcheck, a memory error detector ==3110== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3110== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3110== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==3110== Parent PID: 3041 ==3110== ==3130== Memcheck, a memory error detector ==3130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3130== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3130== Parent PID: 104 ==3130== ==3130== ==3130== HEAP SUMMARY: ==3130== in use at exit: 733,617 bytes in 12,141 blocks ==3130== total heap usage: 438,112 allocs, 425,971 frees, 29,365,277 bytes allocated ==3130== ==3130== LEAK SUMMARY: ==3130== definitely lost: 0 bytes in 0 blocks ==3130== indirectly lost: 0 bytes in 0 blocks ==3130== possibly lost: 268 bytes in 2 blocks ==3130== still reachable: 297,124 bytes in 3,282 blocks ==3130== of which reachable via heuristic: ==3130== newarray : 7,312 bytes in 123 blocks ==3130== suppressed: 396,333 bytes in 8,330 blocks ==3130== Rerun with --leak-check=full to see details of leaked memory ==3130== ==3130== For counts of detected and suppressed errors, rerun with: -v ==3130== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==315== Memcheck, a memory error detector ==315== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==315== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==315== Command: ./client-test Client::Source::eds_event::testLocalUpdate ==315== Parent PID: 104 ==315== ==315== ==315== HEAP SUMMARY: ==315== in use at exit: 632,205 bytes in 9,731 blocks ==315== total heap usage: 253,684 allocs, 243,953 frees, 16,442,465 bytes allocated ==315== ==315== LEAK SUMMARY: ==315== definitely lost: 0 bytes in 0 blocks ==315== indirectly lost: 0 bytes in 0 blocks ==315== possibly lost: 268 bytes in 2 blocks ==315== still reachable: 195,155 bytes in 856 blocks ==315== of which reachable via heuristic: ==315== newarray : 7,312 bytes in 123 blocks ==315== suppressed: 396,890 bytes in 8,346 blocks ==315== Rerun with --leak-check=full to see details of leaked memory ==315== ==315== For counts of detected and suppressed errors, rerun with: -v ==315== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3181== Memcheck, a memory error detector ==3181== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3181== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3181== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3181== Parent PID: 3130 ==3181== ==3199== Memcheck, a memory error detector ==3199== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3199== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3199== Command: ./client-test Client::Source::eds_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==3199== Parent PID: 3130 ==3199== ==3219== Memcheck, a memory error detector ==3219== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3219== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3219== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent ==3219== Parent PID: 104 ==3219== ==3219== ==3219== HEAP SUMMARY: ==3219== in use at exit: 625,937 bytes in 9,591 blocks ==3219== total heap usage: 314,238 allocs, 304,647 frees, 19,148,927 bytes allocated ==3219== ==3219== LEAK SUMMARY: ==3219== definitely lost: 0 bytes in 0 blocks ==3219== indirectly lost: 0 bytes in 0 blocks ==3219== possibly lost: 268 bytes in 2 blocks ==3219== still reachable: 190,884 bytes in 783 blocks ==3219== of which reachable via heuristic: ==3219== newarray : 7,312 bytes in 123 blocks ==3219== suppressed: 394,893 bytes in 8,279 blocks ==3219== Rerun with --leak-check=full to see details of leaked memory ==3219== ==3219== For counts of detected and suppressed errors, rerun with: -v ==3219== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3263== Memcheck, a memory error detector ==3263== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3263== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3263== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParent ==3263== Parent PID: 3219 ==3263== ==3283== Memcheck, a memory error detector ==3283== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3283== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3283== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild ==3283== Parent PID: 104 ==3283== ==3283== ==3283== HEAP SUMMARY: ==3283== in use at exit: 629,518 bytes in 9,677 blocks ==3283== total heap usage: 313,960 allocs, 304,283 frees, 19,118,838 bytes allocated ==3283== ==3283== LEAK SUMMARY: ==3283== definitely lost: 0 bytes in 0 blocks ==3283== indirectly lost: 0 bytes in 0 blocks ==3283== possibly lost: 268 bytes in 2 blocks ==3283== still reachable: 192,803 bytes in 810 blocks ==3283== of which reachable via heuristic: ==3283== newarray : 7,312 bytes in 123 blocks ==3283== suppressed: 396,555 bytes in 8,338 blocks ==3283== Rerun with --leak-check=full to see details of leaked memory ==3283== ==3283== For counts of detected and suppressed errors, rerun with: -v ==3283== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3326== Memcheck, a memory error detector ==3326== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3326== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3326== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChild ==3326== Parent PID: 3283 ==3326== ==3346== Memcheck, a memory error detector ==3346== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3346== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3346== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild ==3346== Parent PID: 104 ==3346== ==3346== ==3346== HEAP SUMMARY: ==3346== in use at exit: 626,830 bytes in 9,619 blocks ==3346== total heap usage: 356,965 allocs, 347,346 frees, 21,102,740 bytes allocated ==3346== ==3346== LEAK SUMMARY: ==3346== definitely lost: 0 bytes in 0 blocks ==3346== indirectly lost: 0 bytes in 0 blocks ==3346== possibly lost: 700 bytes in 4 blocks ==3346== still reachable: 196,116 bytes in 911 blocks ==3346== of which reachable via heuristic: ==3346== newarray : 7,312 bytes in 123 blocks ==3346== suppressed: 390,122 bytes in 8,177 blocks ==3346== Rerun with --leak-check=full to see details of leaked memory ==3346== ==3346== For counts of detected and suppressed errors, rerun with: -v ==3346== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3398== Memcheck, a memory error detector ==3398== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3398== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3398== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentChild ==3398== Parent PID: 3346 ==3398== ==3419== Memcheck, a memory error detector ==3419== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3419== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3419== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==3419== Parent PID: 104 ==3419== ==3419== ==3419== HEAP SUMMARY: ==3419== in use at exit: 629,494 bytes in 9,675 blocks ==3419== total heap usage: 297,845 allocs, 288,170 frees, 18,414,845 bytes allocated ==3419== ==3419== LEAK SUMMARY: ==3419== definitely lost: 0 bytes in 0 blocks ==3419== indirectly lost: 0 bytes in 0 blocks ==3419== possibly lost: 268 bytes in 2 blocks ==3419== still reachable: 192,771 bytes in 809 blocks ==3419== of which reachable via heuristic: ==3419== newarray : 7,312 bytes in 123 blocks ==3419== suppressed: 396,563 bytes in 8,337 blocks ==3419== Rerun with --leak-check=full to see details of leaked memory ==3419== ==3419== For counts of detected and suppressed errors, rerun with: -v ==3419== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3471== Memcheck, a memory error detector ==3471== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3471== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3471== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs ==3471== Parent PID: 3419 ==3471== ==3479== Memcheck, a memory error detector ==3479== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3479== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3479== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent ==3479== Parent PID: 104 ==3479== ==3479== ==3479== HEAP SUMMARY: ==3479== in use at exit: 630,814 bytes in 9,703 blocks ==3479== total heap usage: 341,640 allocs, 331,937 frees, 20,436,461 bytes allocated ==3479== ==3479== LEAK SUMMARY: ==3479== definitely lost: 0 bytes in 0 blocks ==3479== indirectly lost: 0 bytes in 0 blocks ==3479== possibly lost: 700 bytes in 4 blocks ==3479== still reachable: 199,553 bytes in 989 blocks ==3479== of which reachable via heuristic: ==3479== newarray : 7,312 bytes in 123 blocks ==3479== suppressed: 390,669 bytes in 8,183 blocks ==3479== Rerun with --leak-check=full to see details of leaked memory ==3479== ==3479== For counts of detected and suppressed errors, rerun with: -v ==3479== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3526== Memcheck, a memory error detector ==3526== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3526== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3526== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildParent ==3526== Parent PID: 3479 ==3526== ==3546== Memcheck, a memory error detector ==3546== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3546== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3546== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3546== Parent PID: 104 ==3546== ==3546== ==3546== HEAP SUMMARY: ==3546== in use at exit: 630,834 bytes in 9,705 blocks ==3546== total heap usage: 362,732 allocs, 353,027 frees, 21,422,654 bytes allocated ==3546== ==3546== LEAK SUMMARY: ==3546== definitely lost: 0 bytes in 0 blocks ==3546== indirectly lost: 0 bytes in 0 blocks ==3546== possibly lost: 700 bytes in 4 blocks ==3546== still reachable: 199,533 bytes in 989 blocks ==3546== of which reachable via heuristic: ==3546== newarray : 7,312 bytes in 123 blocks ==3546== suppressed: 390,709 bytes in 8,185 blocks ==3546== Rerun with --leak-check=full to see details of leaked memory ==3546== ==3546== For counts of detected and suppressed errors, rerun with: -v ==3546== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==356== Memcheck, a memory error detector ==356== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==356== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==356== Command: ./client-test Client::Source::eds_event::testChanges ==356== Parent PID: 104 ==356== ==356== ==356== HEAP SUMMARY: ==356== in use at exit: 624,619 bytes in 9,561 blocks ==356== total heap usage: 896,041 allocs, 886,480 frees, 45,313,500 bytes allocated ==356== ==356== LEAK SUMMARY: ==356== definitely lost: 0 bytes in 0 blocks ==356== indirectly lost: 0 bytes in 0 blocks ==356== possibly lost: 700 bytes in 4 blocks ==356== still reachable: 195,897 bytes in 931 blocks ==356== of which reachable via heuristic: ==356== newarray : 7,312 bytes in 123 blocks ==356== suppressed: 388,130 bytes in 8,099 blocks ==356== Rerun with --leak-check=full to see details of leaked memory ==356== ==356== For counts of detected and suppressed errors, rerun with: -v ==356== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3589== Memcheck, a memory error detector ==3589== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3589== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3589== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3589== Parent PID: 3546 ==3589== ==3607== Memcheck, a memory error detector ==3607== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3607== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3607== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==3607== Parent PID: 3546 ==3607== ==3627== Memcheck, a memory error detector ==3627== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3627== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3627== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3627== Parent PID: 104 ==3627== ==3627== ==3627== HEAP SUMMARY: ==3627== in use at exit: 628,181 bytes in 9,649 blocks ==3627== total heap usage: 382,256 allocs, 372,607 frees, 22,278,748 bytes allocated ==3627== ==3627== LEAK SUMMARY: ==3627== definitely lost: 0 bytes in 0 blocks ==3627== indirectly lost: 0 bytes in 0 blocks ==3627== possibly lost: 268 bytes in 2 blocks ==3627== still reachable: 191,677 bytes in 779 blocks ==3627== of which reachable via heuristic: ==3627== newarray : 7,312 bytes in 123 blocks ==3627== suppressed: 396,344 bytes in 8,341 blocks ==3627== Rerun with --leak-check=full to see details of leaked memory ==3627== ==3627== For counts of detected and suppressed errors, rerun with: -v ==3627== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3678== Memcheck, a memory error detector ==3678== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3678== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3678== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3678== Parent PID: 3627 ==3678== ==3696== Memcheck, a memory error detector ==3696== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3696== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3696== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==3696== Parent PID: 3627 ==3696== ==3712== Memcheck, a memory error detector ==3712== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3712== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3712== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3712== Parent PID: 104 ==3712== ==3712== ==3712== HEAP SUMMARY: ==3712== in use at exit: 628,181 bytes in 9,649 blocks ==3712== total heap usage: 400,936 allocs, 391,287 frees, 23,123,667 bytes allocated ==3712== ==3712== LEAK SUMMARY: ==3712== definitely lost: 0 bytes in 0 blocks ==3712== indirectly lost: 0 bytes in 0 blocks ==3712== possibly lost: 700 bytes in 4 blocks ==3712== still reachable: 197,376 bytes in 938 blocks ==3712== of which reachable via heuristic: ==3712== newarray : 7,312 bytes in 123 blocks ==3712== suppressed: 390,213 bytes in 8,180 blocks ==3712== Rerun with --leak-check=full to see details of leaked memory ==3712== ==3712== For counts of detected and suppressed errors, rerun with: -v ==3712== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3763== Memcheck, a memory error detector ==3763== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3763== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3763== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3763== Parent PID: 3712 ==3763== ==3781== Memcheck, a memory error detector ==3781== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3781== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3781== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==3781== Parent PID: 3712 ==3781== ==3801== Memcheck, a memory error detector ==3801== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3801== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3801== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3801== Parent PID: 104 ==3801== ==3801== ==3801== HEAP SUMMARY: ==3801== in use at exit: 628,171 bytes in 9,647 blocks ==3801== total heap usage: 359,338 allocs, 349,691 frees, 21,245,714 bytes allocated ==3801== ==3801== LEAK SUMMARY: ==3801== definitely lost: 0 bytes in 0 blocks ==3801== indirectly lost: 0 bytes in 0 blocks ==3801== possibly lost: 700 bytes in 4 blocks ==3801== still reachable: 197,198 bytes in 939 blocks ==3801== of which reachable via heuristic: ==3801== newarray : 7,312 bytes in 123 blocks ==3801== suppressed: 390,381 bytes in 8,177 blocks ==3801== Rerun with --leak-check=full to see details of leaked memory ==3801== ==3801== For counts of detected and suppressed errors, rerun with: -v ==3801== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3844== Memcheck, a memory error detector ==3844== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3844== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3844== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3844== Parent PID: 3801 ==3844== ==3866== Memcheck, a memory error detector ==3866== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3866== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3866== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertParentTwice ==3866== Parent PID: 3801 ==3866== ==3882== Memcheck, a memory error detector ==3882== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3882== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3882== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3882== Parent PID: 104 ==3882== ==3882== ==3882== HEAP SUMMARY: ==3882== in use at exit: 630,806 bytes in 9,703 blocks ==3882== total heap usage: 359,327 allocs, 349,624 frees, 21,201,604 bytes allocated ==3882== ==3882== LEAK SUMMARY: ==3882== definitely lost: 0 bytes in 0 blocks ==3882== indirectly lost: 0 bytes in 0 blocks ==3882== possibly lost: 268 bytes in 2 blocks ==3882== still reachable: 193,790 bytes in 828 blocks ==3882== of which reachable via heuristic: ==3882== newarray : 7,312 bytes in 123 blocks ==3882== suppressed: 396,856 bytes in 8,346 blocks ==3882== Rerun with --leak-check=full to see details of leaked memory ==3882== ==3882== For counts of detected and suppressed errors, rerun with: -v ==3882== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==3925== Memcheck, a memory error detector ==3925== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3925== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3925== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3925== Parent PID: 3882 ==3925== ==3947== Memcheck, a memory error detector ==3947== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3947== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3947== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertChildTwice ==3947== Parent PID: 3882 ==3947== ==3963== Memcheck, a memory error detector ==3963== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==3963== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==3963== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==3963== Parent PID: 104 ==3963== ==3963== ==3963== HEAP SUMMARY: ==3963== in use at exit: 629,518 bytes in 9,677 blocks ==3963== total heap usage: 339,166 allocs, 329,489 frees, 20,355,384 bytes allocated ==3963== ==3963== LEAK SUMMARY: ==3963== definitely lost: 0 bytes in 0 blocks ==3963== indirectly lost: 0 bytes in 0 blocks ==3963== possibly lost: 700 bytes in 4 blocks ==3963== still reachable: 198,385 bytes in 965 blocks ==3963== of which reachable via heuristic: ==3963== newarray : 7,312 bytes in 123 blocks ==3963== suppressed: 390,541 bytes in 8,181 blocks ==3963== Rerun with --leak-check=full to see details of leaked memory ==3963== ==3963== For counts of detected and suppressed errors, rerun with: -v ==3963== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4006== Memcheck, a memory error detector ==4006== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4006== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4006== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==4006== Parent PID: 3963 ==4006== ==4024== Memcheck, a memory error detector ==4024== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4024== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4024== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==4024== Parent PID: 3963 ==4024== ==4040== Memcheck, a memory error detector ==4040== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4040== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4040== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4040== Parent PID: 104 ==4040== ==4040== ==4040== HEAP SUMMARY: ==4040== in use at exit: 629,493 bytes in 9,677 blocks ==4040== total heap usage: 339,193 allocs, 329,516 frees, 20,313,673 bytes allocated ==4040== ==4040== LEAK SUMMARY: ==4040== definitely lost: 0 bytes in 0 blocks ==4040== indirectly lost: 0 bytes in 0 blocks ==4040== possibly lost: 268 bytes in 2 blocks ==4040== still reachable: 192,942 bytes in 807 blocks ==4040== of which reachable via heuristic: ==4040== newarray : 7,312 bytes in 123 blocks ==4040== suppressed: 396,391 bytes in 8,341 blocks ==4040== Rerun with --leak-check=full to see details of leaked memory ==4040== ==4040== For counts of detected and suppressed errors, rerun with: -v ==4040== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4083== Memcheck, a memory error detector ==4083== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4083== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4083== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4083== Parent PID: 4040 ==4083== ==4101== Memcheck, a memory error detector ==4101== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4101== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4101== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==4101== Parent PID: 4040 ==4101== ==4117== Memcheck, a memory error detector ==4117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4117== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4117== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==4117== Parent PID: 104 ==4117== ==4117== ==4117== HEAP SUMMARY: ==4117== in use at exit: 629,745 bytes in 9,715 blocks ==4117== total heap usage: 256,534 allocs, 246,819 frees, 16,513,816 bytes allocated ==4117== ==4117== LEAK SUMMARY: ==4117== definitely lost: 0 bytes in 0 blocks ==4117== indirectly lost: 0 bytes in 0 blocks ==4117== possibly lost: 268 bytes in 2 blocks ==4117== still reachable: 191,844 bytes in 793 blocks ==4117== of which reachable via heuristic: ==4117== newarray : 7,312 bytes in 123 blocks ==4117== suppressed: 397,657 bytes in 8,391 blocks ==4117== Rerun with --leak-check=full to see details of leaked memory ==4117== ==4117== For counts of detected and suppressed errors, rerun with: -v ==4117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4160== Memcheck, a memory error detector ==4160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4160== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4160== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs ==4160== Parent PID: 4117 ==4160== ==4168== Memcheck, a memory error detector ==4168== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4168== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4168== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4168== Parent PID: 104 ==4168== ==4168== ==4168== HEAP SUMMARY: ==4168== in use at exit: 627,157 bytes in 9,634 blocks ==4168== total heap usage: 406,436 allocs, 396,802 frees, 23,418,612 bytes allocated ==4168== ==4168== LEAK SUMMARY: ==4168== definitely lost: 0 bytes in 0 blocks ==4168== indirectly lost: 0 bytes in 0 blocks ==4168== possibly lost: 268 bytes in 2 blocks ==4168== still reachable: 190,614 bytes in 758 blocks ==4168== of which reachable via heuristic: ==4168== newarray : 7,312 bytes in 123 blocks ==4168== suppressed: 396,299 bytes in 8,345 blocks ==4168== Rerun with --leak-check=full to see details of leaked memory ==4168== ==4168== For counts of detected and suppressed errors, rerun with: -v ==4168== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4219== Memcheck, a memory error detector ==4219== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4219== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4219== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4219== Parent PID: 4168 ==4219== ==4237== Memcheck, a memory error detector ==4237== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4237== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4237== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==4237== Parent PID: 4168 ==4237== ==4257== Memcheck, a memory error detector ==4257== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4257== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4257== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4257== Parent PID: 104 ==4257== ==4257== ==4257== HEAP SUMMARY: ==4257== in use at exit: 628,235 bytes in 9,651 blocks ==4257== total heap usage: 407,063 allocs, 397,412 frees, 23,455,488 bytes allocated ==4257== ==4257== LEAK SUMMARY: ==4257== definitely lost: 0 bytes in 0 blocks ==4257== indirectly lost: 0 bytes in 0 blocks ==4257== possibly lost: 700 bytes in 4 blocks ==4257== still reachable: 197,274 bytes in 943 blocks ==4257== of which reachable via heuristic: ==4257== newarray : 7,312 bytes in 123 blocks ==4257== suppressed: 390,369 bytes in 8,177 blocks ==4257== Rerun with --leak-check=full to see details of leaked memory ==4257== ==4257== For counts of detected and suppressed errors, rerun with: -v ==4257== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4308== Memcheck, a memory error detector ==4308== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4308== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4308== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4308== Parent PID: 4257 ==4308== ==4326== Memcheck, a memory error detector ==4326== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4326== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4326== Command: ./client-test Client::Source::eds_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==4326== Parent PID: 4257 ==4326== ==4346== Memcheck, a memory error detector ==4346== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4346== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4346== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent ==4346== Parent PID: 104 ==4346== ==4346== ==4346== HEAP SUMMARY: ==4346== in use at exit: 627,242 bytes in 9,619 blocks ==4346== total heap usage: 314,313 allocs, 304,694 frees, 19,144,121 bytes allocated ==4346== ==4346== LEAK SUMMARY: ==4346== definitely lost: 0 bytes in 0 blocks ==4346== indirectly lost: 0 bytes in 0 blocks ==4346== possibly lost: 268 bytes in 2 blocks ==4346== still reachable: 191,243 bytes in 778 blocks ==4346== of which reachable via heuristic: ==4346== newarray : 7,312 bytes in 123 blocks ==4346== suppressed: 395,839 bytes in 8,312 blocks ==4346== Rerun with --leak-check=full to see details of leaked memory ==4346== ==4346== For counts of detected and suppressed errors, rerun with: -v ==4346== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4390== Memcheck, a memory error detector ==4390== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4390== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4390== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParent ==4390== Parent PID: 4346 ==4390== ==4410== Memcheck, a memory error detector ==4410== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4410== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4410== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild ==4410== Parent PID: 104 ==4410== ==4410== ==4410== HEAP SUMMARY: ==4410== in use at exit: 627,553 bytes in 9,633 blocks ==4410== total heap usage: 314,401 allocs, 304,768 frees, 19,120,068 bytes allocated ==4410== ==4410== LEAK SUMMARY: ==4410== definitely lost: 0 bytes in 0 blocks ==4410== indirectly lost: 0 bytes in 0 blocks ==4410== possibly lost: 268 bytes in 2 blocks ==4410== still reachable: 191,472 bytes in 785 blocks ==4410== of which reachable via heuristic: ==4410== newarray : 7,312 bytes in 123 blocks ==4410== suppressed: 395,837 bytes in 8,317 blocks ==4410== Rerun with --leak-check=full to see details of leaked memory ==4410== ==4410== For counts of detected and suppressed errors, rerun with: -v ==4410== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4453== Memcheck, a memory error detector ==4453== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4453== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4453== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChild ==4453== Parent PID: 4410 ==4453== ==4473== Memcheck, a memory error detector ==4473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4473== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4473== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==4473== Parent PID: 104 ==4473== ==4473== ==4473== HEAP SUMMARY: ==4473== in use at exit: 629,410 bytes in 9,698 blocks ==4473== total heap usage: 357,156 allocs, 347,458 frees, 21,096,466 bytes allocated ==4473== ==4473== LEAK SUMMARY: ==4473== definitely lost: 0 bytes in 0 blocks ==4473== indirectly lost: 0 bytes in 0 blocks ==4473== possibly lost: 268 bytes in 2 blocks ==4473== still reachable: 191,724 bytes in 788 blocks ==4473== of which reachable via heuristic: ==4473== newarray : 7,312 bytes in 123 blocks ==4473== suppressed: 397,526 bytes in 8,381 blocks ==4473== Rerun with --leak-check=full to see details of leaked memory ==4473== ==4473== For counts of detected and suppressed errors, rerun with: -v ==4473== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4524== Memcheck, a memory error detector ==4524== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4524== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4524== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==4524== Parent PID: 4473 ==4524== ==4544== Memcheck, a memory error detector ==4544== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4544== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4544== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==4544== Parent PID: 104 ==4544== ==4544== ==4544== HEAP SUMMARY: ==4544== in use at exit: 620,523 bytes in 9,480 blocks ==4544== total heap usage: 298,649 allocs, 289,169 frees, 18,418,610 bytes allocated ==4544== ==4544== LEAK SUMMARY: ==4544== definitely lost: 0 bytes in 0 blocks ==4544== indirectly lost: 0 bytes in 0 blocks ==4544== possibly lost: 268 bytes in 2 blocks ==4544== still reachable: 188,293 bytes in 750 blocks ==4544== of which reachable via heuristic: ==4544== newarray : 7,312 bytes in 123 blocks ==4544== suppressed: 391,986 bytes in 8,199 blocks ==4544== Rerun with --leak-check=full to see details of leaked memory ==4544== ==4544== For counts of detected and suppressed errors, rerun with: -v ==4544== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4595== Memcheck, a memory error detector ==4595== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4595== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4595== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs ==4595== Parent PID: 4544 ==4595== ==4603== Memcheck, a memory error detector ==4603== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4603== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4603== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==4603== Parent PID: 104 ==4603== ==4603== ==4603== HEAP SUMMARY: ==4603== in use at exit: 626,698 bytes in 9,616 blocks ==4603== total heap usage: 341,381 allocs, 331,765 frees, 20,414,175 bytes allocated ==4603== ==4603== LEAK SUMMARY: ==4603== definitely lost: 0 bytes in 0 blocks ==4603== indirectly lost: 0 bytes in 0 blocks ==4603== possibly lost: 268 bytes in 2 blocks ==4603== still reachable: 190,526 bytes in 754 blocks ==4603== of which reachable via heuristic: ==4603== newarray : 7,312 bytes in 123 blocks ==4603== suppressed: 396,012 bytes in 8,333 blocks ==4603== Rerun with --leak-check=full to see details of leaked memory ==4603== ==4603== For counts of detected and suppressed errors, rerun with: -v ==4603== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4650== Memcheck, a memory error detector ==4650== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4650== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4650== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==4650== Parent PID: 4603 ==4650== ==4670== Memcheck, a memory error detector ==4670== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4670== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4670== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4670== Parent PID: 104 ==4670== ==4670== ==4670== HEAP SUMMARY: ==4670== in use at exit: 630,875 bytes in 9,703 blocks ==4670== total heap usage: 362,137 allocs, 352,434 frees, 21,393,058 bytes allocated ==4670== ==4670== LEAK SUMMARY: ==4670== definitely lost: 0 bytes in 0 blocks ==4670== indirectly lost: 0 bytes in 0 blocks ==4670== possibly lost: 268 bytes in 2 blocks ==4670== still reachable: 194,031 bytes in 825 blocks ==4670== of which reachable via heuristic: ==4670== newarray : 7,312 bytes in 123 blocks ==4670== suppressed: 396,684 bytes in 8,349 blocks ==4670== Rerun with --leak-check=full to see details of leaked memory ==4670== ==4670== For counts of detected and suppressed errors, rerun with: -v ==4670== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4713== Memcheck, a memory error detector ==4713== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4713== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4713== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4713== Parent PID: 4670 ==4713== ==4731== Memcheck, a memory error detector ==4731== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4731== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4731== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==4731== Parent PID: 4670 ==4731== ==4751== Memcheck, a memory error detector ==4751== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4751== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4751== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4751== Parent PID: 104 ==4751== ==4751== ==4751== HEAP SUMMARY: ==4751== in use at exit: 628,163 bytes in 9,645 blocks ==4751== total heap usage: 382,683 allocs, 373,038 frees, 22,272,202 bytes allocated ==4751== ==4751== LEAK SUMMARY: ==4751== definitely lost: 0 bytes in 0 blocks ==4751== indirectly lost: 0 bytes in 0 blocks ==4751== possibly lost: 700 bytes in 4 blocks ==4751== still reachable: 197,266 bytes in 941 blocks ==4751== of which reachable via heuristic: ==4751== newarray : 7,312 bytes in 123 blocks ==4751== suppressed: 390,305 bytes in 8,173 blocks ==4751== Rerun with --leak-check=full to see details of leaked memory ==4751== ==4751== For counts of detected and suppressed errors, rerun with: -v ==4751== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4803== Memcheck, a memory error detector ==4803== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4803== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4803== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4803== Parent PID: 4751 ==4803== ==4821== Memcheck, a memory error detector ==4821== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4821== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4821== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==4821== Parent PID: 4751 ==4821== ==4838== Memcheck, a memory error detector ==4838== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4838== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4838== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4838== Parent PID: 104 ==4838== ==4838== ==4838== HEAP SUMMARY: ==4838== in use at exit: 629,358 bytes in 9,672 blocks ==4838== total heap usage: 400,588 allocs, 390,916 frees, 23,103,510 bytes allocated ==4838== ==4838== LEAK SUMMARY: ==4838== definitely lost: 0 bytes in 0 blocks ==4838== indirectly lost: 0 bytes in 0 blocks ==4838== possibly lost: 268 bytes in 2 blocks ==4838== still reachable: 192,678 bytes in 804 blocks ==4838== of which reachable via heuristic: ==4838== newarray : 7,312 bytes in 123 blocks ==4838== suppressed: 396,520 bytes in 8,339 blocks ==4838== Rerun with --leak-check=full to see details of leaked memory ==4838== ==4838== For counts of detected and suppressed errors, rerun with: -v ==4838== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4889== Memcheck, a memory error detector ==4889== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4889== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4889== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4889== Parent PID: 4838 ==4889== ==4907== Memcheck, a memory error detector ==4907== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4907== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4907== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==4907== Parent PID: 4838 ==4907== ==4927== Memcheck, a memory error detector ==4927== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4927== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4927== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==4927== Parent PID: 104 ==4927== ==4927== ==4927== HEAP SUMMARY: ==4927== in use at exit: 628,187 bytes in 9,647 blocks ==4927== total heap usage: 359,210 allocs, 349,563 frees, 21,231,352 bytes allocated ==4927== ==4927== LEAK SUMMARY: ==4927== definitely lost: 0 bytes in 0 blocks ==4927== indirectly lost: 0 bytes in 0 blocks ==4927== possibly lost: 268 bytes in 2 blocks ==4927== still reachable: 191,620 bytes in 784 blocks ==4927== of which reachable via heuristic: ==4927== newarray : 7,312 bytes in 123 blocks ==4927== suppressed: 396,407 bytes in 8,334 blocks ==4927== Rerun with --leak-check=full to see details of leaked memory ==4927== ==4927== For counts of detected and suppressed errors, rerun with: -v ==4927== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==4970== Memcheck, a memory error detector ==4970== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4970== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4970== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==4970== Parent PID: 4927 ==4970== ==4992== Memcheck, a memory error detector ==4992== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==4992== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==4992== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertParentTwice ==4992== Parent PID: 4927 ==4992== ==5009== Memcheck, a memory error detector ==5009== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5009== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5009== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5009== Parent PID: 104 ==5009== ==5009== ==5009== HEAP SUMMARY: ==5009== in use at exit: 628,169 bytes in 9,647 blocks ==5009== total heap usage: 359,180 allocs, 349,533 frees, 21,185,001 bytes allocated ==5009== ==5009== LEAK SUMMARY: ==5009== definitely lost: 0 bytes in 0 blocks ==5009== indirectly lost: 0 bytes in 0 blocks ==5009== possibly lost: 268 bytes in 2 blocks ==5009== still reachable: 191,786 bytes in 781 blocks ==5009== of which reachable via heuristic: ==5009== newarray : 7,312 bytes in 123 blocks ==5009== suppressed: 396,223 bytes in 8,337 blocks ==5009== Rerun with --leak-check=full to see details of leaked memory ==5009== ==5009== For counts of detected and suppressed errors, rerun with: -v ==5009== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5052== Memcheck, a memory error detector ==5052== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5052== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5052== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5052== Parent PID: 5009 ==5052== ==5074== Memcheck, a memory error detector ==5074== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5074== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5074== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertChildTwice ==5074== Parent PID: 5009 ==5074== ==5090== Memcheck, a memory error detector ==5090== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5090== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5090== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5090== Parent PID: 104 ==5090== ==5090== ==5090== HEAP SUMMARY: ==5090== in use at exit: 626,818 bytes in 9,617 blocks ==5090== total heap usage: 339,517 allocs, 329,900 frees, 20,351,981 bytes allocated ==5090== ==5090== LEAK SUMMARY: ==5090== definitely lost: 0 bytes in 0 blocks ==5090== indirectly lost: 0 bytes in 0 blocks ==5090== possibly lost: 268 bytes in 2 blocks ==5090== still reachable: 190,450 bytes in 750 blocks ==5090== of which reachable via heuristic: ==5090== newarray : 7,312 bytes in 123 blocks ==5090== suppressed: 396,208 bytes in 8,338 blocks ==5090== Rerun with --leak-check=full to see details of leaked memory ==5090== ==5090== For counts of detected and suppressed errors, rerun with: -v ==5090== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5134== Memcheck, a memory error detector ==5134== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5134== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5134== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5134== Parent PID: 5090 ==5134== ==5152== Memcheck, a memory error detector ==5152== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5152== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5152== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==5152== Parent PID: 5090 ==5152== ==5168== Memcheck, a memory error detector ==5168== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5168== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5168== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5168== Parent PID: 104 ==5168== ==5168== ==5168== HEAP SUMMARY: ==5168== in use at exit: 629,485 bytes in 9,675 blocks ==5168== total heap usage: 338,875 allocs, 329,200 frees, 20,291,074 bytes allocated ==5168== ==5168== LEAK SUMMARY: ==5168== definitely lost: 0 bytes in 0 blocks ==5168== indirectly lost: 0 bytes in 0 blocks ==5168== possibly lost: 268 bytes in 2 blocks ==5168== still reachable: 192,902 bytes in 804 blocks ==5168== of which reachable via heuristic: ==5168== newarray : 7,312 bytes in 123 blocks ==5168== suppressed: 396,423 bytes in 8,342 blocks ==5168== Rerun with --leak-check=full to see details of leaked memory ==5168== ==5168== For counts of detected and suppressed errors, rerun with: -v ==5168== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5211== Memcheck, a memory error detector ==5211== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5211== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5211== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5211== Parent PID: 5168 ==5211== ==5229== Memcheck, a memory error detector ==5229== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5229== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5229== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==5229== Parent PID: 5168 ==5229== ==5246== Memcheck, a memory error detector ==5246== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5246== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5246== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==5246== Parent PID: 104 ==5246== ==5246== ==5246== HEAP SUMMARY: ==5246== in use at exit: 628,191 bytes in 9,647 blocks ==5246== total heap usage: 256,017 allocs, 246,370 frees, 16,491,904 bytes allocated ==5246== ==5246== LEAK SUMMARY: ==5246== definitely lost: 0 bytes in 0 blocks ==5246== indirectly lost: 0 bytes in 0 blocks ==5246== possibly lost: 268 bytes in 2 blocks ==5246== still reachable: 191,503 bytes in 780 blocks ==5246== of which reachable via heuristic: ==5246== newarray : 7,312 bytes in 123 blocks ==5246== suppressed: 396,528 bytes in 8,338 blocks ==5246== Rerun with --leak-check=full to see details of leaked memory ==5246== ==5246== For counts of detected and suppressed errors, rerun with: -v ==5246== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==525== Memcheck, a memory error detector ==525== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==525== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==525== Command: ./client-test Client::Source::eds_event::testChangesMultiCycles ==525== Parent PID: 104 ==525== ==525== ==525== HEAP SUMMARY: ==525== in use at exit: 627,217 bytes in 9,617 blocks ==525== total heap usage: 811,026 allocs, 801,409 frees, 38,900,623 bytes allocated ==525== ==525== LEAK SUMMARY: ==525== definitely lost: 0 bytes in 0 blocks ==525== indirectly lost: 0 bytes in 0 blocks ==525== possibly lost: 700 bytes in 4 blocks ==525== still reachable: 196,929 bytes in 935 blocks ==525== of which reachable via heuristic: ==525== newarray : 7,312 bytes in 123 blocks ==525== suppressed: 389,696 bytes in 8,151 blocks ==525== Rerun with --leak-check=full to see details of leaked memory ==525== ==525== For counts of detected and suppressed errors, rerun with: -v ==525== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5289== Memcheck, a memory error detector ==5289== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5289== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5289== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs ==5289== Parent PID: 5246 ==5289== ==5297== Memcheck, a memory error detector ==5297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5297== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5297== Parent PID: 104 ==5297== ==5297== ==5297== HEAP SUMMARY: ==5297== in use at exit: 625,953 bytes in 9,591 blocks ==5297== total heap usage: 406,276 allocs, 396,685 frees, 23,392,109 bytes allocated ==5297== ==5297== LEAK SUMMARY: ==5297== definitely lost: 0 bytes in 0 blocks ==5297== indirectly lost: 0 bytes in 0 blocks ==5297== possibly lost: 268 bytes in 2 blocks ==5297== still reachable: 190,675 bytes in 773 blocks ==5297== of which reachable via heuristic: ==5297== newarray : 7,312 bytes in 123 blocks ==5297== suppressed: 395,118 bytes in 8,289 blocks ==5297== Rerun with --leak-check=full to see details of leaked memory ==5297== ==5297== For counts of detected and suppressed errors, rerun with: -v ==5297== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5349== Memcheck, a memory error detector ==5349== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5349== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5349== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5349== Parent PID: 5297 ==5349== ==5367== Memcheck, a memory error detector ==5367== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5367== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5367== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==5367== Parent PID: 5297 ==5367== ==5387== Memcheck, a memory error detector ==5387== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5387== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5387== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5387== Parent PID: 104 ==5387== ==5387== ==5387== HEAP SUMMARY: ==5387== in use at exit: 632,176 bytes in 9,729 blocks ==5387== total heap usage: 406,085 allocs, 396,356 frees, 23,411,285 bytes allocated ==5387== ==5387== LEAK SUMMARY: ==5387== definitely lost: 0 bytes in 0 blocks ==5387== indirectly lost: 0 bytes in 0 blocks ==5387== possibly lost: 700 bytes in 4 blocks ==5387== still reachable: 200,751 bytes in 1,011 blocks ==5387== of which reachable via heuristic: ==5387== newarray : 7,312 bytes in 123 blocks ==5387== suppressed: 390,833 bytes in 8,187 blocks ==5387== Rerun with --leak-check=full to see details of leaked memory ==5387== ==5387== For counts of detected and suppressed errors, rerun with: -v ==5387== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5438== Memcheck, a memory error detector ==5438== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5438== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5438== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5438== Parent PID: 5387 ==5438== ==5456== Memcheck, a memory error detector ==5456== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5456== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5456== Command: ./client-test Client::Source::eds_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==5456== Parent PID: 5387 ==5456== ==5476== Memcheck, a memory error detector ==5476== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5476== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5476== Command: ./client-test Client::Source::eds_task::testOpen ==5476== Parent PID: 104 ==5476== ==5476== ==5476== HEAP SUMMARY: ==5476== in use at exit: 619,129 bytes in 9,426 blocks ==5476== total heap usage: 132,085 allocs, 122,659 frees, 10,980,235 bytes allocated ==5476== ==5476== LEAK SUMMARY: ==5476== definitely lost: 0 bytes in 0 blocks ==5476== indirectly lost: 0 bytes in 0 blocks ==5476== possibly lost: 700 bytes in 4 blocks ==5476== still reachable: 196,438 bytes in 931 blocks ==5476== of which reachable via heuristic: ==5476== newarray : 7,184 bytes in 119 blocks ==5476== suppressed: 382,943 bytes in 7,982 blocks ==5476== Rerun with --leak-check=full to see details of leaked memory ==5476== ==5476== For counts of detected and suppressed errors, rerun with: -v ==5476== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5494== Memcheck, a memory error detector ==5494== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5494== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5494== Command: ./client-test Client::Source::eds_task::testIterateTwice ==5494== Parent PID: 104 ==5494== ==5494== ==5494== HEAP SUMMARY: ==5494== in use at exit: 629,192 bytes in 9,695 blocks ==5494== total heap usage: 135,424 allocs, 125,729 frees, 11,110,230 bytes allocated ==5494== ==5494== LEAK SUMMARY: ==5494== definitely lost: 0 bytes in 0 blocks ==5494== indirectly lost: 0 bytes in 0 blocks ==5494== possibly lost: 268 bytes in 2 blocks ==5494== still reachable: 191,733 bytes in 779 blocks ==5494== of which reachable via heuristic: ==5494== newarray : 7,312 bytes in 123 blocks ==5494== suppressed: 397,299 bytes in 8,387 blocks ==5494== Rerun with --leak-check=full to see details of leaked memory ==5494== ==5494== For counts of detected and suppressed errors, rerun with: -v ==5494== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5512== Memcheck, a memory error detector ==5512== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5512== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5512== Command: ./client-test Client::Source::eds_task::testDelete404 ==5512== Parent PID: 104 ==5512== ==5512== ==5512== HEAP SUMMARY: ==5512== in use at exit: 625,829 bytes in 9,589 blocks ==5512== total heap usage: 136,350 allocs, 126,761 frees, 11,124,539 bytes allocated ==5512== ==5512== LEAK SUMMARY: ==5512== definitely lost: 0 bytes in 0 blocks ==5512== indirectly lost: 0 bytes in 0 blocks ==5512== possibly lost: 700 bytes in 4 blocks ==5512== still reachable: 196,406 bytes in 932 blocks ==5512== of which reachable via heuristic: ==5512== newarray : 7,312 bytes in 123 blocks ==5512== suppressed: 388,831 bytes in 8,126 blocks ==5512== Rerun with --leak-check=full to see details of leaked memory ==5512== ==5512== For counts of detected and suppressed errors, rerun with: -v ==5512== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5531== Memcheck, a memory error detector ==5531== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5531== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5531== Command: ./client-test Client::Source::eds_task::testReadItem404 ==5531== Parent PID: 104 ==5531== ==5531== ==5531== HEAP SUMMARY: ==5531== in use at exit: 627,971 bytes in 9,642 blocks ==5531== total heap usage: 136,105 allocs, 126,463 frees, 11,117,117 bytes allocated ==5531== ==5531== LEAK SUMMARY: ==5531== definitely lost: 0 bytes in 0 blocks ==5531== indirectly lost: 0 bytes in 0 blocks ==5531== possibly lost: 268 bytes in 2 blocks ==5531== still reachable: 191,451 bytes in 776 blocks ==5531== of which reachable via heuristic: ==5531== newarray : 7,312 bytes in 123 blocks ==5531== suppressed: 396,360 bytes in 8,337 blocks ==5531== Rerun with --leak-check=full to see details of leaked memory ==5531== ==5531== For counts of detected and suppressed errors, rerun with: -v ==5531== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5550== Memcheck, a memory error detector ==5550== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5550== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5550== Command: ./client-test Client::Source::eds_task::testSimpleInsert ==5550== Parent PID: 104 ==5550== ==5550== ==5550== HEAP SUMMARY: ==5550== in use at exit: 627,010 bytes in 9,614 blocks ==5550== total heap usage: 158,795 allocs, 149,181 frees, 12,095,847 bytes allocated ==5550== ==5550== LEAK SUMMARY: ==5550== definitely lost: 0 bytes in 0 blocks ==5550== indirectly lost: 0 bytes in 0 blocks ==5550== possibly lost: 700 bytes in 4 blocks ==5550== still reachable: 196,946 bytes in 935 blocks ==5550== of which reachable via heuristic: ==5550== newarray : 7,312 bytes in 123 blocks ==5550== suppressed: 389,472 bytes in 8,148 blocks ==5550== Rerun with --leak-check=full to see details of leaked memory ==5550== ==5550== For counts of detected and suppressed errors, rerun with: -v ==5550== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5581== Memcheck, a memory error detector ==5581== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5581== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5581== Command: ./client-test Client::Source::eds_task::testLocalDeleteAll ==5581== Parent PID: 104 ==5581== ==5581== ==5581== HEAP SUMMARY: ==5581== in use at exit: 627,289 bytes in 9,647 blocks ==5581== total heap usage: 203,837 allocs, 194,190 frees, 14,008,898 bytes allocated ==5581== ==5581== LEAK SUMMARY: ==5581== definitely lost: 0 bytes in 0 blocks ==5581== indirectly lost: 0 bytes in 0 blocks ==5581== possibly lost: 268 bytes in 2 blocks ==5581== still reachable: 190,830 bytes in 760 blocks ==5581== of which reachable via heuristic: ==5581== newarray : 7,312 bytes in 123 blocks ==5581== suppressed: 396,215 bytes in 8,356 blocks ==5581== Rerun with --leak-check=full to see details of leaked memory ==5581== ==5581== For counts of detected and suppressed errors, rerun with: -v ==5581== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5635== Memcheck, a memory error detector ==5635== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5635== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5635== Command: ./client-test Client::Source::eds_task::testComplexInsert ==5635== Parent PID: 104 ==5635== ==5635== ==5635== HEAP SUMMARY: ==5635== in use at exit: 628,075 bytes in 9,647 blocks ==5635== total heap usage: 223,837 allocs, 214,190 frees, 14,817,772 bytes allocated ==5635== ==5635== LEAK SUMMARY: ==5635== definitely lost: 0 bytes in 0 blocks ==5635== indirectly lost: 0 bytes in 0 blocks ==5635== possibly lost: 268 bytes in 2 blocks ==5635== still reachable: 191,475 bytes in 777 blocks ==5635== of which reachable via heuristic: ==5635== newarray : 7,312 bytes in 123 blocks ==5635== suppressed: 396,440 bytes in 8,341 blocks ==5635== Rerun with --leak-check=full to see details of leaked memory ==5635== ==5635== For counts of detected and suppressed errors, rerun with: -v ==5635== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5701== Memcheck, a memory error detector ==5701== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5701== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5701== Command: ./client-test Client::Source::eds_task::testInsertTwice ==5701== Parent PID: 104 ==5701== ==5701== ==5701== HEAP SUMMARY: ==5701== in use at exit: 627,445 bytes in 9,633 blocks ==5701== total heap usage: 181,855 allocs, 172,222 frees, 13,078,678 bytes allocated ==5701== ==5701== LEAK SUMMARY: ==5701== definitely lost: 0 bytes in 0 blocks ==5701== indirectly lost: 0 bytes in 0 blocks ==5701== possibly lost: 268 bytes in 2 blocks ==5701== still reachable: 191,371 bytes in 781 blocks ==5701== of which reachable via heuristic: ==5701== newarray : 7,312 bytes in 123 blocks ==5701== suppressed: 395,830 bytes in 8,321 blocks ==5701== Rerun with --leak-check=full to see details of leaked memory ==5701== ==5701== For counts of detected and suppressed errors, rerun with: -v ==5701== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5743== Memcheck, a memory error detector ==5743== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5743== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5743== Command: ./client-test Client::Source::eds_task::testLocalUpdate ==5743== Parent PID: 104 ==5743== ==5743== ==5743== HEAP SUMMARY: ==5743== in use at exit: 627,130 bytes in 9,619 blocks ==5743== total heap usage: 247,821 allocs, 238,202 frees, 15,879,475 bytes allocated ==5743== ==5743== LEAK SUMMARY: ==5743== definitely lost: 0 bytes in 0 blocks ==5743== indirectly lost: 0 bytes in 0 blocks ==5743== possibly lost: 700 bytes in 4 blocks ==5743== still reachable: 196,946 bytes in 935 blocks ==5743== of which reachable via heuristic: ==5743== newarray : 7,312 bytes in 123 blocks ==5743== suppressed: 389,592 bytes in 8,153 blocks ==5743== Rerun with --leak-check=full to see details of leaked memory ==5743== ==5743== For counts of detected and suppressed errors, rerun with: -v ==5743== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==5824== Memcheck, a memory error detector ==5824== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==5824== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==5824== Command: ./client-test Client::Source::eds_task::testChanges ==5824== Parent PID: 104 ==5824== ==5824== ==5824== HEAP SUMMARY: ==5824== in use at exit: 627,122 bytes in 9,619 blocks ==5824== total heap usage: 957,838 allocs, 948,219 frees, 45,913,060 bytes allocated ==5824== ==5824== LEAK SUMMARY: ==5824== definitely lost: 0 bytes in 0 blocks ==5824== indirectly lost: 0 bytes in 0 blocks ==5824== possibly lost: 268 bytes in 2 blocks ==5824== still reachable: 191,215 bytes in 775 blocks ==5824== of which reachable via heuristic: ==5824== newarray : 7,312 bytes in 123 blocks ==5824== suppressed: 395,747 bytes in 8,315 blocks ==5824== Rerun with --leak-check=full to see details of leaked memory ==5824== ==5824== For counts of detected and suppressed errors, rerun with: -v ==5824== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6287== Memcheck, a memory error detector ==6287== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6287== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6287== Command: ./client-test Client::Source::eds_task::testChangesMultiCycles ==6287== Parent PID: 104 ==6287== ==6287== ==6287== HEAP SUMMARY: ==6287== in use at exit: 628,532 bytes in 9,683 blocks ==6287== total heap usage: 873,881 allocs, 864,198 frees, 39,645,036 bytes allocated ==6287== ==6287== LEAK SUMMARY: ==6287== definitely lost: 0 bytes in 0 blocks ==6287== indirectly lost: 0 bytes in 0 blocks ==6287== possibly lost: 268 bytes in 2 blocks ==6287== still reachable: 191,624 bytes in 790 blocks ==6287== of which reachable via heuristic: ==6287== newarray : 7,312 bytes in 123 blocks ==6287== suppressed: 396,664 bytes in 8,362 blocks ==6287== Rerun with --leak-check=full to see details of leaked memory ==6287== ==6287== For counts of detected and suppressed errors, rerun with: -v ==6287== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6750== Memcheck, a memory error detector ==6750== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6750== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6750== Command: ./client-test Client::Source::eds_task::testImport ==6750== Parent PID: 104 ==6750== ==6750== ==6750== HEAP SUMMARY: ==6750== in use at exit: 749,382 bytes in 12,511 blocks ==6750== total heap usage: 222,724 allocs, 210,213 frees, 16,561,909 bytes allocated ==6750== ==6750== LEAK SUMMARY: ==6750== definitely lost: 0 bytes in 0 blocks ==6750== indirectly lost: 0 bytes in 0 blocks ==6750== possibly lost: 268 bytes in 2 blocks ==6750== still reachable: 313,669 bytes in 3,677 blocks ==6750== of which reachable via heuristic: ==6750== newarray : 7,312 bytes in 123 blocks ==6750== suppressed: 395,553 bytes in 8,305 blocks ==6750== Rerun with --leak-check=full to see details of leaked memory ==6750== ==6750== For counts of detected and suppressed errors, rerun with: -v ==6750== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6806== Memcheck, a memory error detector ==6806== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6806== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6806== Command: ./client-test Client::Source::eds_task::testImport ==6806== Parent PID: 6750 ==6806== ==6814== Memcheck, a memory error detector ==6814== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6814== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6814== Command: ./client-test Client::Source::eds_task::testImportDelete ==6814== Parent PID: 104 ==6814== ==6814== ==6814== HEAP SUMMARY: ==6814== in use at exit: 750,485 bytes in 12,563 blocks ==6814== total heap usage: 267,464 allocs, 254,901 frees, 18,431,669 bytes allocated ==6814== ==6814== LEAK SUMMARY: ==6814== definitely lost: 0 bytes in 0 blocks ==6814== indirectly lost: 0 bytes in 0 blocks ==6814== possibly lost: 268 bytes in 2 blocks ==6814== still reachable: 313,656 bytes in 3,677 blocks ==6814== of which reachable via heuristic: ==6814== newarray : 7,312 bytes in 123 blocks ==6814== suppressed: 396,669 bytes in 8,357 blocks ==6814== Rerun with --leak-check=full to see details of leaked memory ==6814== ==6814== For counts of detected and suppressed errors, rerun with: -v ==6814== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6870== Memcheck, a memory error detector ==6870== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6870== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6870== Command: ./client-test Client::Source::eds_task::testImportDelete ==6870== Parent PID: 6814 ==6870== ==6903== Memcheck, a memory error detector ==6903== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6903== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6903== Command: ./client-test Client::Source::eds_task::testRemoveProperties ==6903== Parent PID: 104 ==6903== ==6903== ==6903== HEAP SUMMARY: ==6903== in use at exit: 750,359 bytes in 12,541 blocks ==6903== total heap usage: 253,332 allocs, 240,791 frees, 18,920,529 bytes allocated ==6903== ==6903== LEAK SUMMARY: ==6903== definitely lost: 0 bytes in 0 blocks ==6903== indirectly lost: 0 bytes in 0 blocks ==6903== possibly lost: 268 bytes in 2 blocks ==6903== still reachable: 313,812 bytes in 3,675 blocks ==6903== of which reachable via heuristic: ==6903== newarray : 7,312 bytes in 123 blocks ==6903== suppressed: 396,387 bytes in 8,337 blocks ==6903== Rerun with --leak-check=full to see details of leaked memory ==6903== ==6903== For counts of detected and suppressed errors, rerun with: -v ==6903== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==694== Memcheck, a memory error detector ==694== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==694== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==694== Command: ./client-test Client::Source::eds_event::testImport ==694== Parent PID: 104 ==694== ==694== ==694== HEAP SUMMARY: ==694== in use at exit: 730,113 bytes in 12,059 blocks ==694== total heap usage: 290,496 allocs, 278,437 frees, 22,112,646 bytes allocated ==694== ==694== LEAK SUMMARY: ==694== definitely lost: 0 bytes in 0 blocks ==694== indirectly lost: 0 bytes in 0 blocks ==694== possibly lost: 700 bytes in 4 blocks ==694== still reachable: 301,445 bytes in 3,432 blocks ==694== of which reachable via heuristic: ==694== newarray : 7,312 bytes in 123 blocks ==694== suppressed: 388,076 bytes in 8,096 blocks ==694== Rerun with --leak-check=full to see details of leaked memory ==694== ==694== For counts of detected and suppressed errors, rerun with: -v ==694== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==6971== Memcheck, a memory error detector ==6971== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6971== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6971== Command: ./client-test Client::Source::eds_task::testRemoveProperties ==6971== Parent PID: 6903 ==6971== ==6979== Memcheck, a memory error detector ==6979== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==6979== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==6979== Command: ./client-test Client::Source::eds_task::testManyChanges ==6979== Parent PID: 104 ==6979== ==6979== ==6979== HEAP SUMMARY: ==6979== in use at exit: 620,620 bytes in 9,468 blocks ==6979== total heap usage: 562,952 allocs, 553,484 frees, 37,277,933 bytes allocated ==6979== ==6979== LEAK SUMMARY: ==6979== definitely lost: 0 bytes in 0 blocks ==6979== indirectly lost: 0 bytes in 0 blocks ==6979== possibly lost: 268 bytes in 2 blocks ==6979== still reachable: 188,782 bytes in 749 blocks ==6979== of which reachable via heuristic: ==6979== newarray : 7,312 bytes in 123 blocks ==6979== suppressed: 391,678 bytes in 8,190 blocks ==6979== Rerun with --leak-check=full to see details of leaked memory ==6979== ==6979== For counts of detected and suppressed errors, rerun with: -v ==6979== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7082== Memcheck, a memory error detector ==7082== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7082== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7082== Command: ./client-test Client::Source::eds_contact::testOpen ==7082== Parent PID: 104 ==7082== ==7082== ==7082== HEAP SUMMARY: ==7082== in use at exit: 566,702 bytes in 8,970 blocks ==7082== total heap usage: 140,133 allocs, 131,163 frees, 11,450,170 bytes allocated ==7082== ==7082== LEAK SUMMARY: ==7082== definitely lost: 0 bytes in 0 blocks ==7082== indirectly lost: 0 bytes in 0 blocks ==7082== possibly lost: 700 bytes in 4 blocks ==7082== still reachable: 196,529 bytes in 909 blocks ==7082== of which reachable via heuristic: ==7082== newarray : 7,164 bytes in 118 blocks ==7082== suppressed: 330,925 bytes in 7,559 blocks ==7082== Rerun with --leak-check=full to see details of leaked memory ==7082== ==7082== For counts of detected and suppressed errors, rerun with: -v ==7082== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7100== Memcheck, a memory error detector ==7100== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7100== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7100== Command: ./client-test Client::Source::eds_contact::testIterateTwice ==7100== Parent PID: 104 ==7100== ==7100== ==7100== HEAP SUMMARY: ==7100== in use at exit: 571,339 bytes in 9,140 blocks ==7100== total heap usage: 145,275 allocs, 136,135 frees, 11,615,607 bytes allocated ==7100== ==7100== LEAK SUMMARY: ==7100== definitely lost: 0 bytes in 0 blocks ==7100== indirectly lost: 0 bytes in 0 blocks ==7100== possibly lost: 700 bytes in 4 blocks ==7100== still reachable: 196,545 bytes in 918 blocks ==7100== of which reachable via heuristic: ==7100== newarray : 7,292 bytes in 122 blocks ==7100== suppressed: 334,542 bytes in 7,699 blocks ==7100== Rerun with --leak-check=full to see details of leaked memory ==7100== ==7100== For counts of detected and suppressed errors, rerun with: -v ==7100== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7122== Memcheck, a memory error detector ==7122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7122== Command: ./client-test Client::Source::eds_contact::testDelete404 ==7122== Parent PID: 104 ==7122== ==7122== ==7122== HEAP SUMMARY: ==7122== in use at exit: 569,615 bytes in 9,081 blocks ==7122== total heap usage: 145,360 allocs, 136,279 frees, 11,616,840 bytes allocated ==7122== ==7122== LEAK SUMMARY: ==7122== definitely lost: 0 bytes in 0 blocks ==7122== indirectly lost: 0 bytes in 0 blocks ==7122== possibly lost: 268 bytes in 2 blocks ==7122== still reachable: 190,876 bytes in 779 blocks ==7122== of which reachable via heuristic: ==7122== newarray : 7,292 bytes in 122 blocks ==7122== suppressed: 339,003 bytes in 7,783 blocks ==7122== Rerun with --leak-check=full to see details of leaked memory ==7122== ==7122== For counts of detected and suppressed errors, rerun with: -v ==7122== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7144== Memcheck, a memory error detector ==7144== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7144== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7144== Command: ./client-test Client::Source::eds_contact::testReadItem404 ==7144== Parent PID: 104 ==7144== ==7144== ==7144== HEAP SUMMARY: ==7144== in use at exit: 573,320 bytes in 9,191 blocks ==7144== total heap usage: 145,542 allocs, 136,351 frees, 11,624,373 bytes allocated ==7144== ==7144== LEAK SUMMARY: ==7144== definitely lost: 0 bytes in 0 blocks ==7144== indirectly lost: 0 bytes in 0 blocks ==7144== possibly lost: 268 bytes in 2 blocks ==7144== still reachable: 191,691 bytes in 780 blocks ==7144== of which reachable via heuristic: ==7144== newarray : 7,292 bytes in 122 blocks ==7144== suppressed: 341,893 bytes in 7,892 blocks ==7144== Rerun with --leak-check=full to see details of leaked memory ==7144== ==7144== For counts of detected and suppressed errors, rerun with: -v ==7144== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7166== Memcheck, a memory error detector ==7166== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7166== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7166== Command: ./client-test Client::Source::eds_contact::testSimpleInsert ==7166== Parent PID: 104 ==7166== ==7166== ==7166== HEAP SUMMARY: ==7166== in use at exit: 607,945 bytes in 9,617 blocks ==7166== total heap usage: 164,163 allocs, 154,546 frees, 12,538,302 bytes allocated ==7166== ==7166== LEAK SUMMARY: ==7166== definitely lost: 0 bytes in 0 blocks ==7166== indirectly lost: 0 bytes in 0 blocks ==7166== possibly lost: 484 bytes in 3 blocks ==7166== still reachable: 194,912 bytes in 810 blocks ==7166== of which reachable via heuristic: ==7166== newarray : 7,292 bytes in 122 blocks ==7166== suppressed: 361,113 bytes in 8,152 blocks ==7166== Rerun with --leak-check=full to see details of leaked memory ==7166== ==7166== For counts of detected and suppressed errors, rerun with: -v ==7166== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7193== Memcheck, a memory error detector ==7193== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7193== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7193== Command: ./client-test Client::Source::eds_contact::testLocalDeleteAll ==7193== Parent PID: 104 ==7193== ==7193== ==7193== HEAP SUMMARY: ==7193== in use at exit: 610,687 bytes in 9,675 blocks ==7193== total heap usage: 199,652 allocs, 189,977 frees, 14,215,686 bytes allocated ==7193== ==7193== LEAK SUMMARY: ==7193== definitely lost: 0 bytes in 0 blocks ==7193== indirectly lost: 0 bytes in 0 blocks ==7193== possibly lost: 916 bytes in 5 blocks ==7193== still reachable: 202,896 bytes in 1,014 blocks ==7193== of which reachable via heuristic: ==7193== newarray : 7,292 bytes in 122 blocks ==7193== suppressed: 355,439 bytes in 8,004 blocks ==7193== Rerun with --leak-check=full to see details of leaked memory ==7193== ==7193== For counts of detected and suppressed errors, rerun with: -v ==7193== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7229== Memcheck, a memory error detector ==7229== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7229== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7229== Command: ./client-test Client::Source::eds_contact::testComplexInsert ==7229== Parent PID: 104 ==7229== ==7229== ==7229== HEAP SUMMARY: ==7229== in use at exit: 607,813 bytes in 9,616 blocks ==7229== total heap usage: 215,061 allocs, 205,445 frees, 14,938,056 bytes allocated ==7229== ==7229== LEAK SUMMARY: ==7229== definitely lost: 0 bytes in 0 blocks ==7229== indirectly lost: 0 bytes in 0 blocks ==7229== possibly lost: 916 bytes in 5 blocks ==7229== still reachable: 200,526 bytes in 966 blocks ==7229== of which reachable via heuristic: ==7229== newarray : 7,292 bytes in 122 blocks ==7229== suppressed: 354,935 bytes in 7,993 blocks ==7229== Rerun with --leak-check=full to see details of leaked memory ==7229== ==7229== For counts of detected and suppressed errors, rerun with: -v ==7229== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7269== Memcheck, a memory error detector ==7269== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7269== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7269== Command: ./client-test Client::Source::eds_contact::testLocalUpdate ==7269== Parent PID: 104 ==7269== ==7269== ==7269== HEAP SUMMARY: ==7269== in use at exit: 607,864 bytes in 9,642 blocks ==7269== total heap usage: 235,205 allocs, 225,563 frees, 15,907,468 bytes allocated ==7269== ==7269== LEAK SUMMARY: ==7269== definitely lost: 0 bytes in 0 blocks ==7269== indirectly lost: 0 bytes in 0 blocks ==7269== possibly lost: 484 bytes in 3 blocks ==7269== still reachable: 193,884 bytes in 789 blocks ==7269== of which reachable via heuristic: ==7269== newarray : 7,292 bytes in 122 blocks ==7269== suppressed: 362,060 bytes in 8,198 blocks ==7269== Rerun with --leak-check=full to see details of leaked memory ==7269== ==7269== For counts of detected and suppressed errors, rerun with: -v ==7269== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==729== Memcheck, a memory error detector ==729== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==729== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==729== Command: ./client-test Client::Source::eds_event::testImport ==729== Parent PID: 694 ==729== ==7314== Memcheck, a memory error detector ==7314== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7314== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7314== Command: ./client-test Client::Source::eds_contact::testChanges ==7314== Parent PID: 104 ==7314== ==7314== ==7314== HEAP SUMMARY: ==7314== in use at exit: 605,536 bytes in 9,560 blocks ==7314== total heap usage: 796,355 allocs, 786,795 frees, 42,520,540 bytes allocated ==7314== ==7314== LEAK SUMMARY: ==7314== definitely lost: 0 bytes in 0 blocks ==7314== indirectly lost: 0 bytes in 0 blocks ==7314== possibly lost: 484 bytes in 3 blocks ==7314== still reachable: 193,315 bytes in 777 blocks ==7314== of which reachable via heuristic: ==7314== newarray : 7,292 bytes in 122 blocks ==7314== suppressed: 360,301 bytes in 8,128 blocks ==7314== Rerun with --leak-check=full to see details of leaked memory ==7314== ==7314== For counts of detected and suppressed errors, rerun with: -v ==7314== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==737== Memcheck, a memory error detector ==737== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==737== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==737== Command: ./client-test Client::Source::eds_event::testImportDelete ==737== Parent PID: 104 ==737== ==737== ==737== HEAP SUMMARY: ==737== in use at exit: 734,097 bytes in 12,179 blocks ==737== total heap usage: 375,442 allocs, 363,263 frees, 26,123,506 bytes allocated ==737== ==737== LEAK SUMMARY: ==737== definitely lost: 0 bytes in 0 blocks ==737== indirectly lost: 0 bytes in 0 blocks ==737== possibly lost: 268 bytes in 2 blocks ==737== still reachable: 296,963 bytes in 3,283 blocks ==737== of which reachable via heuristic: ==737== newarray : 7,312 bytes in 123 blocks ==737== suppressed: 396,890 bytes in 8,365 blocks ==737== Rerun with --leak-check=full to see details of leaked memory ==737== ==737== For counts of detected and suppressed errors, rerun with: -v ==737== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7499== Memcheck, a memory error detector ==7499== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7499== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7499== Command: ./client-test Client::Source::eds_contact::testChangesMultiCycles ==7499== Parent PID: 104 ==7499== ==7499== ==7499== HEAP SUMMARY: ==7499== in use at exit: 607,950 bytes in 9,619 blocks ==7499== total heap usage: 709,313 allocs, 699,694 frees, 36,181,615 bytes allocated ==7499== ==7499== LEAK SUMMARY: ==7499== definitely lost: 0 bytes in 0 blocks ==7499== indirectly lost: 0 bytes in 0 blocks ==7499== possibly lost: 484 bytes in 3 blocks ==7499== still reachable: 195,057 bytes in 807 blocks ==7499== of which reachable via heuristic: ==7499== newarray : 7,292 bytes in 122 blocks ==7499== suppressed: 360,973 bytes in 8,157 blocks ==7499== Rerun with --leak-check=full to see details of leaked memory ==7499== ==7499== For counts of detected and suppressed errors, rerun with: -v ==7499== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7685== Memcheck, a memory error detector ==7685== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7685== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7685== Command: ./client-test Client::Source::eds_contact::testImport ==7685== Parent PID: 104 ==7685== ==7685== ==7685== HEAP SUMMARY: ==7685== in use at exit: 605,795 bytes in 9,571 blocks ==7685== total heap usage: 262,745 allocs, 253,174 frees, 19,737,951 bytes allocated ==7685== ==7685== LEAK SUMMARY: ==7685== definitely lost: 0 bytes in 0 blocks ==7685== indirectly lost: 0 bytes in 0 blocks ==7685== possibly lost: 916 bytes in 5 blocks ==7685== still reachable: 199,241 bytes in 951 blocks ==7685== of which reachable via heuristic: ==7685== newarray : 7,292 bytes in 122 blocks ==7685== suppressed: 354,202 bytes in 7,963 blocks ==7685== Rerun with --leak-check=full to see details of leaked memory ==7685== ==7685== For counts of detected and suppressed errors, rerun with: -v ==7685== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==772== Memcheck, a memory error detector ==772== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==772== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==772== Command: ./client-test Client::Source::eds_event::testImportDelete ==772== Parent PID: 737 ==772== ==7722== Memcheck, a memory error detector ==7722== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7722== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7722== Command: ./client-test Client::Source::eds_contact::testImport ==7722== Parent PID: 7685 ==7722== ==7731== Memcheck, a memory error detector ==7731== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7731== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7731== Command: ./client-test Client::Source::eds_contact::testImportDelete ==7731== Parent PID: 104 ==7731== ==7731== ==7731== HEAP SUMMARY: ==7731== in use at exit: 608,221 bytes in 9,629 blocks ==7731== total heap usage: 318,561 allocs, 308,932 frees, 22,636,332 bytes allocated ==7731== ==7731== LEAK SUMMARY: ==7731== definitely lost: 0 bytes in 0 blocks ==7731== indirectly lost: 0 bytes in 0 blocks ==7731== possibly lost: 916 bytes in 5 blocks ==7731== still reachable: 200,902 bytes in 977 blocks ==7731== of which reachable via heuristic: ==7731== newarray : 7,292 bytes in 122 blocks ==7731== suppressed: 354,967 bytes in 7,995 blocks ==7731== Rerun with --leak-check=full to see details of leaked memory ==7731== ==7731== For counts of detected and suppressed errors, rerun with: -v ==7731== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7768== Memcheck, a memory error detector ==7768== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7768== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7768== Command: ./client-test Client::Source::eds_contact::testImportDelete ==7768== Parent PID: 7731 ==7768== ==7786== Memcheck, a memory error detector ==7786== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7786== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7786== Command: ./client-test Client::Source::eds_contact::testRemoveProperties ==7786== Parent PID: 104 ==7786== ==7786== ==7786== HEAP SUMMARY: ==7786== in use at exit: 607,946 bytes in 9,617 blocks ==7786== total heap usage: 327,503 allocs, 317,886 frees, 25,633,592 bytes allocated ==7786== ==7786== LEAK SUMMARY: ==7786== definitely lost: 0 bytes in 0 blocks ==7786== indirectly lost: 0 bytes in 0 blocks ==7786== possibly lost: 484 bytes in 3 blocks ==7786== still reachable: 194,796 bytes in 806 blocks ==7786== of which reachable via heuristic: ==7786== newarray : 7,292 bytes in 122 blocks ==7786== suppressed: 361,230 bytes in 8,156 blocks ==7786== Rerun with --leak-check=full to see details of leaked memory ==7786== ==7786== For counts of detected and suppressed errors, rerun with: -v ==7786== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7827== Memcheck, a memory error detector ==7827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7827== Command: ./client-test Client::Source::eds_contact::testRemoveProperties ==7827== Parent PID: 7786 ==7827== ==7836== Memcheck, a memory error detector ==7836== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7836== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7836== Command: ./client-test Client::Source::eds_contact::testManyChanges ==7836== Parent PID: 104 ==7836== ==7836== ==7836== HEAP SUMMARY: ==7836== in use at exit: 608,846 bytes in 9,619 blocks ==7836== total heap usage: 511,796 allocs, 502,177 frees, 37,547,460 bytes allocated ==7836== ==7836== LEAK SUMMARY: ==7836== definitely lost: 0 bytes in 0 blocks ==7836== indirectly lost: 0 bytes in 0 blocks ==7836== possibly lost: 916 bytes in 5 blocks ==7836== still reachable: 201,695 bytes in 964 blocks ==7836== of which reachable via heuristic: ==7836== newarray : 7,292 bytes in 122 blocks ==7836== suppressed: 354,799 bytes in 7,998 blocks ==7836== Rerun with --leak-check=full to see details of leaked memory ==7836== ==7836== For counts of detected and suppressed errors, rerun with: -v ==7836== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==788== Memcheck, a memory error detector ==788== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==788== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==788== Command: ./client-test Client::Source::eds_event::testRemoveProperties ==788== Parent PID: 104 ==788== ==788== ==788== HEAP SUMMARY: ==788== in use at exit: 734,747 bytes in 12,193 blocks ==788== total heap usage: 374,551 allocs, 362,358 frees, 30,037,605 bytes allocated ==788== ==788== LEAK SUMMARY: ==788== definitely lost: 0 bytes in 0 blocks ==788== indirectly lost: 0 bytes in 0 blocks ==788== possibly lost: 268 bytes in 2 blocks ==788== still reachable: 297,035 bytes in 3,278 blocks ==788== of which reachable via heuristic: ==788== newarray : 7,312 bytes in 123 blocks ==788== suppressed: 397,552 bytes in 8,386 blocks ==788== Rerun with --leak-check=full to see details of leaked memory ==788== ==788== For counts of detected and suppressed errors, rerun with: -v ==788== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7888== Memcheck, a memory error detector ==7888== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7888== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7888== Command: ./client-test Client::Source::eds_memo::testOpen ==7888== Parent PID: 104 ==7888== ==7888== ==7888== HEAP SUMMARY: ==7888== in use at exit: 619,160 bytes in 9,426 blocks ==7888== total heap usage: 131,821 allocs, 122,395 frees, 10,973,733 bytes allocated ==7888== ==7888== LEAK SUMMARY: ==7888== definitely lost: 0 bytes in 0 blocks ==7888== indirectly lost: 0 bytes in 0 blocks ==7888== possibly lost: 268 bytes in 2 blocks ==7888== still reachable: 190,856 bytes in 775 blocks ==7888== of which reachable via heuristic: ==7888== newarray : 7,184 bytes in 119 blocks ==7888== suppressed: 388,988 bytes in 8,140 blocks ==7888== Rerun with --leak-check=full to see details of leaked memory ==7888== ==7888== For counts of detected and suppressed errors, rerun with: -v ==7888== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7905== Memcheck, a memory error detector ==7905== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7905== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7905== Command: ./client-test Client::Source::eds_memo::testIterateTwice ==7905== Parent PID: 104 ==7905== ==7905== ==7905== HEAP SUMMARY: ==7905== in use at exit: 627,034 bytes in 9,630 blocks ==7905== total heap usage: 135,661 allocs, 126,031 frees, 11,113,049 bytes allocated ==7905== ==7905== LEAK SUMMARY: ==7905== definitely lost: 0 bytes in 0 blocks ==7905== indirectly lost: 0 bytes in 0 blocks ==7905== possibly lost: 268 bytes in 2 blocks ==7905== still reachable: 190,799 bytes in 757 blocks ==7905== of which reachable via heuristic: ==7905== newarray : 7,312 bytes in 123 blocks ==7905== suppressed: 396,075 bytes in 8,344 blocks ==7905== Rerun with --leak-check=full to see details of leaked memory ==7905== ==7905== For counts of detected and suppressed errors, rerun with: -v ==7905== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7923== Memcheck, a memory error detector ==7923== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7923== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7923== Command: ./client-test Client::Source::eds_memo::testDelete404 ==7923== Parent PID: 104 ==7923== ==7923== ==7923== HEAP SUMMARY: ==7923== in use at exit: 625,988 bytes in 9,602 blocks ==7923== total heap usage: 136,124 allocs, 126,522 frees, 11,118,521 bytes allocated ==7923== ==7923== LEAK SUMMARY: ==7923== definitely lost: 0 bytes in 0 blocks ==7923== indirectly lost: 0 bytes in 0 blocks ==7923== possibly lost: 268 bytes in 2 blocks ==7923== still reachable: 190,487 bytes in 757 blocks ==7923== of which reachable via heuristic: ==7923== newarray : 7,312 bytes in 123 blocks ==7923== suppressed: 395,257 bytes in 8,314 blocks ==7923== Rerun with --leak-check=full to see details of leaked memory ==7923== ==7923== For counts of detected and suppressed errors, rerun with: -v ==7923== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7942== Memcheck, a memory error detector ==7942== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7942== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7942== Command: ./client-test Client::Source::eds_memo::testReadItem404 ==7942== Parent PID: 104 ==7942== ==7942== ==7942== HEAP SUMMARY: ==7942== in use at exit: 629,578 bytes in 9,708 blocks ==7942== total heap usage: 135,763 allocs, 126,055 frees, 11,108,449 bytes allocated ==7942== ==7942== LEAK SUMMARY: ==7942== definitely lost: 0 bytes in 0 blocks ==7942== indirectly lost: 0 bytes in 0 blocks ==7942== possibly lost: 268 bytes in 2 blocks ==7942== still reachable: 191,795 bytes in 784 blocks ==7942== of which reachable via heuristic: ==7942== newarray : 7,312 bytes in 123 blocks ==7942== suppressed: 397,623 bytes in 8,395 blocks ==7942== Rerun with --leak-check=full to see details of leaked memory ==7942== ==7942== For counts of detected and suppressed errors, rerun with: -v ==7942== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7960== Memcheck, a memory error detector ==7960== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7960== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7960== Command: ./client-test Client::Source::eds_memo::testSimpleInsert ==7960== Parent PID: 104 ==7960== ==7960== ==7960== HEAP SUMMARY: ==7960== in use at exit: 627,002 bytes in 9,612 blocks ==7960== total heap usage: 158,475 allocs, 148,863 frees, 12,080,698 bytes allocated ==7960== ==7960== LEAK SUMMARY: ==7960== definitely lost: 0 bytes in 0 blocks ==7960== indirectly lost: 0 bytes in 0 blocks ==7960== possibly lost: 700 bytes in 4 blocks ==7960== still reachable: 196,978 bytes in 935 blocks ==7960== of which reachable via heuristic: ==7960== newarray : 7,312 bytes in 123 blocks ==7960== suppressed: 389,432 bytes in 8,146 blocks ==7960== Rerun with --leak-check=full to see details of leaked memory ==7960== ==7960== For counts of detected and suppressed errors, rerun with: -v ==7960== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==7990== Memcheck, a memory error detector ==7990== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==7990== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==7990== Command: ./client-test Client::Source::eds_memo::testLocalDeleteAll ==7990== Parent PID: 104 ==7990== ==7990== ==7990== HEAP SUMMARY: ==7990== in use at exit: 628,091 bytes in 9,645 blocks ==7990== total heap usage: 204,347 allocs, 194,702 frees, 14,005,645 bytes allocated ==7990== ==7990== LEAK SUMMARY: ==7990== definitely lost: 0 bytes in 0 blocks ==7990== indirectly lost: 0 bytes in 0 blocks ==7990== possibly lost: 268 bytes in 2 blocks ==7990== still reachable: 191,507 bytes in 777 blocks ==7990== of which reachable via heuristic: ==7990== newarray : 7,312 bytes in 123 blocks ==7990== suppressed: 396,424 bytes in 8,339 blocks ==7990== Rerun with --leak-check=full to see details of leaked memory ==7990== ==7990== For counts of detected and suppressed errors, rerun with: -v ==7990== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8044== Memcheck, a memory error detector ==8044== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8044== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8044== Command: ./client-test Client::Source::eds_memo::testComplexInsert ==8044== Parent PID: 104 ==8044== ==8044== ==8044== HEAP SUMMARY: ==8044== in use at exit: 629,888 bytes in 9,735 blocks ==8044== total heap usage: 223,441 allocs, 213,706 frees, 14,793,617 bytes allocated ==8044== ==8044== LEAK SUMMARY: ==8044== definitely lost: 0 bytes in 0 blocks ==8044== indirectly lost: 0 bytes in 0 blocks ==8044== possibly lost: 268 bytes in 2 blocks ==8044== still reachable: 191,740 bytes in 786 blocks ==8044== of which reachable via heuristic: ==8044== newarray : 7,312 bytes in 123 blocks ==8044== suppressed: 397,988 bytes in 8,420 blocks ==8044== Rerun with --leak-check=full to see details of leaked memory ==8044== ==8044== For counts of detected and suppressed errors, rerun with: -v ==8044== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8110== Memcheck, a memory error detector ==8110== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8110== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8110== Command: ./client-test Client::Source::eds_memo::testLocalUpdate ==8110== Parent PID: 104 ==8110== ==8110== ==8110== HEAP SUMMARY: ==8110== in use at exit: 627,985 bytes in 9,670 blocks ==8110== total heap usage: 247,514 allocs, 237,844 frees, 15,849,270 bytes allocated ==8110== ==8110== LEAK SUMMARY: ==8110== definitely lost: 0 bytes in 0 blocks ==8110== indirectly lost: 0 bytes in 0 blocks ==8110== possibly lost: 268 bytes in 2 blocks ==8110== still reachable: 190,719 bytes in 758 blocks ==8110== of which reachable via heuristic: ==8110== newarray : 7,312 bytes in 123 blocks ==8110== suppressed: 397,106 bytes in 8,383 blocks ==8110== Rerun with --leak-check=full to see details of leaked memory ==8110== ==8110== For counts of detected and suppressed errors, rerun with: -v ==8110== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8188== Memcheck, a memory error detector ==8188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8188== Command: ./client-test Client::Source::eds_memo::testChanges ==8188== Parent PID: 104 ==8188== ==8188== ==8188== HEAP SUMMARY: ==8188== in use at exit: 627,329 bytes in 9,631 blocks ==8188== total heap usage: 954,879 allocs, 945,248 frees, 45,716,799 bytes allocated ==8188== ==8188== LEAK SUMMARY: ==8188== definitely lost: 0 bytes in 0 blocks ==8188== indirectly lost: 0 bytes in 0 blocks ==8188== possibly lost: 700 bytes in 4 blocks ==8188== still reachable: 197,134 bytes in 941 blocks ==8188== of which reachable via heuristic: ==8188== newarray : 7,312 bytes in 123 blocks ==8188== suppressed: 389,519 bytes in 8,157 blocks ==8188== Rerun with --leak-check=full to see details of leaked memory ==8188== ==8188== For counts of detected and suppressed errors, rerun with: -v ==8188== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==827== Memcheck, a memory error detector ==827== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==827== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==827== Command: ./client-test Client::Source::eds_event::testRemoveProperties ==827== Parent PID: 788 ==827== ==835== Memcheck, a memory error detector ==835== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==835== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==835== Command: ./client-test Client::Source::eds_event::testManyChanges ==835== Parent PID: 104 ==835== ==835== ==835== HEAP SUMMARY: ==835== in use at exit: 630,289 bytes in 9,677 blocks ==835== total heap usage: 611,587 allocs, 601,910 frees, 41,570,651 bytes allocated ==835== ==835== LEAK SUMMARY: ==835== definitely lost: 0 bytes in 0 blocks ==835== indirectly lost: 0 bytes in 0 blocks ==835== possibly lost: 700 bytes in 4 blocks ==835== still reachable: 199,440 bytes in 967 blocks ==835== of which reachable via heuristic: ==835== newarray : 7,312 bytes in 123 blocks ==835== suppressed: 390,257 bytes in 8,179 blocks ==835== Rerun with --leak-check=full to see details of leaked memory ==835== ==835== For counts of detected and suppressed errors, rerun with: -v ==835== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8652== Memcheck, a memory error detector ==8652== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==8652== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==8652== Command: ./client-test Client::Source::eds_memo::testChangesMultiCycles ==8652== Parent PID: 104 ==8652== ==8652== ==8652== HEAP SUMMARY: ==8652== in use at exit: 627,154 bytes in 9,619 blocks ==8652== total heap usage: 870,495 allocs, 860,876 frees, 39,445,058 bytes allocated ==8652== ==8652== LEAK SUMMARY: ==8652== definitely lost: 0 bytes in 0 blocks ==8652== indirectly lost: 0 bytes in 0 blocks ==8652== possibly lost: 268 bytes in 2 blocks ==8652== still reachable: 191,239 bytes in 775 blocks ==8652== of which reachable via heuristic: ==8652== newarray : 7,312 bytes in 123 blocks ==8652== suppressed: 395,755 bytes in 8,315 blocks ==8652== Rerun with --leak-check=full to see details of leaked memory ==8652== ==8652== For counts of detected and suppressed errors, rerun with: -v ==8652== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==884== Memcheck, a memory error detector ==884== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==884== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==884== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent ==884== Parent PID: 104 ==884== ==884== ==884== HEAP SUMMARY: ==884== in use at exit: 732,653 bytes in 12,139 blocks ==884== total heap usage: 326,259 allocs, 314,120 frees, 20,941,821 bytes allocated ==884== ==884== LEAK SUMMARY: ==884== definitely lost: 0 bytes in 0 blocks ==884== indirectly lost: 0 bytes in 0 blocks ==884== possibly lost: 268 bytes in 2 blocks ==884== still reachable: 296,255 bytes in 3,273 blocks ==884== of which reachable via heuristic: ==884== newarray : 7,312 bytes in 123 blocks ==884== suppressed: 396,238 bytes in 8,337 blocks ==884== Rerun with --leak-check=full to see details of leaked memory ==884== ==884== For counts of detected and suppressed errors, rerun with: -v ==884== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9117== Memcheck, a memory error detector ==9117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9117== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9117== Command: ./client-test Client::Source::eds_memo::testImport ==9117== Parent PID: 104 ==9117== ==9117== ==9117== HEAP SUMMARY: ==9117== in use at exit: 627,002 bytes in 9,632 blocks ==9117== total heap usage: 213,219 allocs, 203,587 frees, 14,659,792 bytes allocated ==9117== ==9117== LEAK SUMMARY: ==9117== definitely lost: 0 bytes in 0 blocks ==9117== indirectly lost: 0 bytes in 0 blocks ==9117== possibly lost: 700 bytes in 4 blocks ==9117== still reachable: 196,437 bytes in 914 blocks ==9117== of which reachable via heuristic: ==9117== newarray : 7,312 bytes in 123 blocks ==9117== suppressed: 389,973 bytes in 8,187 blocks ==9117== Rerun with --leak-check=full to see details of leaked memory ==9117== ==9117== For counts of detected and suppressed errors, rerun with: -v ==9117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9173== Memcheck, a memory error detector ==9173== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9173== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9173== Command: ./client-test Client::Source::eds_memo::testImport ==9173== Parent PID: 9117 ==9173== ==9181== Memcheck, a memory error detector ==9181== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9181== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9181== Command: ./client-test Client::Source::eds_memo::testImportDelete ==9181== Parent PID: 104 ==9181== ==9181== ==9181== HEAP SUMMARY: ==9181== in use at exit: 627,130 bytes in 9,617 blocks ==9181== total heap usage: 263,073 allocs, 253,456 frees, 16,770,793 bytes allocated ==9181== ==9181== LEAK SUMMARY: ==9181== definitely lost: 0 bytes in 0 blocks ==9181== indirectly lost: 0 bytes in 0 blocks ==9181== possibly lost: 268 bytes in 2 blocks ==9181== still reachable: 191,364 bytes in 779 blocks ==9181== of which reachable via heuristic: ==9181== newarray : 7,312 bytes in 123 blocks ==9181== suppressed: 395,606 bytes in 8,309 blocks ==9181== Rerun with --leak-check=full to see details of leaked memory ==9181== ==9181== For counts of detected and suppressed errors, rerun with: -v ==9181== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==9237== Memcheck, a memory error detector ==9237== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9237== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9237== Command: ./client-test Client::Source::eds_memo::testImportDelete ==9237== Parent PID: 9181 ==9237== ==9269== Memcheck, a memory error detector ==9269== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9269== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9269== Command: ./client-test Client::Source::eds_memo::testRemoveProperties ==9269== Parent PID: 104 ==9269== ==9269== ==9269== HEAP SUMMARY: ==9269== in use at exit: 625,849 bytes in 9,589 blocks ==9269== total heap usage: 242,484 allocs, 232,895 frees, 16,338,698 bytes allocated ==9269== ==9269== LEAK SUMMARY: ==9269== definitely lost: 0 bytes in 0 blocks ==9269== indirectly lost: 0 bytes in 0 blocks ==9269== possibly lost: 700 bytes in 4 blocks ==9269== still reachable: 196,462 bytes in 933 blocks ==9269== of which reachable via heuristic: ==9269== newarray : 7,312 bytes in 123 blocks ==9269== suppressed: 388,795 bytes in 8,125 blocks ==9269== Rerun with --leak-check=full to see details of leaked memory ==9269== ==9269== For counts of detected and suppressed errors, rerun with: -v ==9269== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==928== Memcheck, a memory error detector ==928== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==928== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==928== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsParent ==928== Parent PID: 884 ==928== ==9338== Memcheck, a memory error detector ==9338== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9338== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9338== Command: ./client-test Client::Source::eds_memo::testRemoveProperties ==9338== Parent PID: 9269 ==9338== ==9346== Memcheck, a memory error detector ==9346== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==9346== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==9346== Command: ./client-test Client::Source::eds_memo::testManyChanges ==9346== Parent PID: 104 ==9346== ==9346== ==9346== HEAP SUMMARY: ==9346== in use at exit: 627,833 bytes in 9,647 blocks ==9346== total heap usage: 516,356 allocs, 506,709 frees, 34,876,743 bytes allocated ==9346== ==9346== LEAK SUMMARY: ==9346== definitely lost: 0 bytes in 0 blocks ==9346== indirectly lost: 0 bytes in 0 blocks ==9346== possibly lost: 268 bytes in 2 blocks ==9346== still reachable: 191,374 bytes in 761 blocks ==9346== of which reachable via heuristic: ==9346== newarray : 7,312 bytes in 123 blocks ==9346== suppressed: 396,215 bytes in 8,355 blocks ==9346== Rerun with --leak-check=full to see details of leaked memory ==9346== ==9346== For counts of detected and suppressed errors, rerun with: -v ==9346== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==948== Memcheck, a memory error detector ==948== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==948== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==948== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild ==948== Parent PID: 104 ==948== ==948== ==948== HEAP SUMMARY: ==948== in use at exit: 732,565 bytes in 12,137 blocks ==948== total heap usage: 325,766 allocs, 313,629 frees, 20,911,708 bytes allocated ==948== ==948== LEAK SUMMARY: ==948== definitely lost: 0 bytes in 0 blocks ==948== indirectly lost: 0 bytes in 0 blocks ==948== possibly lost: 700 bytes in 4 blocks ==948== still reachable: 301,492 bytes in 3,408 blocks ==948== of which reachable via heuristic: ==948== newarray : 7,312 bytes in 123 blocks ==948== suppressed: 390,481 bytes in 8,198 blocks ==948== Rerun with --leak-check=full to see details of leaked memory ==948== ==948== For counts of detected and suppressed errors, rerun with: -v ==948== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==991== Memcheck, a memory error detector ==991== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==991== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==991== Command: ./client-test Client::Source::eds_event::LinkedItemsDefault::testLinkedItemsChild ==991== Parent PID: 948 ==991== valgrindcheck: ./client-test Client::Source::eds_contact Client::Source::eds_event Client::Source::eds_task Client::Source::eds_memo: final result 0 wrappercheck-93 line 100: RET=0 wrappercheck-93 line 101: set -e wrappercheck-93 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 108: kill -INT -95 wrappercheck-93 line 108: kill -TERM -95 wrappercheck-93 line 108: kill -TERM 95 wrappercheck-93 line 110: KILL_PID=12435 wrappercheck-93 line 115: set +e wrappercheck-93 line 116: wait 95 wrappercheck-93 line 109: perl -e 'sleep(60); kill(9, -95);' wrappercheck-93 line 117: SUBRET=143 wrappercheck-93 line 118: case $SUBRET in wrappercheck-93 line 118: SUBRET=0 wrappercheck-93 line 120: SUBRET=0 wrappercheck-93 line 121: '[' 12435 ']' wwrappercheck-93 line 122: LC_ALL=C wwrappercheck-93 line 122: kill -KILL 12435 wrappercheck-93 line 122: msg= wrappercheck-93 line 123: echo '' wrappercheck-93 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 12435 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-93 line 127: echo '' wrappercheck-93 line 129: wait 12435 wrappercheck-93 line 131: set -e wrappercheck-93 line 132: '[' 0 = 0 ']' wrappercheck-93 line 133: RET=0 wrappercheck-93 line 136: exit 0 wrappercheck-73 line 100: RET=0 wrappercheck-73 line 101: set -e wrappercheck-73 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 108: kill -INT -75 wrappercheck-73 line 108: kill -TERM -75 wrappercheck-73 line 108: kill -TERM 75 wrappercheck-73 line 110: KILL_PID=12440 wrappercheck-73 line 115: set +e wrappercheck-73 line 116: wait 75 wrappercheck-73 line 109: perl -e 'sleep(60); kill(9, -75);' wrappercheck-73 line 117: SUBRET=143 wrappercheck-73 line 118: case $SUBRET in wrappercheck-73 line 118: SUBRET=0 wrappercheck-73 line 120: SUBRET=0 wrappercheck-73 line 121: '[' 12440 ']' wwrappercheck-73 line 122: LC_ALL=C wwrappercheck-73 line 122: kill -KILL 12440 wrappercheck-73 line 122: msg= wrappercheck-73 line 123: echo '' wrappercheck-73 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-73 line 127: echo '' wrappercheck-73 line 129: wait 12440 wrappercheck-73 line 131: set -e wrappercheck-73 line 132: '[' 0 = 0 ']' wrappercheck-73 line 133: RET=0 wrappercheck-73 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 -28 wrappercheck-25 line 108: kill -TERM -28 wrappercheck-25 line 108: kill -TERM 28 wrappercheck-25 line 110: KILL_PID=12445 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 28 wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -28);' 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 ']' 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 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 ']' wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 12450 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: grep -q 'No such process' wrappercheck-19 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 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.YqS8jxrP20 Fri Jan 5 16:18:57 2018 UTC (+ 2752.5s / 2843.8s) === cleaning up ===