runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 4.1s / 112.5s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 0.2s / 112.6s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/prebuilt-testing-amd64/home/file/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/home/file/data runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) === starting file === runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/9-file, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-amd64/9-file runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/file (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/file) runtests.py-2276 Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 112.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/file; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r file -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP=Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/file -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution ) Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['file'] === Fri Jan 5 15:31:07 2018 UTC (+ 0.1s / 0.1s) property changed: status = acquired Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:31:07 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 15:33:37 2018 UTC (+ 149.8s / 149.9s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./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: '[' '' ']' wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used 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 70: set -x wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 70: exec wrappercheck-15 line 93: kill -0 17 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.j0Nwbj6gha/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-20 line 16: PIDS= wrappercheck-20 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-20 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-20 line 21: DAEMON_LOG= wrappercheck-20 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-20 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-20 line 25: declare -a BACKGROUND wrappercheck-20 line 26: declare -a ENV wrappercheck-20 line 28: '[' 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=26 wrappercheck-20 line 73: PIDS+=26 wrappercheck-20 line 70: set -x wrappercheck-20 line 70: exec wrappercheck-20 line 75: '[' evolution-source-registry.log ']' wrappercheck-20 line 75: '[' '' ']' wrappercheck-20 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-20 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-20 line 93: kill -0 26 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 file ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-80 line 16: PIDS= wrappercheck-80 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-80 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-80 line 21: DAEMON_LOG= wrappercheck-80 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-80 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-80 line 25: declare -a BACKGROUND wrappercheck-80 line 26: declare -a ENV wrappercheck-80 line 28: '[' 20 -gt 1 ']' wrappercheck-80 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 31: shift wrappercheck-80 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 18 -gt 1 ']' wrappercheck-80 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 35: shift wrappercheck-80 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-80 line 53: shift wrappercheck-80 line 28: '[' 16 -gt 1 ']' wrappercheck-80 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 29: case "$1" in wrappercheck-80 line 50: break wrappercheck-80 line 56: '[' 16 -gt 1 ']' wrappercheck-80 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 15 -gt 1 ']' wrappercheck-80 line 56: '[' --keep-running '!=' -- ']' wrappercheck-80 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-80 line 58: shift wrappercheck-80 line 56: '[' 14 -gt 1 ']' wrappercheck-80 line 56: '[' -- '!=' -- ']' wrappercheck-80 line 60: shift wrappercheck-80 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 62: '[' '' ']' wrappercheck-80 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-80 line 72: BACKGROUND_PID=82 wrappercheck-80 line 73: PIDS+=82 wrappercheck-80 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-80 line 75: '[' '' ']' wrappercheck-80 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-80 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-80 line 70: set -x wrappercheck-80 line 70: exec wrappercheck-80 line 93: kill -0 82 wrappercheck-80 line 94: set +e wrappercheck-80 line 95: '[' '' ']' wrappercheck-80 line 99: set -x wrappercheck-80 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-100 line 16: PIDS= wrappercheck-100 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-100 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-100 line 21: DAEMON_LOG= wrappercheck-100 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-100 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-100 line 25: declare -a BACKGROUND wrappercheck-100 line 26: declare -a ENV wrappercheck-100 line 28: '[' 12 -gt 1 ']' wrappercheck-100 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 31: shift wrappercheck-100 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-100 line 53: shift wrappercheck-100 line 28: '[' 10 -gt 1 ']' wrappercheck-100 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 29: case "$1" in wrappercheck-100 line 50: break wrappercheck-100 line 56: '[' 10 -gt 1 ']' wrappercheck-100 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 9 -gt 1 ']' wrappercheck-100 line 56: '[' --keep-running '!=' -- ']' wrappercheck-100 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-100 line 58: shift wrappercheck-100 line 56: '[' 8 -gt 1 ']' wrappercheck-100 line 56: '[' -- '!=' -- ']' wrappercheck-100 line 60: shift wrappercheck-100 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 62: '[' '' ']' wrappercheck-100 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-100 line 72: BACKGROUND_PID=102 wrappercheck-100 line 73: PIDS+=102 wrappercheck-100 line 70: set -x wrappercheck-100 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-100 line 75: '[' '' ']' wrappercheck-100 line 70: exec wrappercheck-100 line 84: '[' '' ']' wrappercheck-100 line 93: kill -0 102 wrappercheck-100 line 94: set +e wrappercheck-100 line 95: '[' '' ']' wrappercheck-100 line 99: set -x wrappercheck-100 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-105 line 16: PIDS= wrappercheck-105 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-105 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-105 line 21: DAEMON_LOG= wrappercheck-105 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-105 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-105 line 25: declare -a BACKGROUND wrappercheck-105 line 26: declare -a ENV wrappercheck-105 line 28: '[' 5 -gt 1 ']' wrappercheck-105 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-105 line 29: case "$1" in wrappercheck-105 line 50: break wrappercheck-105 line 56: '[' 5 -gt 1 ']' wrappercheck-105 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-105 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-105 line 58: shift wrappercheck-105 line 56: '[' 4 -gt 1 ']' wrappercheck-105 line 56: '[' -- '!=' -- ']' wrappercheck-105 line 60: shift wrappercheck-105 line 62: '[' '' ']' wrappercheck-105 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-105 line 72: BACKGROUND_PID=109 wrappercheck-105 line 73: PIDS+=109 wrappercheck-105 line 70: set -x wrappercheck-105 line 70: exec wrappercheck-105 line 75: '[' '' ']' wrappercheck-105 line 84: '[' '' ']' wrappercheck-105 line 93: kill -0 109 wrappercheck-105 line 94: set +e wrappercheck-105 line 95: '[' '' ']' wrappercheck-105 line 99: set -x wrappercheck-105 line 99: /home/nightly/testing/setup-syncevolution.sh file ./syncevolution + case $TEST in + case $TEST in + rm -rf 'Test_*_[12]' + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_contact_1 + for e in 1 2 + mkdir Test_file_contact_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_event_1 + for e in 1 2 + mkdir Test_file_event_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_task_1 + for e in 1 2 + mkdir Test_file_task_2 + for i in file_contact file_event file_task file_memo + for e in 1 2 + mkdir Test_file_memo_1 + for e in 1 2 + mkdir Test_file_memo_2 + 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 + grep Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ sed -e 's/.*=//' ++ echo evolution-calendar=eds_event + 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 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_1 Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks + grep Test_eds_task_2 Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-105 line 100: RET=0 wrappercheck-105 line 101: set -e wrappercheck-105 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-105 line 108: kill -INT -109 wrappercheck-105 line 108: kill -TERM -109 wrappercheck-105 line 108: kill -TERM 109 wrappercheck-105 line 110: KILL_PID=202 wrappercheck-105 line 115: set +e wrappercheck-105 line 109: perl -e 'sleep(60); kill(9, -109);' wrappercheck-105 line 116: wait 109 wrappercheck-105 line 117: SUBRET=143 wrappercheck-105 line 118: case $SUBRET in wrappercheck-105 line 118: SUBRET=0 wrappercheck-105 line 120: SUBRET=0 wrappercheck-105 line 121: '[' 202 ']' wwrappercheck-105 line 122: LC_ALL=C wwrappercheck-105 line 122: kill -KILL 202 wrappercheck-105 line 122: msg= wrappercheck-105 line 123: echo '' wrappercheck-105 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 202 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-105 line 127: echo '' wrappercheck-105 line 129: wait 202 wrappercheck-105 line 131: set -e wrappercheck-105 line 132: '[' 0 = 0 ']' wrappercheck-105 line 133: RET=0 wrappercheck-105 line 136: exit 0 wrappercheck-100 line 100: RET=0 wrappercheck-100 line 101: set -e wrappercheck-100 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-100 line 108: kill -INT -102 wrappercheck-100 line 108: kill -TERM -102 wrappercheck-100 line 108: kill -TERM 102 wrappercheck-100 line 110: KILL_PID=207 wrappercheck-100 line 115: set +e wrappercheck-100 line 116: wait 102 wrappercheck-100 line 117: SUBRET=143 wrappercheck-100 line 118: case $SUBRET in wrappercheck-100 line 118: SUBRET=0 wrappercheck-100 line 120: SUBRET=0 wrappercheck-100 line 121: '[' 207 ']' wrappercheck-100 line 109: perl -e 'sleep(60); kill(9, -102);' wwrappercheck-100 line 122: LC_ALL=C wwrappercheck-100 line 122: kill -KILL 207 wrappercheck-100 line 122: msg= wrappercheck-100 line 123: echo '' wrappercheck-100 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 207 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-100 line 127: echo '' wrappercheck-100 line 129: wait 207 wrappercheck-100 line 131: set -e wrappercheck-100 line 132: '[' 0 = 0 ']' wrappercheck-100 line 133: RET=0 wrappercheck-100 line 136: exit 0 wrappercheck-80 line 100: RET=0 wrappercheck-80 line 101: set -e wrappercheck-80 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-80 line 108: kill -INT -82 wrappercheck-80 line 108: kill -TERM -82 wrappercheck-80 line 108: kill -TERM 82 wrappercheck-80 line 110: KILL_PID=212 wrappercheck-80 line 109: perl -e 'sleep(60); kill(9, -82);' wrappercheck-80 line 115: set +e wrappercheck-80 line 116: wait 82 wrappercheck-80 line 117: SUBRET=143 wrappercheck-80 line 118: case $SUBRET in wrappercheck-80 line 118: SUBRET=0 wrappercheck-80 line 120: SUBRET=0 wrappercheck-80 line 121: '[' 212 ']' wwrappercheck-80 line 122: LC_ALL=C wwrappercheck-80 line 122: kill -KILL 212 wrappercheck-80 line 122: msg= wrappercheck-80 line 123: echo '' wrappercheck-80 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 212 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-80 line 127: echo '' wrappercheck-80 line 129: wait 212 wrappercheck-80 line 131: set -e wrappercheck-80 line 132: '[' 0 = 0 ']' wrappercheck-80 line 133: RET=0 wrappercheck-80 line 136: exit 0 wrappercheck-20 line 100: RET=0 wrappercheck-20 line 101: set -e wrappercheck-20 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-20 line 108: kill -INT -26 wrappercheck-20 line 108: kill -TERM -26 wrappercheck-20 line 108: kill -TERM 26 wrappercheck-20 line 110: KILL_PID=217 wrappercheck-20 line 109: perl -e 'sleep(60); kill(9, -26);' wrappercheck-20 line 115: set +e wrappercheck-20 line 116: wait 26 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: '[' 217 ']' wwrappercheck-20 line 122: LC_ALL=C wwrappercheck-20 line 122: kill -KILL 217 wrappercheck-20 line 122: msg= wrappercheck-20 line 123: grep -q 'No such process' wrappercheck-20 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 217 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-20 line 127: echo '' wrappercheck-20 line 129: wait 217 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=222 wrappercheck-15 line 115: set +e wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -17);' wrappercheck-15 line 116: wait 17 wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 222 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 222 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: 222 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 222 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.j0Nwbj6gha Fri Jan 5 15:33:45 2018 UTC (+ 8.1s / 158.0s) === cleaning up === runtests.py-2276 Fri Jan 5 15:33:45 2018 UTC (+ 158.0s / 270.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-amd64/data/runtests/work/prebuilt-testing-amd64/tests/file; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-amd64/home/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-amd64/home/file/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r file -- 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=file CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP=Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChildNoIDs,Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChildNoIDs CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/prebuilt-testing-amd64/tests/file -r -p -c 2018-01-05-07-10-all-prebuilt-testing-amd64 -- env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event ) Fri Jan 5 15:33:45 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['file'] === Fri Jan 5 15:33:45 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:33:45 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:33:45 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:34:04 2018 UTC (+ 18.4s / 18.4s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-amd64 chroot] Running command: “env DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.SNl0R0ns2C/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: '[' 34 -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: '[' 32 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 32 -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: '[' 31 -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: '[' 30 -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 70: set -x wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 70: exec wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-26 line 16: PIDS= wrappercheck-26 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-26 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-26 line 21: DAEMON_LOG= wrappercheck-26 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-26 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-26 line 25: declare -a BACKGROUND wrappercheck-26 line 26: declare -a ENV wrappercheck-26 line 28: '[' 28 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 31: shift wrappercheck-26 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 26 -gt 1 ']' wrappercheck-26 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 43: shift wrappercheck-26 line 44: DAEMON_SLEEP=5 wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 24 -gt 1 ']' wrappercheck-26 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 35: shift wrappercheck-26 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-26 line 53: shift wrappercheck-26 line 28: '[' 22 -gt 1 ']' wrappercheck-26 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 29: case "$1" in wrappercheck-26 line 50: break wrappercheck-26 line 56: '[' 22 -gt 1 ']' wrappercheck-26 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-26 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-26 line 58: shift wrappercheck-26 line 56: '[' 21 -gt 1 ']' wrappercheck-26 line 56: '[' -- '!=' -- ']' wrappercheck-26 line 60: shift wrappercheck-26 line 62: '[' evolution-source-registry.log ']' wrappercheck-26 line 62: '[' '' ']' wrappercheck-26 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-26 line 72: BACKGROUND_PID=28 wrappercheck-26 line 73: PIDS+=28 wrappercheck-26 line 75: '[' evolution-source-registry.log ']' wrappercheck-26 line 75: '[' '' ']' wrappercheck-26 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-26 line 70: set -x wrappercheck-26 line 70: exec wrappercheck-26 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-26 line 93: kill -0 28 wrappercheck-26 line 94: set +e wrappercheck-26 line 95: '[' 5 ']' wrappercheck-26 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-26 line 97: sleep 5 wrappercheck-26 line 99: set -x wrappercheck-26 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 19 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 17 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 15 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 15 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 14 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 13 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 70: set -x wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 70: exec wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 11 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 9 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 9 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 8 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 7 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --gen-suppressions=all --log-file=/data/runtests/work/prebuilt-testing-amd64/tests/file/valgrind.p107.c%p.out ./client-test Client::Source::file_event Client::Source::file_event::testOpen okay Client::Source::file_event::testIterateTwice okay Client::Source::file_event::testDelete404 okay Client::Source::file_event::testReadItem404 okay Client::Source::file_event::testSimpleInsert okay Client::Source::file_event::testLocalDeleteAll okay Client::Source::file_event::testComplexInsert okay Client::Source::file_event::testInsertTwice okay Client::Source::file_event::testLocalUpdate okay Client::Source::file_event::testChanges okay Client::Source::file_event::testChangesMultiCycles okay Client::Source::file_event::testImport okay Client::Source::file_event::testImportDelete okay Client::Source::file_event::testRemoveProperties okay Client::Source::file_event::testManyChanges okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsSingle404 okay Client::Source::file_event::LinkedItemsDefault::testLinkedItemsMany404 okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild okay Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent okay OKvalgrindcheck (107): './client-test Client::Source::file_event' (111): returned 0 ==111== Memcheck, a memory error detector ==111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==111== Command: ./client-test Client::Source::file_event ==111== Parent PID: 107 ==111== ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 431,164 bytes in 4,126 blocks ==111== total heap usage: 186,081 allocs, 181,955 frees, 24,463,811 bytes allocated ==111== ==111== LEAK SUMMARY: ==111== definitely lost: 0 bytes in 0 blocks ==111== indirectly lost: 0 bytes in 0 blocks ==111== possibly lost: 96 bytes in 1 blocks ==111== still reachable: 214,181 bytes in 678 blocks ==111== of which reachable via heuristic: ==111== newarray : 5,800 bytes in 17 blocks ==111== suppressed: 216,887 bytes in 3,447 blocks ==111== Rerun with --leak-check=full to see details of leaked memory ==111== ==111== For counts of detected and suppressed errors, rerun with: -v ==111== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==111== could not unlink /tmp/vgdb-pipe-from-vgdb-to-111-by-nightly-on-syncev ==111== could not unlink /tmp/vgdb-pipe-to-vgdb-from-111-by-nightly-on-syncev ==111== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-111-by-nightly-on-syncev ==119== Memcheck, a memory error detector ==119== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==119== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==119== Command: ./client-test Client::Source::file_event::testOpen ==119== Parent PID: 111 ==119== ==119== ==119== HEAP SUMMARY: ==119== in use at exit: 431,188 bytes in 4,127 blocks ==119== total heap usage: 121,491 allocs, 117,364 frees, 17,440,961 bytes allocated ==119== ==119== LEAK SUMMARY: ==119== definitely lost: 0 bytes in 0 blocks ==119== indirectly lost: 0 bytes in 0 blocks ==119== possibly lost: 96 bytes in 1 blocks ==119== still reachable: 214,205 bytes in 679 blocks ==119== of which reachable via heuristic: ==119== newarray : 5,800 bytes in 17 blocks ==119== suppressed: 216,887 bytes in 3,447 blocks ==119== Rerun with --leak-check=full to see details of leaked memory ==119== ==119== For counts of detected and suppressed errors, rerun with: -v ==119== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==120== Memcheck, a memory error detector ==120== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==120== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==120== Command: ./client-test Client::Source::file_event::testIterateTwice ==120== Parent PID: 111 ==120== ==120== ==120== HEAP SUMMARY: ==120== in use at exit: 431,196 bytes in 4,127 blocks ==120== total heap usage: 121,935 allocs, 117,808 frees, 17,634,674 bytes allocated ==120== ==120== LEAK SUMMARY: ==120== definitely lost: 0 bytes in 0 blocks ==120== indirectly lost: 0 bytes in 0 blocks ==120== possibly lost: 96 bytes in 1 blocks ==120== still reachable: 214,205 bytes in 679 blocks ==120== of which reachable via heuristic: ==120== newarray : 5,800 bytes in 17 blocks ==120== suppressed: 216,895 bytes in 3,447 blocks ==120== Rerun with --leak-check=full to see details of leaked memory ==120== ==120== For counts of detected and suppressed errors, rerun with: -v ==120== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==121== Memcheck, a memory error detector ==121== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==121== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==121== Command: ./client-test Client::Source::file_event::testDelete404 ==121== Parent PID: 111 ==121== ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 431,220 bytes in 4,127 blocks ==121== total heap usage: 121,890 allocs, 117,763 frees, 17,624,126 bytes allocated ==121== ==121== LEAK SUMMARY: ==121== definitely lost: 0 bytes in 0 blocks ==121== indirectly lost: 0 bytes in 0 blocks ==121== possibly lost: 96 bytes in 1 blocks ==121== still reachable: 214,205 bytes in 679 blocks ==121== of which reachable via heuristic: ==121== newarray : 5,800 bytes in 17 blocks ==121== suppressed: 216,919 bytes in 3,447 blocks ==121== Rerun with --leak-check=full to see details of leaked memory ==121== ==121== For counts of detected and suppressed errors, rerun with: -v ==121== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==122== Memcheck, a memory error detector ==122== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==122== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==122== Command: ./client-test Client::Source::file_event::testReadItem404 ==122== Parent PID: 111 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 431,180 bytes in 4,127 blocks ==122== total heap usage: 121,890 allocs, 117,763 frees, 17,624,699 bytes allocated ==122== ==122== LEAK SUMMARY: ==122== definitely lost: 0 bytes in 0 blocks ==122== indirectly lost: 0 bytes in 0 blocks ==122== possibly lost: 96 bytes in 1 blocks ==122== still reachable: 214,205 bytes in 679 blocks ==122== of which reachable via heuristic: ==122== newarray : 5,800 bytes in 17 blocks ==122== suppressed: 216,879 bytes in 3,447 blocks ==122== Rerun with --leak-check=full to see details of leaked memory ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==123== Memcheck, a memory error detector ==123== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==123== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==123== Command: ./client-test Client::Source::file_event::testSimpleInsert ==123== Parent PID: 111 ==123== ==123== ==123== HEAP SUMMARY: ==123== in use at exit: 431,456 bytes in 4,136 blocks ==123== total heap usage: 129,565 allocs, 125,429 frees, 18,446,407 bytes allocated ==123== ==123== LEAK SUMMARY: ==123== definitely lost: 0 bytes in 0 blocks ==123== indirectly lost: 0 bytes in 0 blocks ==123== possibly lost: 96 bytes in 1 blocks ==123== still reachable: 214,417 bytes in 684 blocks ==123== of which reachable via heuristic: ==123== newarray : 5,800 bytes in 17 blocks ==123== suppressed: 216,943 bytes in 3,451 blocks ==123== Rerun with --leak-check=full to see details of leaked memory ==123== ==123== For counts of detected and suppressed errors, rerun with: -v ==123== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==124== Memcheck, a memory error detector ==124== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==124== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==124== Command: ./client-test Client::Source::file_event::testLocalDeleteAll ==124== Parent PID: 111 ==124== ==124== ==124== HEAP SUMMARY: ==124== in use at exit: 431,464 bytes in 4,136 blocks ==124== total heap usage: 144,345 allocs, 140,209 frees, 20,010,709 bytes allocated ==124== ==124== LEAK SUMMARY: ==124== definitely lost: 0 bytes in 0 blocks ==124== indirectly lost: 0 bytes in 0 blocks ==124== possibly lost: 96 bytes in 1 blocks ==124== still reachable: 214,417 bytes in 684 blocks ==124== of which reachable via heuristic: ==124== newarray : 5,800 bytes in 17 blocks ==124== suppressed: 216,951 bytes in 3,451 blocks ==124== Rerun with --leak-check=full to see details of leaked memory ==124== ==124== For counts of detected and suppressed errors, rerun with: -v ==124== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==125== Memcheck, a memory error detector ==125== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==125== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==125== Command: ./client-test Client::Source::file_event::testComplexInsert ==125== Parent PID: 111 ==125== ==125== ==125== HEAP SUMMARY: ==125== in use at exit: 431,456 bytes in 4,136 blocks ==125== total heap usage: 151,523 allocs, 147,387 frees, 20,707,362 bytes allocated ==125== ==125== LEAK SUMMARY: ==125== definitely lost: 0 bytes in 0 blocks ==125== indirectly lost: 0 bytes in 0 blocks ==125== possibly lost: 96 bytes in 1 blocks ==125== still reachable: 214,417 bytes in 684 blocks ==125== of which reachable via heuristic: ==125== newarray : 5,800 bytes in 17 blocks ==125== suppressed: 216,943 bytes in 3,451 blocks ==125== Rerun with --leak-check=full to see details of leaked memory ==125== ==125== For counts of detected and suppressed errors, rerun with: -v ==125== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==126== Memcheck, a memory error detector ==126== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==126== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==126== Command: ./client-test Client::Source::file_event::testInsertTwice ==126== Parent PID: 111 ==126== ==126== ==126== HEAP SUMMARY: ==126== in use at exit: 431,456 bytes in 4,136 blocks ==126== total heap usage: 137,065 allocs, 132,929 frees, 19,281,660 bytes allocated ==126== ==126== LEAK SUMMARY: ==126== definitely lost: 0 bytes in 0 blocks ==126== indirectly lost: 0 bytes in 0 blocks ==126== possibly lost: 96 bytes in 1 blocks ==126== still reachable: 214,417 bytes in 684 blocks ==126== of which reachable via heuristic: ==126== newarray : 5,800 bytes in 17 blocks ==126== suppressed: 216,943 bytes in 3,451 blocks ==126== Rerun with --leak-check=full to see details of leaked memory ==126== ==126== For counts of detected and suppressed errors, rerun with: -v ==126== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==127== Memcheck, a memory error detector ==127== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==127== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==127== Command: ./client-test Client::Source::file_event::testLocalUpdate ==127== Parent PID: 111 ==127== ==127== ==127== HEAP SUMMARY: ==127== in use at exit: 431,472 bytes in 4,136 blocks ==127== total heap usage: 159,349 allocs, 155,213 frees, 21,602,513 bytes allocated ==127== ==127== LEAK SUMMARY: ==127== definitely lost: 0 bytes in 0 blocks ==127== indirectly lost: 0 bytes in 0 blocks ==127== possibly lost: 96 bytes in 1 blocks ==127== still reachable: 214,417 bytes in 684 blocks ==127== of which reachable via heuristic: ==127== newarray : 5,800 bytes in 17 blocks ==127== suppressed: 216,959 bytes in 3,451 blocks ==127== Rerun with --leak-check=full to see details of leaked memory ==127== ==127== For counts of detected and suppressed errors, rerun with: -v ==127== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==128== Memcheck, a memory error detector ==128== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==128== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==128== Command: ./client-test Client::Source::file_event::testChanges ==128== Parent PID: 111 ==128== ==128== ==128== HEAP SUMMARY: ==128== in use at exit: 431,632 bytes in 4,136 blocks ==128== total heap usage: 396,494 allocs, 392,358 frees, 46,548,204 bytes allocated ==128== ==128== LEAK SUMMARY: ==128== definitely lost: 0 bytes in 0 blocks ==128== indirectly lost: 0 bytes in 0 blocks ==128== possibly lost: 96 bytes in 1 blocks ==128== still reachable: 214,641 bytes in 685 blocks ==128== of which reachable via heuristic: ==128== newarray : 5,800 bytes in 17 blocks ==128== suppressed: 216,895 bytes in 3,450 blocks ==128== Rerun with --leak-check=full to see details of leaked memory ==128== ==128== For counts of detected and suppressed errors, rerun with: -v ==128== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::file_event::testChangesMultiCycles ==129== Parent PID: 111 ==129== ==129== ==129== HEAP SUMMARY: ==129== in use at exit: 431,624 bytes in 4,136 blocks ==129== total heap usage: 309,589 allocs, 305,453 frees, 38,834,598 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: 96 bytes in 1 blocks ==129== still reachable: 214,641 bytes in 685 blocks ==129== of which reachable via heuristic: ==129== newarray : 5,800 bytes in 17 blocks ==129== suppressed: 216,887 bytes in 3,450 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) ==130== Memcheck, a memory error detector ==130== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==130== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==130== Command: ./client-test Client::Source::file_event::testImport ==130== Parent PID: 111 ==130== ==130== ==130== HEAP SUMMARY: ==130== in use at exit: 431,472 bytes in 4,136 blocks ==130== total heap usage: 166,490 allocs, 162,354 frees, 24,201,901 bytes allocated ==130== ==130== LEAK SUMMARY: ==130== definitely lost: 0 bytes in 0 blocks ==130== indirectly lost: 0 bytes in 0 blocks ==130== possibly lost: 96 bytes in 1 blocks ==130== still reachable: 214,417 bytes in 684 blocks ==130== of which reachable via heuristic: ==130== newarray : 5,800 bytes in 17 blocks ==130== suppressed: 216,959 bytes in 3,451 blocks ==130== Rerun with --leak-check=full to see details of leaked memory ==130== ==130== For counts of detected and suppressed errors, rerun with: -v ==130== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==131== Memcheck, a memory error detector ==131== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==131== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==131== Command: ./client-test Client::Source::file_event::testImport ==131== Parent PID: 130 ==131== ==139== Memcheck, a memory error detector ==139== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==139== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==139== Command: ./client-test Client::Source::file_event::testImportDelete ==139== Parent PID: 111 ==139== ==139== ==139== HEAP SUMMARY: ==139== in use at exit: 431,464 bytes in 4,136 blocks ==139== total heap usage: 182,960 allocs, 178,824 frees, 26,601,840 bytes allocated ==139== ==139== LEAK SUMMARY: ==139== definitely lost: 0 bytes in 0 blocks ==139== indirectly lost: 0 bytes in 0 blocks ==139== possibly lost: 96 bytes in 1 blocks ==139== still reachable: 214,417 bytes in 684 blocks ==139== of which reachable via heuristic: ==139== newarray : 5,800 bytes in 17 blocks ==139== suppressed: 216,951 bytes in 3,451 blocks ==139== Rerun with --leak-check=full to see details of leaked memory ==139== ==139== For counts of detected and suppressed errors, rerun with: -v ==139== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==140== Memcheck, a memory error detector ==140== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==140== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==140== Command: ./client-test Client::Source::file_event::testImportDelete ==140== Parent PID: 139 ==140== ==148== Memcheck, a memory error detector ==148== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==148== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==148== Command: ./client-test Client::Source::file_event::testRemoveProperties ==148== Parent PID: 111 ==148== ==148== ==148== HEAP SUMMARY: ==148== in use at exit: 431,464 bytes in 4,136 blocks ==148== total heap usage: 209,337 allocs, 205,201 frees, 30,762,162 bytes allocated ==148== ==148== LEAK SUMMARY: ==148== definitely lost: 0 bytes in 0 blocks ==148== indirectly lost: 0 bytes in 0 blocks ==148== possibly lost: 96 bytes in 1 blocks ==148== still reachable: 214,417 bytes in 684 blocks ==148== of which reachable via heuristic: ==148== newarray : 5,800 bytes in 17 blocks ==148== suppressed: 216,951 bytes in 3,451 blocks ==148== Rerun with --leak-check=full to see details of leaked memory ==148== ==148== For counts of detected and suppressed errors, rerun with: -v ==148== 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::file_event::testRemoveProperties ==149== Parent PID: 148 ==149== ==157== Memcheck, a memory error detector ==157== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==157== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==157== Command: ./client-test Client::Source::file_event::testManyChanges ==157== Parent PID: 111 ==157== ==157== ==157== HEAP SUMMARY: ==157== in use at exit: 431,448 bytes in 4,136 blocks ==157== total heap usage: 206,317 allocs, 202,181 frees, 34,781,349 bytes allocated ==157== ==157== LEAK SUMMARY: ==157== definitely lost: 0 bytes in 0 blocks ==157== indirectly lost: 0 bytes in 0 blocks ==157== possibly lost: 96 bytes in 1 blocks ==157== still reachable: 214,417 bytes in 684 blocks ==157== of which reachable via heuristic: ==157== newarray : 5,800 bytes in 17 blocks ==157== suppressed: 216,935 bytes in 3,451 blocks ==157== Rerun with --leak-check=full to see details of leaked memory ==157== ==157== For counts of detected and suppressed errors, rerun with: -v ==157== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==158== Memcheck, a memory error detector ==158== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==158== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==158== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent ==158== Parent PID: 111 ==158== ==158== ==158== HEAP SUMMARY: ==158== in use at exit: 431,472 bytes in 4,136 blocks ==158== total heap usage: 181,397 allocs, 177,261 frees, 23,926,809 bytes allocated ==158== ==158== LEAK SUMMARY: ==158== definitely lost: 0 bytes in 0 blocks ==158== indirectly lost: 0 bytes in 0 blocks ==158== possibly lost: 96 bytes in 1 blocks ==158== still reachable: 214,417 bytes in 684 blocks ==158== of which reachable via heuristic: ==158== newarray : 5,800 bytes in 17 blocks ==158== suppressed: 216,959 bytes in 3,451 blocks ==158== Rerun with --leak-check=full to see details of leaked memory ==158== ==158== For counts of detected and suppressed errors, rerun with: -v ==158== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==159== Memcheck, a memory error detector ==159== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==159== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==159== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent ==159== Parent PID: 158 ==159== ==167== Memcheck, a memory error detector ==167== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==167== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==167== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild ==167== Parent PID: 111 ==167== ==167== ==167== HEAP SUMMARY: ==167== in use at exit: 431,440 bytes in 4,136 blocks ==167== total heap usage: 181,397 allocs, 177,261 frees, 23,926,716 bytes allocated ==167== ==167== LEAK SUMMARY: ==167== definitely lost: 0 bytes in 0 blocks ==167== indirectly lost: 0 bytes in 0 blocks ==167== possibly lost: 96 bytes in 1 blocks ==167== still reachable: 214,417 bytes in 684 blocks ==167== of which reachable via heuristic: ==167== newarray : 5,800 bytes in 17 blocks ==167== suppressed: 216,927 bytes in 3,451 blocks ==167== Rerun with --leak-check=full to see details of leaked memory ==167== ==167== For counts of detected and suppressed errors, rerun with: -v ==167== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==168== Memcheck, a memory error detector ==168== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==168== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==168== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild ==168== Parent PID: 167 ==168== ==176== Memcheck, a memory error detector ==176== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==176== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==176== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild ==176== Parent PID: 111 ==176== ==176== ==176== HEAP SUMMARY: ==176== in use at exit: 431,496 bytes in 4,136 blocks ==176== total heap usage: 196,404 allocs, 192,268 frees, 25,539,519 bytes allocated ==176== ==176== LEAK SUMMARY: ==176== definitely lost: 0 bytes in 0 blocks ==176== indirectly lost: 0 bytes in 0 blocks ==176== possibly lost: 96 bytes in 1 blocks ==176== still reachable: 214,417 bytes in 684 blocks ==176== of which reachable via heuristic: ==176== newarray : 5,800 bytes in 17 blocks ==176== suppressed: 216,983 bytes in 3,451 blocks ==176== Rerun with --leak-check=full to see details of leaked memory ==176== ==176== For counts of detected and suppressed errors, rerun with: -v ==176== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==177== Memcheck, a memory error detector ==177== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==177== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==177== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild ==177== Parent PID: 176 ==177== ==185== Memcheck, a memory error detector ==185== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==185== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==185== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent ==185== Parent PID: 111 ==185== ==185== ==185== HEAP SUMMARY: ==185== in use at exit: 431,440 bytes in 4,136 blocks ==185== total heap usage: 189,101 allocs, 184,965 frees, 24,792,243 bytes allocated ==185== ==185== LEAK SUMMARY: ==185== definitely lost: 0 bytes in 0 blocks ==185== indirectly lost: 0 bytes in 0 blocks ==185== possibly lost: 96 bytes in 1 blocks ==185== still reachable: 214,417 bytes in 684 blocks ==185== of which reachable via heuristic: ==185== newarray : 5,800 bytes in 17 blocks ==185== suppressed: 216,927 bytes in 3,451 blocks ==185== Rerun with --leak-check=full to see details of leaked memory ==185== ==185== For counts of detected and suppressed errors, rerun with: -v ==185== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==186== Memcheck, a memory error detector ==186== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==186== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==186== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent ==186== Parent PID: 185 ==186== ==194== Memcheck, a memory error detector ==194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==194== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==194== Parent PID: 111 ==194== ==194== ==194== HEAP SUMMARY: ==194== in use at exit: 431,472 bytes in 4,136 blocks ==194== total heap usage: 197,029 allocs, 192,893 frees, 25,746,335 bytes allocated ==194== ==194== LEAK SUMMARY: ==194== definitely lost: 0 bytes in 0 blocks ==194== indirectly lost: 0 bytes in 0 blocks ==194== possibly lost: 96 bytes in 1 blocks ==194== still reachable: 214,417 bytes in 684 blocks ==194== of which reachable via heuristic: ==194== newarray : 5,800 bytes in 17 blocks ==194== suppressed: 216,959 bytes in 3,451 blocks ==194== Rerun with --leak-check=full to see details of leaked memory ==194== ==194== For counts of detected and suppressed errors, rerun with: -v ==194== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==195== Memcheck, a memory error detector ==195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==195== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==195== Parent PID: 194 ==195== ==203== Memcheck, a memory error detector ==203== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==203== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==203== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==203== Parent PID: 194 ==203== ==211== Memcheck, a memory error detector ==211== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==211== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==211== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==211== Parent PID: 111 ==211== ==211== ==211== HEAP SUMMARY: ==211== in use at exit: 431,472 bytes in 4,136 blocks ==211== total heap usage: 204,209 allocs, 200,073 frees, 26,471,083 bytes allocated ==211== ==211== LEAK SUMMARY: ==211== definitely lost: 0 bytes in 0 blocks ==211== indirectly lost: 0 bytes in 0 blocks ==211== possibly lost: 96 bytes in 1 blocks ==211== still reachable: 214,417 bytes in 684 blocks ==211== of which reachable via heuristic: ==211== newarray : 5,800 bytes in 17 blocks ==211== suppressed: 216,959 bytes in 3,451 blocks ==211== Rerun with --leak-check=full to see details of leaked memory ==211== ==211== For counts of detected and suppressed errors, rerun with: -v ==211== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==212== Memcheck, a memory error detector ==212== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==212== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==212== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==212== Parent PID: 211 ==212== ==220== Memcheck, a memory error detector ==220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==220== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==220== Parent PID: 211 ==220== ==228== Memcheck, a memory error detector ==228== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==228== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==228== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==228== Parent PID: 111 ==228== ==228== ==228== HEAP SUMMARY: ==228== in use at exit: 431,480 bytes in 4,136 blocks ==228== total heap usage: 211,746 allocs, 207,610 frees, 27,255,480 bytes allocated ==228== ==228== LEAK SUMMARY: ==228== definitely lost: 0 bytes in 0 blocks ==228== indirectly lost: 0 bytes in 0 blocks ==228== possibly lost: 96 bytes in 1 blocks ==228== still reachable: 214,417 bytes in 684 blocks ==228== of which reachable via heuristic: ==228== newarray : 5,800 bytes in 17 blocks ==228== suppressed: 216,967 bytes in 3,451 blocks ==228== Rerun with --leak-check=full to see details of leaked memory ==228== ==228== For counts of detected and suppressed errors, rerun with: -v ==228== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==229== Memcheck, a memory error detector ==229== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==229== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==229== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==229== Parent PID: 228 ==229== ==237== Memcheck, a memory error detector ==237== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==237== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==237== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==237== Parent PID: 228 ==237== ==245== Memcheck, a memory error detector ==245== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==245== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==245== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==245== Parent PID: 111 ==245== ==245== ==245== HEAP SUMMARY: ==245== in use at exit: 431,448 bytes in 4,136 blocks ==245== total heap usage: 189,430 allocs, 185,294 frees, 24,921,874 bytes allocated ==245== ==245== LEAK SUMMARY: ==245== definitely lost: 0 bytes in 0 blocks ==245== indirectly lost: 0 bytes in 0 blocks ==245== possibly lost: 96 bytes in 1 blocks ==245== still reachable: 214,417 bytes in 684 blocks ==245== of which reachable via heuristic: ==245== newarray : 5,800 bytes in 17 blocks ==245== suppressed: 216,935 bytes in 3,451 blocks ==245== Rerun with --leak-check=full to see details of leaked memory ==245== ==245== For counts of detected and suppressed errors, rerun with: -v ==245== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==246== Memcheck, a memory error detector ==246== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==246== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==246== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==246== Parent PID: 245 ==246== ==254== Memcheck, a memory error detector ==254== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==254== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==254== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==254== Parent PID: 245 ==254== ==262== Memcheck, a memory error detector ==262== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==262== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==262== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==262== Parent PID: 111 ==262== ==262== ==262== HEAP SUMMARY: ==262== in use at exit: 431,456 bytes in 4,136 blocks ==262== total heap usage: 189,396 allocs, 185,260 frees, 24,916,677 bytes allocated ==262== ==262== LEAK SUMMARY: ==262== definitely lost: 0 bytes in 0 blocks ==262== indirectly lost: 0 bytes in 0 blocks ==262== possibly lost: 96 bytes in 1 blocks ==262== still reachable: 214,417 bytes in 684 blocks ==262== of which reachable via heuristic: ==262== newarray : 5,800 bytes in 17 blocks ==262== suppressed: 216,943 bytes in 3,451 blocks ==262== Rerun with --leak-check=full to see details of leaked memory ==262== ==262== For counts of detected and suppressed errors, rerun with: -v ==262== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==263== Memcheck, a memory error detector ==263== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==263== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==263== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==263== Parent PID: 262 ==263== ==271== Memcheck, a memory error detector ==271== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==271== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==271== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==271== Parent PID: 262 ==271== ==279== Memcheck, a memory error detector ==279== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==279== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==279== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==279== Parent PID: 111 ==279== ==279== ==279== HEAP SUMMARY: ==279== in use at exit: 431,432 bytes in 4,134 blocks ==279== total heap usage: 211,927 allocs, 207,793 frees, 27,324,629 bytes allocated ==279== ==279== LEAK SUMMARY: ==279== definitely lost: 0 bytes in 0 blocks ==279== indirectly lost: 0 bytes in 0 blocks ==279== possibly lost: 96 bytes in 1 blocks ==279== still reachable: 214,417 bytes in 684 blocks ==279== of which reachable via heuristic: ==279== newarray : 5,800 bytes in 17 blocks ==279== suppressed: 216,919 bytes in 3,449 blocks ==279== Rerun with --leak-check=full to see details of leaked memory ==279== ==279== For counts of detected and suppressed errors, rerun with: -v ==279== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==280== Memcheck, a memory error detector ==280== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==280== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==280== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==280== Parent PID: 279 ==280== ==288== Memcheck, a memory error detector ==288== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==288== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==288== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==288== Parent PID: 279 ==288== ==296== Memcheck, a memory error detector ==296== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==296== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==296== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==296== Parent PID: 111 ==296== ==296== ==296== HEAP SUMMARY: ==296== in use at exit: 431,440 bytes in 4,134 blocks ==296== total heap usage: 211,893 allocs, 207,759 frees, 27,319,664 bytes allocated ==296== ==296== LEAK SUMMARY: ==296== definitely lost: 0 bytes in 0 blocks ==296== indirectly lost: 0 bytes in 0 blocks ==296== possibly lost: 96 bytes in 1 blocks ==296== still reachable: 214,417 bytes in 684 blocks ==296== of which reachable via heuristic: ==296== newarray : 5,800 bytes in 17 blocks ==296== suppressed: 216,927 bytes in 3,449 blocks ==296== Rerun with --leak-check=full to see details of leaked memory ==296== ==296== For counts of detected and suppressed errors, rerun with: -v ==296== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==297== Memcheck, a memory error detector ==297== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==297== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==297== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==297== Parent PID: 296 ==297== ==305== Memcheck, a memory error detector ==305== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==305== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==305== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==305== Parent PID: 296 ==305== ==313== Memcheck, a memory error detector ==313== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==313== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==313== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsSingle404 ==313== Parent PID: 111 ==313== ==313== ==313== HEAP SUMMARY: ==313== in use at exit: 431,464 bytes in 4,136 blocks ==313== total heap usage: 151,452 allocs, 147,316 frees, 20,697,214 bytes allocated ==313== ==313== LEAK SUMMARY: ==313== definitely lost: 0 bytes in 0 blocks ==313== indirectly lost: 0 bytes in 0 blocks ==313== possibly lost: 96 bytes in 1 blocks ==313== still reachable: 214,417 bytes in 684 blocks ==313== of which reachable via heuristic: ==313== newarray : 5,800 bytes in 17 blocks ==313== suppressed: 216,951 bytes in 3,451 blocks ==313== Rerun with --leak-check=full to see details of leaked memory ==313== ==313== For counts of detected and suppressed errors, rerun with: -v ==313== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==314== Memcheck, a memory error detector ==314== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==314== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==314== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsMany404 ==314== Parent PID: 111 ==314== ==314== ==314== HEAP SUMMARY: ==314== in use at exit: 431,440 bytes in 4,136 blocks ==314== total heap usage: 166,274 allocs, 162,138 frees, 22,273,964 bytes allocated ==314== ==314== LEAK SUMMARY: ==314== definitely lost: 0 bytes in 0 blocks ==314== indirectly lost: 0 bytes in 0 blocks ==314== possibly lost: 96 bytes in 1 blocks ==314== still reachable: 214,417 bytes in 684 blocks ==314== of which reachable via heuristic: ==314== newarray : 5,800 bytes in 17 blocks ==314== suppressed: 216,927 bytes in 3,451 blocks ==314== Rerun with --leak-check=full to see details of leaked memory ==314== ==314== For counts of detected and suppressed errors, rerun with: -v ==314== 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::file_event::LinkedItemsWithVALARM::testLinkedItemsParent ==315== Parent PID: 111 ==315== ==315== ==315== HEAP SUMMARY: ==315== in use at exit: 431,448 bytes in 4,136 blocks ==315== total heap usage: 181,506 allocs, 177,370 frees, 23,984,204 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: 96 bytes in 1 blocks ==315== still reachable: 214,417 bytes in 684 blocks ==315== of which reachable via heuristic: ==315== newarray : 5,800 bytes in 17 blocks ==315== suppressed: 216,935 bytes in 3,451 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) ==316== Memcheck, a memory error detector ==316== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==316== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==316== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent ==316== Parent PID: 315 ==316== ==324== Memcheck, a memory error detector ==324== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==324== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==324== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild ==324== Parent PID: 111 ==324== ==324== ==324== HEAP SUMMARY: ==324== in use at exit: 431,472 bytes in 4,136 blocks ==324== total heap usage: 181,397 allocs, 177,261 frees, 23,927,110 bytes allocated ==324== ==324== LEAK SUMMARY: ==324== definitely lost: 0 bytes in 0 blocks ==324== indirectly lost: 0 bytes in 0 blocks ==324== possibly lost: 96 bytes in 1 blocks ==324== still reachable: 214,417 bytes in 684 blocks ==324== of which reachable via heuristic: ==324== newarray : 5,800 bytes in 17 blocks ==324== suppressed: 216,959 bytes in 3,451 blocks ==324== Rerun with --leak-check=full to see details of leaked memory ==324== ==324== For counts of detected and suppressed errors, rerun with: -v ==324== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==325== Memcheck, a memory error detector ==325== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==325== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==325== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild ==325== Parent PID: 324 ==325== ==333== Memcheck, a memory error detector ==333== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==333== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==333== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==333== Parent PID: 111 ==333== ==333== ==333== HEAP SUMMARY: ==333== in use at exit: 431,488 bytes in 4,136 blocks ==333== total heap usage: 196,404 allocs, 192,268 frees, 25,540,192 bytes allocated ==333== ==333== LEAK SUMMARY: ==333== definitely lost: 0 bytes in 0 blocks ==333== indirectly lost: 0 bytes in 0 blocks ==333== possibly lost: 96 bytes in 1 blocks ==333== still reachable: 214,417 bytes in 684 blocks ==333== of which reachable via heuristic: ==333== newarray : 5,800 bytes in 17 blocks ==333== suppressed: 216,975 bytes in 3,451 blocks ==333== Rerun with --leak-check=full to see details of leaked memory ==333== ==333== For counts of detected and suppressed errors, rerun with: -v ==333== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==334== Memcheck, a memory error detector ==334== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==334== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==334== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==334== Parent PID: 333 ==334== ==342== Memcheck, a memory error detector ==342== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==342== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==342== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==342== Parent PID: 111 ==342== ==342== ==342== HEAP SUMMARY: ==342== in use at exit: 431,392 bytes in 4,134 blocks ==342== total heap usage: 189,099 allocs, 184,965 frees, 24,792,852 bytes allocated ==342== ==342== LEAK SUMMARY: ==342== definitely lost: 0 bytes in 0 blocks ==342== indirectly lost: 0 bytes in 0 blocks ==342== possibly lost: 96 bytes in 1 blocks ==342== still reachable: 214,417 bytes in 684 blocks ==342== of which reachable via heuristic: ==342== newarray : 5,800 bytes in 17 blocks ==342== suppressed: 216,879 bytes in 3,449 blocks ==342== Rerun with --leak-check=full to see details of leaked memory ==342== ==342== For counts of detected and suppressed errors, rerun with: -v ==342== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==343== Memcheck, a memory error detector ==343== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==343== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==343== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==343== Parent PID: 342 ==343== ==351== Memcheck, a memory error detector ==351== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==351== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==351== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==351== Parent PID: 111 ==351== ==351== ==351== HEAP SUMMARY: ==351== in use at exit: 431,456 bytes in 4,136 blocks ==351== total heap usage: 197,029 allocs, 192,893 frees, 25,747,174 bytes allocated ==351== ==351== LEAK SUMMARY: ==351== definitely lost: 0 bytes in 0 blocks ==351== indirectly lost: 0 bytes in 0 blocks ==351== possibly lost: 96 bytes in 1 blocks ==351== still reachable: 214,417 bytes in 684 blocks ==351== of which reachable via heuristic: ==351== newarray : 5,800 bytes in 17 blocks ==351== suppressed: 216,943 bytes in 3,451 blocks ==351== Rerun with --leak-check=full to see details of leaked memory ==351== ==351== For counts of detected and suppressed errors, rerun with: -v ==351== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==352== Memcheck, a memory error detector ==352== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==352== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==352== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==352== Parent PID: 351 ==352== ==360== Memcheck, a memory error detector ==360== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==360== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==360== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==360== Parent PID: 351 ==360== ==368== Memcheck, a memory error detector ==368== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==368== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==368== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==368== Parent PID: 111 ==368== ==368== ==368== HEAP SUMMARY: ==368== in use at exit: 431,456 bytes in 4,136 blocks ==368== total heap usage: 204,209 allocs, 200,073 frees, 26,471,910 bytes allocated ==368== ==368== LEAK SUMMARY: ==368== definitely lost: 0 bytes in 0 blocks ==368== indirectly lost: 0 bytes in 0 blocks ==368== possibly lost: 96 bytes in 1 blocks ==368== still reachable: 214,417 bytes in 684 blocks ==368== of which reachable via heuristic: ==368== newarray : 5,800 bytes in 17 blocks ==368== suppressed: 216,943 bytes in 3,451 blocks ==368== Rerun with --leak-check=full to see details of leaked memory ==368== ==368== For counts of detected and suppressed errors, rerun with: -v ==368== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==369== Memcheck, a memory error detector ==369== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==369== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==369== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==369== Parent PID: 368 ==369== ==377== Memcheck, a memory error detector ==377== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==377== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==377== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==377== Parent PID: 368 ==377== ==385== Memcheck, a memory error detector ==385== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==385== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==385== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==385== Parent PID: 111 ==385== ==385== ==385== HEAP SUMMARY: ==385== in use at exit: 431,448 bytes in 4,136 blocks ==385== total heap usage: 211,746 allocs, 207,610 frees, 27,256,299 bytes allocated ==385== ==385== LEAK SUMMARY: ==385== definitely lost: 0 bytes in 0 blocks ==385== indirectly lost: 0 bytes in 0 blocks ==385== possibly lost: 96 bytes in 1 blocks ==385== still reachable: 214,417 bytes in 684 blocks ==385== of which reachable via heuristic: ==385== newarray : 5,800 bytes in 17 blocks ==385== suppressed: 216,935 bytes in 3,451 blocks ==385== Rerun with --leak-check=full to see details of leaked memory ==385== ==385== For counts of detected and suppressed errors, rerun with: -v ==385== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==386== Memcheck, a memory error detector ==386== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==386== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==386== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==386== Parent PID: 385 ==386== ==394== Memcheck, a memory error detector ==394== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==394== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==394== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==394== Parent PID: 385 ==394== ==402== Memcheck, a memory error detector ==402== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==402== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==402== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==402== Parent PID: 111 ==402== ==402== ==402== HEAP SUMMARY: ==402== in use at exit: 431,448 bytes in 4,136 blocks ==402== total heap usage: 189,430 allocs, 185,294 frees, 24,923,005 bytes allocated ==402== ==402== LEAK SUMMARY: ==402== definitely lost: 0 bytes in 0 blocks ==402== indirectly lost: 0 bytes in 0 blocks ==402== possibly lost: 96 bytes in 1 blocks ==402== still reachable: 214,417 bytes in 684 blocks ==402== of which reachable via heuristic: ==402== newarray : 5,800 bytes in 17 blocks ==402== suppressed: 216,935 bytes in 3,451 blocks ==402== Rerun with --leak-check=full to see details of leaked memory ==402== ==402== For counts of detected and suppressed errors, rerun with: -v ==402== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==403== Memcheck, a memory error detector ==403== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==403== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==403== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==403== Parent PID: 402 ==403== ==411== Memcheck, a memory error detector ==411== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==411== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==411== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==411== Parent PID: 402 ==411== ==419== Memcheck, a memory error detector ==419== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==419== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==419== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==419== Parent PID: 111 ==419== ==419== ==419== HEAP SUMMARY: ==419== in use at exit: 431,448 bytes in 4,136 blocks ==419== total heap usage: 189,396 allocs, 185,260 frees, 24,917,779 bytes allocated ==419== ==419== LEAK SUMMARY: ==419== definitely lost: 0 bytes in 0 blocks ==419== indirectly lost: 0 bytes in 0 blocks ==419== possibly lost: 96 bytes in 1 blocks ==419== still reachable: 214,417 bytes in 684 blocks ==419== of which reachable via heuristic: ==419== newarray : 5,800 bytes in 17 blocks ==419== suppressed: 216,935 bytes in 3,451 blocks ==419== Rerun with --leak-check=full to see details of leaked memory ==419== ==419== For counts of detected and suppressed errors, rerun with: -v ==419== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==420== Memcheck, a memory error detector ==420== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==420== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==420== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==420== Parent PID: 419 ==420== ==428== Memcheck, a memory error detector ==428== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==428== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==428== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==428== Parent PID: 419 ==428== ==436== Memcheck, a memory error detector ==436== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==436== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==436== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==436== Parent PID: 111 ==436== ==436== ==436== HEAP SUMMARY: ==436== in use at exit: 431,400 bytes in 4,134 blocks ==436== total heap usage: 211,927 allocs, 207,793 frees, 27,326,193 bytes allocated ==436== ==436== LEAK SUMMARY: ==436== definitely lost: 0 bytes in 0 blocks ==436== indirectly lost: 0 bytes in 0 blocks ==436== possibly lost: 96 bytes in 1 blocks ==436== still reachable: 214,417 bytes in 684 blocks ==436== of which reachable via heuristic: ==436== newarray : 5,800 bytes in 17 blocks ==436== suppressed: 216,887 bytes in 3,449 blocks ==436== Rerun with --leak-check=full to see details of leaked memory ==436== ==436== For counts of detected and suppressed errors, rerun with: -v ==436== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==437== Memcheck, a memory error detector ==437== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==437== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==437== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==437== Parent PID: 436 ==437== ==445== Memcheck, a memory error detector ==445== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==445== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==445== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==445== Parent PID: 436 ==445== ==453== Memcheck, a memory error detector ==453== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==453== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==453== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==453== Parent PID: 111 ==453== ==453== ==453== HEAP SUMMARY: ==453== in use at exit: 431,448 bytes in 4,136 blocks ==453== total heap usage: 211,895 allocs, 207,759 frees, 27,321,268 bytes allocated ==453== ==453== LEAK SUMMARY: ==453== definitely lost: 0 bytes in 0 blocks ==453== indirectly lost: 0 bytes in 0 blocks ==453== possibly lost: 96 bytes in 1 blocks ==453== still reachable: 214,417 bytes in 684 blocks ==453== of which reachable via heuristic: ==453== newarray : 5,800 bytes in 17 blocks ==453== suppressed: 216,935 bytes in 3,451 blocks ==453== Rerun with --leak-check=full to see details of leaked memory ==453== ==453== For counts of detected and suppressed errors, rerun with: -v ==453== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==454== Memcheck, a memory error detector ==454== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==454== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==454== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==454== Parent PID: 453 ==454== ==462== Memcheck, a memory error detector ==462== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==462== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==462== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==462== Parent PID: 453 ==462== ==470== Memcheck, a memory error detector ==470== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==470== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==470== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent ==470== Parent PID: 111 ==470== ==470== ==470== HEAP SUMMARY: ==470== in use at exit: 431,464 bytes in 4,136 blocks ==470== total heap usage: 181,396 allocs, 177,260 frees, 23,924,920 bytes allocated ==470== ==470== LEAK SUMMARY: ==470== definitely lost: 0 bytes in 0 blocks ==470== indirectly lost: 0 bytes in 0 blocks ==470== possibly lost: 96 bytes in 1 blocks ==470== still reachable: 214,417 bytes in 684 blocks ==470== of which reachable via heuristic: ==470== newarray : 5,800 bytes in 17 blocks ==470== suppressed: 216,951 bytes in 3,451 blocks ==470== Rerun with --leak-check=full to see details of leaked memory ==470== ==470== For counts of detected and suppressed errors, rerun with: -v ==470== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==471== Memcheck, a memory error detector ==471== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==471== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==471== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent ==471== Parent PID: 470 ==471== ==479== Memcheck, a memory error detector ==479== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==479== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==479== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild ==479== Parent PID: 111 ==479== ==479== ==479== HEAP SUMMARY: ==479== in use at exit: 431,448 bytes in 4,136 blocks ==479== total heap usage: 181,396 allocs, 177,260 frees, 23,924,835 bytes allocated ==479== ==479== LEAK SUMMARY: ==479== definitely lost: 0 bytes in 0 blocks ==479== indirectly lost: 0 bytes in 0 blocks ==479== possibly lost: 96 bytes in 1 blocks ==479== still reachable: 214,417 bytes in 684 blocks ==479== of which reachable via heuristic: ==479== newarray : 5,800 bytes in 17 blocks ==479== suppressed: 216,935 bytes in 3,451 blocks ==479== Rerun with --leak-check=full to see details of leaked memory ==479== ==479== For counts of detected and suppressed errors, rerun with: -v ==479== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==480== Memcheck, a memory error detector ==480== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==480== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==480== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild ==480== Parent PID: 479 ==480== ==488== Memcheck, a memory error detector ==488== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==488== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==488== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild ==488== Parent PID: 111 ==488== ==488== ==488== HEAP SUMMARY: ==488== in use at exit: 431,448 bytes in 4,136 blocks ==488== total heap usage: 196,402 allocs, 192,266 frees, 25,535,734 bytes allocated ==488== ==488== LEAK SUMMARY: ==488== definitely lost: 0 bytes in 0 blocks ==488== indirectly lost: 0 bytes in 0 blocks ==488== possibly lost: 96 bytes in 1 blocks ==488== still reachable: 214,417 bytes in 684 blocks ==488== of which reachable via heuristic: ==488== newarray : 5,800 bytes in 17 blocks ==488== suppressed: 216,935 bytes in 3,451 blocks ==488== Rerun with --leak-check=full to see details of leaked memory ==488== ==488== For counts of detected and suppressed errors, rerun with: -v ==488== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==489== Memcheck, a memory error detector ==489== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==489== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==489== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild ==489== Parent PID: 488 ==489== ==497== Memcheck, a memory error detector ==497== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==497== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==497== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent ==497== Parent PID: 111 ==497== ==497== ==497== HEAP SUMMARY: ==497== in use at exit: 431,440 bytes in 4,136 blocks ==497== total heap usage: 189,099 allocs, 184,963 frees, 24,788,516 bytes allocated ==497== ==497== LEAK SUMMARY: ==497== definitely lost: 0 bytes in 0 blocks ==497== indirectly lost: 0 bytes in 0 blocks ==497== possibly lost: 96 bytes in 1 blocks ==497== still reachable: 214,417 bytes in 684 blocks ==497== of which reachable via heuristic: ==497== newarray : 5,800 bytes in 17 blocks ==497== suppressed: 216,927 bytes in 3,451 blocks ==497== Rerun with --leak-check=full to see details of leaked memory ==497== ==497== For counts of detected and suppressed errors, rerun with: -v ==497== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==498== Memcheck, a memory error detector ==498== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==498== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==498== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent ==498== Parent PID: 497 ==498== ==506== Memcheck, a memory error detector ==506== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==506== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==506== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==506== Parent PID: 111 ==506== ==506== ==506== HEAP SUMMARY: ==506== in use at exit: 431,464 bytes in 4,136 blocks ==506== total heap usage: 197,026 allocs, 192,890 frees, 25,741,156 bytes allocated ==506== ==506== LEAK SUMMARY: ==506== definitely lost: 0 bytes in 0 blocks ==506== indirectly lost: 0 bytes in 0 blocks ==506== possibly lost: 96 bytes in 1 blocks ==506== still reachable: 214,417 bytes in 684 blocks ==506== of which reachable via heuristic: ==506== newarray : 5,800 bytes in 17 blocks ==506== suppressed: 216,951 bytes in 3,451 blocks ==506== Rerun with --leak-check=full to see details of leaked memory ==506== ==506== For counts of detected and suppressed errors, rerun with: -v ==506== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==507== Memcheck, a memory error detector ==507== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==507== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==507== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==507== Parent PID: 506 ==507== ==515== Memcheck, a memory error detector ==515== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==515== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==515== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==515== Parent PID: 506 ==515== ==523== Memcheck, a memory error detector ==523== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==523== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==523== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==523== Parent PID: 111 ==523== ==523== ==523== HEAP SUMMARY: ==523== in use at exit: 431,472 bytes in 4,136 blocks ==523== total heap usage: 204,206 allocs, 200,070 frees, 26,465,888 bytes allocated ==523== ==523== LEAK SUMMARY: ==523== definitely lost: 0 bytes in 0 blocks ==523== indirectly lost: 0 bytes in 0 blocks ==523== possibly lost: 96 bytes in 1 blocks ==523== still reachable: 214,417 bytes in 684 blocks ==523== of which reachable via heuristic: ==523== newarray : 5,800 bytes in 17 blocks ==523== suppressed: 216,959 bytes in 3,451 blocks ==523== Rerun with --leak-check=full to see details of leaked memory ==523== ==523== For counts of detected and suppressed errors, rerun with: -v ==523== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==524== Memcheck, a memory error detector ==524== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==524== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==524== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==524== Parent PID: 523 ==524== ==532== Memcheck, a memory error detector ==532== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==532== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==532== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==532== Parent PID: 523 ==532== ==540== Memcheck, a memory error detector ==540== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==540== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==540== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==540== Parent PID: 111 ==540== ==540== ==540== HEAP SUMMARY: ==540== in use at exit: 431,472 bytes in 4,136 blocks ==540== total heap usage: 211,743 allocs, 207,607 frees, 27,250,255 bytes allocated ==540== ==540== LEAK SUMMARY: ==540== definitely lost: 0 bytes in 0 blocks ==540== indirectly lost: 0 bytes in 0 blocks ==540== possibly lost: 96 bytes in 1 blocks ==540== still reachable: 214,417 bytes in 684 blocks ==540== of which reachable via heuristic: ==540== newarray : 5,800 bytes in 17 blocks ==540== suppressed: 216,959 bytes in 3,451 blocks ==540== Rerun with --leak-check=full to see details of leaked memory ==540== ==540== For counts of detected and suppressed errors, rerun with: -v ==540== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==541== Memcheck, a memory error detector ==541== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==541== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==541== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==541== Parent PID: 540 ==541== ==549== Memcheck, a memory error detector ==549== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==549== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==549== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==549== Parent PID: 540 ==549== ==557== Memcheck, a memory error detector ==557== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==557== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==557== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==557== Parent PID: 111 ==557== ==557== ==557== HEAP SUMMARY: ==557== in use at exit: 431,456 bytes in 4,136 blocks ==557== total heap usage: 189,428 allocs, 185,292 frees, 24,916,938 bytes allocated ==557== ==557== LEAK SUMMARY: ==557== definitely lost: 0 bytes in 0 blocks ==557== indirectly lost: 0 bytes in 0 blocks ==557== possibly lost: 96 bytes in 1 blocks ==557== still reachable: 214,417 bytes in 684 blocks ==557== of which reachable via heuristic: ==557== newarray : 5,800 bytes in 17 blocks ==557== suppressed: 216,943 bytes in 3,451 blocks ==557== Rerun with --leak-check=full to see details of leaked memory ==557== ==557== For counts of detected and suppressed errors, rerun with: -v ==557== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==558== Memcheck, a memory error detector ==558== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==558== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==558== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==558== Parent PID: 557 ==558== ==566== Memcheck, a memory error detector ==566== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==566== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==566== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==566== Parent PID: 557 ==566== ==574== Memcheck, a memory error detector ==574== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==574== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==574== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==574== Parent PID: 111 ==574== ==574== ==574== HEAP SUMMARY: ==574== in use at exit: 431,456 bytes in 4,136 blocks ==574== total heap usage: 189,394 allocs, 185,258 frees, 24,911,729 bytes allocated ==574== ==574== LEAK SUMMARY: ==574== definitely lost: 0 bytes in 0 blocks ==574== indirectly lost: 0 bytes in 0 blocks ==574== possibly lost: 96 bytes in 1 blocks ==574== still reachable: 214,417 bytes in 684 blocks ==574== of which reachable via heuristic: ==574== newarray : 5,800 bytes in 17 blocks ==574== suppressed: 216,943 bytes in 3,451 blocks ==574== Rerun with --leak-check=full to see details of leaked memory ==574== ==574== For counts of detected and suppressed errors, rerun with: -v ==574== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==575== Memcheck, a memory error detector ==575== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==575== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==575== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==575== Parent PID: 574 ==575== ==583== Memcheck, a memory error detector ==583== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==583== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==583== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==583== Parent PID: 574 ==583== ==591== Memcheck, a memory error detector ==591== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==591== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==591== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==591== Parent PID: 111 ==591== ==591== ==591== HEAP SUMMARY: ==591== in use at exit: 431,392 bytes in 4,134 blocks ==591== total heap usage: 211,923 allocs, 207,789 frees, 27,316,260 bytes allocated ==591== ==591== LEAK SUMMARY: ==591== definitely lost: 0 bytes in 0 blocks ==591== indirectly lost: 0 bytes in 0 blocks ==591== possibly lost: 96 bytes in 1 blocks ==591== still reachable: 214,417 bytes in 684 blocks ==591== of which reachable via heuristic: ==591== newarray : 5,800 bytes in 17 blocks ==591== suppressed: 216,879 bytes in 3,449 blocks ==591== Rerun with --leak-check=full to see details of leaked memory ==591== ==591== For counts of detected and suppressed errors, rerun with: -v ==591== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==592== Memcheck, a memory error detector ==592== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==592== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==592== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==592== Parent PID: 591 ==592== ==600== Memcheck, a memory error detector ==600== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==600== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==600== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==600== Parent PID: 591 ==600== ==608== Memcheck, a memory error detector ==608== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==608== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==608== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==608== Parent PID: 111 ==608== ==608== ==608== HEAP SUMMARY: ==608== in use at exit: 431,472 bytes in 4,136 blocks ==608== total heap usage: 211,891 allocs, 207,755 frees, 27,311,444 bytes allocated ==608== ==608== LEAK SUMMARY: ==608== definitely lost: 0 bytes in 0 blocks ==608== indirectly lost: 0 bytes in 0 blocks ==608== possibly lost: 96 bytes in 1 blocks ==608== still reachable: 214,417 bytes in 684 blocks ==608== of which reachable via heuristic: ==608== newarray : 5,800 bytes in 17 blocks ==608== suppressed: 216,959 bytes in 3,451 blocks ==608== Rerun with --leak-check=full to see details of leaked memory ==608== ==608== For counts of detected and suppressed errors, rerun with: -v ==608== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==609== Memcheck, a memory error detector ==609== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==609== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==609== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==609== Parent PID: 608 ==609== ==617== Memcheck, a memory error detector ==617== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==617== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==617== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==617== Parent PID: 608 ==617== ==625== Memcheck, a memory error detector ==625== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==625== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==625== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent ==625== Parent PID: 111 ==625== ==625== ==625== HEAP SUMMARY: ==625== in use at exit: 431,472 bytes in 4,136 blocks ==625== total heap usage: 181,396 allocs, 177,260 frees, 23,924,850 bytes allocated ==625== ==625== LEAK SUMMARY: ==625== definitely lost: 0 bytes in 0 blocks ==625== indirectly lost: 0 bytes in 0 blocks ==625== possibly lost: 96 bytes in 1 blocks ==625== still reachable: 214,417 bytes in 684 blocks ==625== of which reachable via heuristic: ==625== newarray : 5,800 bytes in 17 blocks ==625== suppressed: 216,959 bytes in 3,451 blocks ==625== Rerun with --leak-check=full to see details of leaked memory ==625== ==625== For counts of detected and suppressed errors, rerun with: -v ==625== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==626== Memcheck, a memory error detector ==626== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==626== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==626== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent ==626== Parent PID: 625 ==626== ==634== Memcheck, a memory error detector ==634== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==634== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==634== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild ==634== Parent PID: 111 ==634== ==634== ==634== HEAP SUMMARY: ==634== in use at exit: 431,448 bytes in 4,136 blocks ==634== total heap usage: 181,396 allocs, 177,260 frees, 23,924,753 bytes allocated ==634== ==634== LEAK SUMMARY: ==634== definitely lost: 0 bytes in 0 blocks ==634== indirectly lost: 0 bytes in 0 blocks ==634== possibly lost: 96 bytes in 1 blocks ==634== still reachable: 214,417 bytes in 684 blocks ==634== of which reachable via heuristic: ==634== newarray : 5,800 bytes in 17 blocks ==634== suppressed: 216,935 bytes in 3,451 blocks ==634== Rerun with --leak-check=full to see details of leaked memory ==634== ==634== For counts of detected and suppressed errors, rerun with: -v ==634== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==635== Memcheck, a memory error detector ==635== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==635== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==635== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild ==635== Parent PID: 634 ==635== ==643== Memcheck, a memory error detector ==643== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==643== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==643== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==643== Parent PID: 111 ==643== ==643== ==643== HEAP SUMMARY: ==643== in use at exit: 431,472 bytes in 4,136 blocks ==643== total heap usage: 196,402 allocs, 192,266 frees, 25,535,648 bytes allocated ==643== ==643== LEAK SUMMARY: ==643== definitely lost: 0 bytes in 0 blocks ==643== indirectly lost: 0 bytes in 0 blocks ==643== possibly lost: 96 bytes in 1 blocks ==643== still reachable: 214,417 bytes in 684 blocks ==643== of which reachable via heuristic: ==643== newarray : 5,800 bytes in 17 blocks ==643== suppressed: 216,959 bytes in 3,451 blocks ==643== Rerun with --leak-check=full to see details of leaked memory ==643== ==643== For counts of detected and suppressed errors, rerun with: -v ==643== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==644== Memcheck, a memory error detector ==644== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==644== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==644== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==644== Parent PID: 643 ==644== ==652== Memcheck, a memory error detector ==652== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==652== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==652== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==652== Parent PID: 111 ==652== ==652== ==652== HEAP SUMMARY: ==652== in use at exit: 431,440 bytes in 4,136 blocks ==652== total heap usage: 189,099 allocs, 184,963 frees, 24,788,396 bytes allocated ==652== ==652== LEAK SUMMARY: ==652== definitely lost: 0 bytes in 0 blocks ==652== indirectly lost: 0 bytes in 0 blocks ==652== possibly lost: 96 bytes in 1 blocks ==652== still reachable: 214,417 bytes in 684 blocks ==652== of which reachable via heuristic: ==652== newarray : 5,800 bytes in 17 blocks ==652== suppressed: 216,927 bytes in 3,451 blocks ==652== Rerun with --leak-check=full to see details of leaked memory ==652== ==652== For counts of detected and suppressed errors, rerun with: -v ==652== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==653== Memcheck, a memory error detector ==653== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==653== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==653== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==653== Parent PID: 652 ==653== ==661== Memcheck, a memory error detector ==661== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==661== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==661== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==661== Parent PID: 111 ==661== ==661== ==661== HEAP SUMMARY: ==661== in use at exit: 431,456 bytes in 4,136 blocks ==661== total heap usage: 197,026 allocs, 192,890 frees, 25,740,998 bytes allocated ==661== ==661== LEAK SUMMARY: ==661== definitely lost: 0 bytes in 0 blocks ==661== indirectly lost: 0 bytes in 0 blocks ==661== possibly lost: 96 bytes in 1 blocks ==661== still reachable: 214,417 bytes in 684 blocks ==661== of which reachable via heuristic: ==661== newarray : 5,800 bytes in 17 blocks ==661== suppressed: 216,943 bytes in 3,451 blocks ==661== Rerun with --leak-check=full to see details of leaked memory ==661== ==661== For counts of detected and suppressed errors, rerun with: -v ==661== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==662== Memcheck, a memory error detector ==662== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==662== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==662== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==662== Parent PID: 661 ==662== ==670== Memcheck, a memory error detector ==670== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==670== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==670== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==670== Parent PID: 661 ==670== ==678== Memcheck, a memory error detector ==678== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==678== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==678== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==678== Parent PID: 111 ==678== ==678== ==678== HEAP SUMMARY: ==678== in use at exit: 431,472 bytes in 4,136 blocks ==678== total heap usage: 204,206 allocs, 200,070 frees, 26,465,732 bytes allocated ==678== ==678== LEAK SUMMARY: ==678== definitely lost: 0 bytes in 0 blocks ==678== indirectly lost: 0 bytes in 0 blocks ==678== possibly lost: 96 bytes in 1 blocks ==678== still reachable: 214,417 bytes in 684 blocks ==678== of which reachable via heuristic: ==678== newarray : 5,800 bytes in 17 blocks ==678== suppressed: 216,959 bytes in 3,451 blocks ==678== Rerun with --leak-check=full to see details of leaked memory ==678== ==678== For counts of detected and suppressed errors, rerun with: -v ==678== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==679== Memcheck, a memory error detector ==679== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==679== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==679== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==679== Parent PID: 678 ==679== ==687== Memcheck, a memory error detector ==687== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==687== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==687== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==687== Parent PID: 678 ==687== ==695== Memcheck, a memory error detector ==695== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==695== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==695== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==695== Parent PID: 111 ==695== ==695== ==695== HEAP SUMMARY: ==695== in use at exit: 431,464 bytes in 4,136 blocks ==695== total heap usage: 211,743 allocs, 207,607 frees, 27,250,116 bytes allocated ==695== ==695== LEAK SUMMARY: ==695== definitely lost: 0 bytes in 0 blocks ==695== indirectly lost: 0 bytes in 0 blocks ==695== possibly lost: 96 bytes in 1 blocks ==695== still reachable: 214,417 bytes in 684 blocks ==695== of which reachable via heuristic: ==695== newarray : 5,800 bytes in 17 blocks ==695== suppressed: 216,951 bytes in 3,451 blocks ==695== Rerun with --leak-check=full to see details of leaked memory ==695== ==695== For counts of detected and suppressed errors, rerun with: -v ==695== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==696== Memcheck, a memory error detector ==696== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==696== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==696== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==696== Parent PID: 695 ==696== ==704== Memcheck, a memory error detector ==704== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==704== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==704== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==704== Parent PID: 695 ==704== ==712== Memcheck, a memory error detector ==712== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==712== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==712== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==712== Parent PID: 111 ==712== ==712== ==712== HEAP SUMMARY: ==712== in use at exit: 431,464 bytes in 4,136 blocks ==712== total heap usage: 189,428 allocs, 185,292 frees, 24,916,801 bytes allocated ==712== ==712== LEAK SUMMARY: ==712== definitely lost: 0 bytes in 0 blocks ==712== indirectly lost: 0 bytes in 0 blocks ==712== possibly lost: 96 bytes in 1 blocks ==712== still reachable: 214,417 bytes in 684 blocks ==712== of which reachable via heuristic: ==712== newarray : 5,800 bytes in 17 blocks ==712== suppressed: 216,951 bytes in 3,451 blocks ==712== Rerun with --leak-check=full to see details of leaked memory ==712== ==712== For counts of detected and suppressed errors, rerun with: -v ==712== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==713== Memcheck, a memory error detector ==713== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==713== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==713== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==713== Parent PID: 712 ==713== ==721== Memcheck, a memory error detector ==721== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==721== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==721== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==721== Parent PID: 712 ==721== ==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::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==729== Parent PID: 111 ==729== ==729== ==729== HEAP SUMMARY: ==729== in use at exit: 431,448 bytes in 4,136 blocks ==729== total heap usage: 189,394 allocs, 185,258 frees, 24,911,434 bytes allocated ==729== ==729== LEAK SUMMARY: ==729== definitely lost: 0 bytes in 0 blocks ==729== indirectly lost: 0 bytes in 0 blocks ==729== possibly lost: 96 bytes in 1 blocks ==729== still reachable: 214,417 bytes in 684 blocks ==729== of which reachable via heuristic: ==729== newarray : 5,800 bytes in 17 blocks ==729== suppressed: 216,935 bytes in 3,451 blocks ==729== Rerun with --leak-check=full to see details of leaked memory ==729== ==729== For counts of detected and suppressed errors, rerun with: -v ==729== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==730== Memcheck, a memory error detector ==730== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==730== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==730== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==730== Parent PID: 729 ==730== ==738== Memcheck, a memory error detector ==738== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==738== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==738== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==738== Parent PID: 729 ==738== ==746== Memcheck, a memory error detector ==746== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==746== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==746== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==746== Parent PID: 111 ==746== ==746== ==746== HEAP SUMMARY: ==746== in use at exit: 431,448 bytes in 4,136 blocks ==746== total heap usage: 211,925 allocs, 207,789 frees, 27,316,070 bytes allocated ==746== ==746== LEAK SUMMARY: ==746== definitely lost: 0 bytes in 0 blocks ==746== indirectly lost: 0 bytes in 0 blocks ==746== possibly lost: 96 bytes in 1 blocks ==746== still reachable: 214,417 bytes in 684 blocks ==746== of which reachable via heuristic: ==746== newarray : 5,800 bytes in 17 blocks ==746== suppressed: 216,935 bytes in 3,451 blocks ==746== Rerun with --leak-check=full to see details of leaked memory ==746== ==746== For counts of detected and suppressed errors, rerun with: -v ==746== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==747== Memcheck, a memory error detector ==747== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==747== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==747== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==747== Parent PID: 746 ==747== ==755== Memcheck, a memory error detector ==755== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==755== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==755== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==755== Parent PID: 746 ==755== ==763== Memcheck, a memory error detector ==763== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==763== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==763== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==763== Parent PID: 111 ==763== ==763== ==763== HEAP SUMMARY: ==763== in use at exit: 431,448 bytes in 4,136 blocks ==763== total heap usage: 211,891 allocs, 207,755 frees, 27,311,173 bytes allocated ==763== ==763== LEAK SUMMARY: ==763== definitely lost: 0 bytes in 0 blocks ==763== indirectly lost: 0 bytes in 0 blocks ==763== possibly lost: 96 bytes in 1 blocks ==763== still reachable: 214,417 bytes in 684 blocks ==763== of which reachable via heuristic: ==763== newarray : 5,800 bytes in 17 blocks ==763== suppressed: 216,935 bytes in 3,451 blocks ==763== Rerun with --leak-check=full to see details of leaked memory ==763== ==763== For counts of detected and suppressed errors, rerun with: -v ==763== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==764== Memcheck, a memory error detector ==764== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==764== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==764== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==764== Parent PID: 763 ==764== ==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::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==772== Parent PID: 763 ==772== valgrindcheck: ./client-test Client::Source::file_event: final result 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=2570 wrappercheck-102 line 115: set +e wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 2570 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 2570 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: grep -q 'No such process' wrappercheck-102 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2570 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 2570 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=2575 wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 2575 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 2575 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: grep -q 'No such process' wrappercheck-82 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2575 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 2575 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-26 line 100: RET=0 wrappercheck-26 line 101: set -e wrappercheck-26 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-26 line 108: kill -INT -28 wrappercheck-26 line 108: kill -TERM -28 wrappercheck-26 line 108: kill -TERM 28 wrappercheck-26 line 110: KILL_PID=2580 wrappercheck-26 line 115: set +e wrappercheck-26 line 109: perl -e 'sleep(60); kill(9, -28);' wrappercheck-26 line 116: wait 28 wrappercheck-26 line 117: SUBRET=143 wrappercheck-26 line 118: case $SUBRET in wrappercheck-26 line 118: SUBRET=0 wrappercheck-26 line 120: SUBRET=0 wrappercheck-26 line 121: '[' 2580 ']' wwrappercheck-26 line 122: LC_ALL=C wwrappercheck-26 line 122: kill -KILL 2580 wrappercheck-26 line 122: msg= wrappercheck-26 line 123: echo '' wrappercheck-26 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2580 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-26 line 127: echo '' wrappercheck-26 line 129: wait 2580 wrappercheck-26 line 131: set -e wrappercheck-26 line 132: '[' 0 = 0 ']' wrappercheck-26 line 133: RET=0 wrappercheck-26 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=2585 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' 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: '[' 2585 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 2585 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: echo '' wrappercheck-19 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2585 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 2585 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.SNl0R0ns2C Fri Jan 5 15:51:05 2018 UTC (+ 1021.3s / 1039.7s) === cleaning up ===