runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 1.8s / 65.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/prebuilt-testing-i386/home/file/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) target /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/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-i386/data/runtests/work/prebuilt-testing-i386/home/file/.cache new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/cache old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/.config new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/config old /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/.local/share new /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/home/file/data runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) === starting file === runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) result dir: /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/9-file, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/home/nightly/results/2018-01-05-07-10_all/prebuilt-testing-i386/9-file runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) changing into directory /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/file (= /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/file) runtests.py-32139 Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 65.9s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/file; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-i386/home/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/cache'; unset ; /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-i386/tests/file -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution ) Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['file'] === Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.1s) property changed: status = acquired Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:30:56 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 15:30:59 2018 UTC (+ 3.3s / 3.3s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-cppcheck] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-i386 chroot] Running command: “env LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh 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 84: '[' '' ']' 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 70: set -x wrappercheck-15 line 70: exec wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution ** Message: couldn't access control socket: /tmp/tmp.TyLeXEDNZc/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: '[' 29 -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=evolution-source-registry.log wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 27 -gt 1 ']' wrappercheck-19 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 43: shift wrappercheck-19 line 44: DAEMON_SLEEP=5 wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 25 -gt 1 ']' wrappercheck-19 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 35: shift wrappercheck-19 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-19 line 53: shift wrappercheck-19 line 28: '[' 23 -gt 1 ']' wrappercheck-19 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 23 -gt 1 ']' wrappercheck-19 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-19 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-19 line 58: shift wrappercheck-19 line 56: '[' 22 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' evolution-source-registry.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-19 line 72: BACKGROUND_PID=24 wrappercheck-19 line 73: PIDS+=24 wrappercheck-19 line 75: '[' evolution-source-registry.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-19 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-19 line 70: set -x wrappercheck-19 line 70: exec wrappercheck-19 line 93: kill -0 24 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' 5 ']' wrappercheck-19 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-19 line 97: sleep 5 wrappercheck-19 line 99: set -x wrappercheck-19 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-73 line 16: PIDS= wrappercheck-73 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-73 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-73 line 21: DAEMON_LOG= wrappercheck-73 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-73 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-73 line 25: declare -a BACKGROUND wrappercheck-73 line 26: declare -a ENV wrappercheck-73 line 28: '[' 20 -gt 1 ']' wrappercheck-73 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 31: shift wrappercheck-73 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 18 -gt 1 ']' wrappercheck-73 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 35: shift wrappercheck-73 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-73 line 53: shift wrappercheck-73 line 28: '[' 16 -gt 1 ']' wrappercheck-73 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 29: case "$1" in wrappercheck-73 line 50: break wrappercheck-73 line 56: '[' 16 -gt 1 ']' wrappercheck-73 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 15 -gt 1 ']' wrappercheck-73 line 56: '[' --keep-running '!=' -- ']' wrappercheck-73 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-73 line 58: shift wrappercheck-73 line 56: '[' 14 -gt 1 ']' wrappercheck-73 line 56: '[' -- '!=' -- ']' wrappercheck-73 line 60: shift wrappercheck-73 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 62: '[' '' ']' wrappercheck-73 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-73 line 72: BACKGROUND_PID=75 wrappercheck-73 line 70: set -x wrappercheck-73 line 73: PIDS+=75 wrappercheck-73 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-73 line 75: '[' '' ']' wrappercheck-73 line 70: exec wrappercheck-73 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-73 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-73 line 93: kill -0 75 wrappercheck-73 line 94: set +e wrappercheck-73 line 95: '[' '' ']' wrappercheck-73 line 99: set -x wrappercheck-73 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-93 line 16: PIDS= wrappercheck-93 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-93 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-93 line 21: DAEMON_LOG= wrappercheck-93 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-93 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-93 line 25: declare -a BACKGROUND wrappercheck-93 line 26: declare -a ENV wrappercheck-93 line 28: '[' 12 -gt 1 ']' wrappercheck-93 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 31: shift wrappercheck-93 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-93 line 53: shift wrappercheck-93 line 28: '[' 10 -gt 1 ']' wrappercheck-93 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 29: case "$1" in wrappercheck-93 line 50: break wrappercheck-93 line 56: '[' 10 -gt 1 ']' wrappercheck-93 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 9 -gt 1 ']' wrappercheck-93 line 56: '[' --keep-running '!=' -- ']' wrappercheck-93 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-93 line 58: shift wrappercheck-93 line 56: '[' 8 -gt 1 ']' wrappercheck-93 line 56: '[' -- '!=' -- ']' wrappercheck-93 line 60: shift wrappercheck-93 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 62: '[' '' ']' wrappercheck-93 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-93 line 72: BACKGROUND_PID=95 wrappercheck-93 line 73: PIDS+=95 wrappercheck-93 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-93 line 75: '[' '' ']' wrappercheck-93 line 84: '[' '' ']' wrappercheck-93 line 93: kill -0 95 wrappercheck-93 line 94: set +e wrappercheck-93 line 95: '[' '' ']' wrappercheck-93 line 99: set -x wrappercheck-93 line 99: env /data/runtests/work/sources/syncevolution/test/wrappercheck.sh /usr/libexec/activesyncd -- /home/nightly/testing/setup-syncevolution.sh file ./syncevolution wrappercheck-93 line 70: set -x wrappercheck-93 line 70: exec + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-97 line 16: PIDS= wrappercheck-97 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-97 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-97 line 21: DAEMON_LOG= wrappercheck-97 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-97 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-97 line 25: declare -a BACKGROUND wrappercheck-97 line 26: declare -a ENV wrappercheck-97 line 28: '[' 5 -gt 1 ']' wrappercheck-97 line 28: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-97 line 29: case "$1" in wrappercheck-97 line 50: break wrappercheck-97 line 56: '[' 5 -gt 1 ']' wrappercheck-97 line 56: '[' /usr/libexec/activesyncd '!=' -- ']' wrappercheck-97 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/libexec/activesyncd wrappercheck-97 line 58: shift wrappercheck-97 line 56: '[' 4 -gt 1 ']' wrappercheck-97 line 56: '[' -- '!=' -- ']' wrappercheck-97 line 60: shift wrappercheck-97 line 62: '[' '' ']' wrappercheck-97 line 66: set +x *** starting /usr/libexec/activesyncd as background daemon, output to stderr wrappercheck-97 line 72: BACKGROUND_PID=99 wrappercheck-97 line 73: PIDS+=99 wrappercheck-97 line 70: set -x wrappercheck-97 line 70: exec wrappercheck-97 line 75: '[' '' ']' wrappercheck-97 line 84: '[' '' ']' wrappercheck-97 line 93: kill -0 99 wrappercheck-97 line 94: set +e wrappercheck-97 line 95: '[' '' ']' wrappercheck-97 line 99: set -x wrappercheck-97 line 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 ++ sed -e 's/=.*//' ++ echo evolution-contacts=eds_contact + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + grep Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-calendar=eds_event + backend=evolution-calendar ++ sed -e 's/.*=//' ++ echo evolution-calendar=eds_event + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_1 Test_eds_event_1 (1303827939.6946.27@mob-sync2) + echo evolution-calendar: Test_eds_event_1 exists evolution-calendar: Test_eds_event_1 exists + for i in 1 2 + databasename=Test_eds_event_2 + ./syncevolution --daemon=no --print-databases backend=evolution-calendar + grep Test_eds_event_2 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 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_1 Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos + grep Test_eds_memo_2 Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-97 line 100: RET=0 wrappercheck-97 line 101: set -e wrappercheck-97 line 107: set +x *** killing and waiting for /usr/libexec/activesyncd wrappercheck-97 line 108: kill -INT -99 wrappercheck-97 line 108: kill -TERM -99 wrappercheck-97 line 108: kill -TERM 99 wrappercheck-97 line 110: KILL_PID=195 wrappercheck-97 line 109: perl -e 'sleep(60); kill(9, -99);' wrappercheck-97 line 115: set +e wrappercheck-97 line 116: wait 99 wrappercheck-97 line 117: SUBRET=143 wrappercheck-97 line 118: case $SUBRET in wrappercheck-97 line 118: SUBRET=0 wrappercheck-97 line 120: SUBRET=0 wrappercheck-97 line 121: '[' 195 ']' wwrappercheck-97 line 122: LC_ALL=C wwrappercheck-97 line 122: kill -KILL 195 wrappercheck-97 line 122: msg= wrappercheck-97 line 123: echo '' wrappercheck-97 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 195 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-97 line 127: echo '' wrappercheck-97 line 129: wait 195 wrappercheck-97 line 131: set -e wrappercheck-97 line 132: '[' 0 = 0 ']' wrappercheck-97 line 133: RET=0 wrappercheck-97 line 136: exit 0 wrappercheck-93 line 100: RET=0 wrappercheck-93 line 101: set -e wrappercheck-93 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-93 line 108: kill -INT -95 wrappercheck-93 line 108: kill -TERM -95 wrappercheck-93 line 108: kill -TERM 95 wrappercheck-93 line 110: KILL_PID=200 wrappercheck-93 line 115: set +e wrappercheck-93 line 109: perl -e 'sleep(60); kill(9, -95);' wrappercheck-93 line 116: wait 95 wrappercheck-93 line 117: SUBRET=143 wrappercheck-93 line 118: case $SUBRET in wrappercheck-93 line 118: SUBRET=0 wrappercheck-93 line 120: SUBRET=0 wrappercheck-93 line 121: '[' 200 ']' wwrappercheck-93 line 122: LC_ALL=C wwrappercheck-93 line 122: kill -KILL 200 wrappercheck-93 line 122: msg= wrappercheck-93 line 123: grep -q 'No such process' wrappercheck-93 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 200 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-93 line 127: echo '' wrappercheck-93 line 129: wait 200 wrappercheck-93 line 131: set -e wrappercheck-93 line 132: '[' 0 = 0 ']' wrappercheck-93 line 133: RET=0 wrappercheck-93 line 136: exit 0 wrappercheck-73 line 100: RET=0 wrappercheck-73 line 101: set -e wrappercheck-73 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-73 line 108: kill -INT -75 wrappercheck-73 line 108: kill -TERM -75 wrappercheck-73 line 108: kill -TERM 75 wrappercheck-73 line 110: KILL_PID=205 wrappercheck-73 line 109: perl -e 'sleep(60); kill(9, -75);' wrappercheck-73 line 115: set +e wrappercheck-73 line 116: wait 75 wrappercheck-73 line 117: SUBRET=143 wrappercheck-73 line 118: case $SUBRET in wrappercheck-73 line 118: SUBRET=0 wrappercheck-73 line 120: SUBRET=0 wrappercheck-73 line 121: '[' 205 ']' wwrappercheck-73 line 122: LC_ALL=C wwrappercheck-73 line 122: kill -KILL 205 wrappercheck-73 line 122: msg= wrappercheck-73 line 123: echo '' wrappercheck-73 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 205 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-73 line 127: echo '' wrappercheck-73 line 129: wait 205 wrappercheck-73 line 131: set -e wrappercheck-73 line 132: '[' 0 = 0 ']' wrappercheck-73 line 133: RET=0 wrappercheck-73 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-19 line 108: kill -INT -24 wrappercheck-19 line 108: kill -TERM -24 wrappercheck-19 line 108: kill -TERM 24 wrappercheck-19 line 110: KILL_PID=210 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 24 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -24);' wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 210 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 210 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: 210 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 210 wrappercheck-19 line 131: set -e wrappercheck-19 line 132: '[' 0 = 0 ']' wrappercheck-19 line 133: RET=0 wrappercheck-19 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=215 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 17 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -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: '[' 215 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 215 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: 215 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 215 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.TyLeXEDNZc Fri Jan 5 15:31:08 2018 UTC (+ 8.7s / 12.1s) === cleaning up === runtests.py-32139 Fri Jan 5 15:31:08 2018 UTC (+ 12.1s / 78.0s) *** ( cd /data/schroot/2018-01-05-07-10-all-prebuilt-testing-i386/data/runtests/work/prebuilt-testing-i386/tests/file; export 'LD_LIBRARY_PATH=/data/runtests/install/testing-i386/libical/lib' 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/prebuilt-testing-i386/home/file' 'XDG_CONFIG_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/config' 'XDG_DATA_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/data' 'XDG_CACHE_HOME=/data/runtests/work/prebuilt-testing-i386/home/file/cache'; unset ; /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-i386/tests/file -r -p -c 2018-01-05-07-10-all-prebuilt-testing-i386 -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event ) Fri Jan 5 15:31:08 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['file'] === Fri Jan 5 15:31:08 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 15:31:08 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 15:31:08 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 15:31:09 2018 UTC (+ 0.6s / 0.6s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-cppcheck] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-prebuilt-testing-i386 chroot] Running command: “env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs:/data/runtests/install/testing-i386/libical/lib DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.TxuRMkuxO4/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: '[' 33 -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: '[' 31 -gt 1 ']' wrappercheck-19 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-19 line 29: case "$1" in wrappercheck-19 line 50: break wrappercheck-19 line 56: '[' 31 -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: '[' 30 -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: '[' 29 -gt 1 ']' wrappercheck-19 line 56: '[' -- '!=' -- ']' wrappercheck-19 line 60: shift wrappercheck-19 line 62: '[' dbus-monitor.log ']' wrappercheck-19 line 62: '[' '' ']' wrappercheck-19 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-19 line 72: BACKGROUND_PID=22 wrappercheck-19 line 73: PIDS+=22 wrappercheck-19 line 70: set -x wrappercheck-19 line 75: '[' dbus-monitor.log ']' wrappercheck-19 line 75: '[' '' ']' wrappercheck-19 line 70: exec wrappercheck-19 line 84: '[' '' ']' wrappercheck-19 line 93: kill -0 22 wrappercheck-19 line 94: set +e wrappercheck-19 line 95: '[' '' ']' wrappercheck-19 line 99: set -x wrappercheck-19 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env 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-25 line 16: PIDS= wrappercheck-25 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-25 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-25 line 21: DAEMON_LOG= wrappercheck-25 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-25 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-25 line 25: declare -a BACKGROUND wrappercheck-25 line 26: declare -a ENV wrappercheck-25 line 28: '[' 27 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 31: shift wrappercheck-25 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 25 -gt 1 ']' wrappercheck-25 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 43: shift wrappercheck-25 line 44: DAEMON_SLEEP=5 wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 23 -gt 1 ']' wrappercheck-25 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 35: shift wrappercheck-25 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-25 line 53: shift wrappercheck-25 line 28: '[' 21 -gt 1 ']' wrappercheck-25 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 29: case "$1" in wrappercheck-25 line 50: break wrappercheck-25 line 56: '[' 21 -gt 1 ']' wrappercheck-25 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-25 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-25 line 58: shift wrappercheck-25 line 56: '[' 20 -gt 1 ']' wrappercheck-25 line 56: '[' -- '!=' -- ']' wrappercheck-25 line 60: shift wrappercheck-25 line 62: '[' evolution-source-registry.log ']' wrappercheck-25 line 62: '[' '' ']' wrappercheck-25 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-25 line 72: BACKGROUND_PID=30 wrappercheck-25 line 73: PIDS+=30 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 70: set -x wrappercheck-25 line 85: set +x wrappercheck-25 line 70: exec *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 30 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env 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-75 line 16: PIDS= wrappercheck-75 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-75 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-75 line 21: DAEMON_LOG= wrappercheck-75 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-75 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-75 line 25: declare -a BACKGROUND wrappercheck-75 line 26: declare -a ENV wrappercheck-75 line 28: '[' 18 -gt 1 ']' wrappercheck-75 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 31: shift wrappercheck-75 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-75 line 53: shift wrappercheck-75 line 28: '[' 16 -gt 1 ']' wrappercheck-75 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 35: shift wrappercheck-75 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-75 line 53: shift wrappercheck-75 line 28: '[' 14 -gt 1 ']' wrappercheck-75 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-75 line 29: case "$1" in wrappercheck-75 line 50: break wrappercheck-75 line 56: '[' 14 -gt 1 ']' wrappercheck-75 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-75 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-75 line 58: shift wrappercheck-75 line 56: '[' 13 -gt 1 ']' wrappercheck-75 line 56: '[' --keep-running '!=' -- ']' wrappercheck-75 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-75 line 58: shift wrappercheck-75 line 56: '[' 12 -gt 1 ']' wrappercheck-75 line 56: '[' -- '!=' -- ']' wrappercheck-75 line 60: shift wrappercheck-75 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-75 line 62: '[' '' ']' wrappercheck-75 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-75 line 72: BACKGROUND_PID=77 wrappercheck-75 line 73: PIDS+=77 wrappercheck-75 line 70: set -x wrappercheck-75 line 70: exec wrappercheck-75 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-75 line 75: '[' '' ']' wrappercheck-75 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-75 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-75 line 93: kill -0 77 wrappercheck-75 line 94: set +e wrappercheck-75 line 95: '[' '' ']' wrappercheck-75 line 99: set -x wrappercheck-75 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::file_event + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-95 line 16: PIDS= wrappercheck-95 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-95 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-95 line 21: DAEMON_LOG= wrappercheck-95 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-95 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-95 line 25: declare -a BACKGROUND wrappercheck-95 line 26: declare -a ENV wrappercheck-95 line 28: '[' 10 -gt 1 ']' wrappercheck-95 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-95 line 29: case "$1" in wrappercheck-95 line 31: shift wrappercheck-95 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-95 line 53: shift wrappercheck-95 line 28: '[' 8 -gt 1 ']' wrappercheck-95 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-95 line 29: case "$1" in wrappercheck-95 line 50: break wrappercheck-95 line 56: '[' 8 -gt 1 ']' wrappercheck-95 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-95 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-95 line 58: shift wrappercheck-95 line 56: '[' 7 -gt 1 ']' wrappercheck-95 line 56: '[' --keep-running '!=' -- ']' wrappercheck-95 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-95 line 58: shift wrappercheck-95 line 56: '[' 6 -gt 1 ']' wrappercheck-95 line 56: '[' -- '!=' -- ']' wrappercheck-95 line 60: shift wrappercheck-95 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-95 line 62: '[' '' ']' wrappercheck-95 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-95 line 72: BACKGROUND_PID=97 wrappercheck-95 line 73: PIDS+=97 wrappercheck-95 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-95 line 75: '[' '' ']' wrappercheck-95 line 84: '[' '' ']' wrappercheck-95 line 93: kill -0 97 wrappercheck-95 line 94: set +e wrappercheck-95 line 95: '[' '' ']' wrappercheck-95 line 70: set -x wrappercheck-95 line 70: exec wrappercheck-95 line 99: set -x wrappercheck-95 line 99: env PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test Client::Source::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-i386/tests/file/valgrind.p100.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 (100): './client-test Client::Source::file_event' (106): returned 0 ==106== Memcheck, a memory error detector ==106== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==106== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==106== Command: ./client-test Client::Source::file_event ==106== Parent PID: 100 ==106== ==106== ==106== HEAP SUMMARY: ==106== in use at exit: 289,674 bytes in 4,101 blocks ==106== total heap usage: 185,867 allocs, 181,766 frees, 21,539,967 bytes allocated ==106== ==106== LEAK SUMMARY: ==106== definitely lost: 0 bytes in 0 blocks ==106== indirectly lost: 0 bytes in 0 blocks ==106== possibly lost: 52 bytes in 1 blocks ==106== still reachable: 127,249 bytes in 678 blocks ==106== of which reachable via heuristic: ==106== newarray : 4,712 bytes in 17 blocks ==106== suppressed: 162,373 bytes in 3,422 blocks ==106== Rerun with --leak-check=full to see details of leaked memory ==106== ==106== For counts of detected and suppressed errors, rerun with: -v ==106== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==112== Memcheck, a memory error detector ==112== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==112== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==112== Command: ./client-test Client::Source::file_event::testOpen ==112== Parent PID: 106 ==112== ==112== ==112== HEAP SUMMARY: ==112== in use at exit: 289,678 bytes in 4,102 blocks ==112== total heap usage: 121,277 allocs, 117,175 frees, 15,408,532 bytes allocated ==112== ==112== LEAK SUMMARY: ==112== definitely lost: 0 bytes in 0 blocks ==112== indirectly lost: 0 bytes in 0 blocks ==112== possibly lost: 52 bytes in 1 blocks ==112== still reachable: 127,261 bytes in 679 blocks ==112== of which reachable via heuristic: ==112== newarray : 4,712 bytes in 17 blocks ==112== suppressed: 162,365 bytes in 3,422 blocks ==112== Rerun with --leak-check=full to see details of leaked memory ==112== ==112== For counts of detected and suppressed errors, rerun with: -v ==112== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==113== Memcheck, a memory error detector ==113== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==113== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==113== Command: ./client-test Client::Source::file_event::testIterateTwice ==113== Parent PID: 106 ==113== ==113== ==113== HEAP SUMMARY: ==113== in use at exit: 289,686 bytes in 4,102 blocks ==113== total heap usage: 121,721 allocs, 117,619 frees, 15,598,462 bytes allocated ==113== ==113== LEAK SUMMARY: ==113== definitely lost: 0 bytes in 0 blocks ==113== indirectly lost: 0 bytes in 0 blocks ==113== possibly lost: 52 bytes in 1 blocks ==113== still reachable: 127,261 bytes in 679 blocks ==113== of which reachable via heuristic: ==113== newarray : 4,712 bytes in 17 blocks ==113== suppressed: 162,373 bytes in 3,422 blocks ==113== Rerun with --leak-check=full to see details of leaked memory ==113== ==113== For counts of detected and suppressed errors, rerun with: -v ==113== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==114== Memcheck, a memory error detector ==114== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==114== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==114== Command: ./client-test Client::Source::file_event::testDelete404 ==114== Parent PID: 106 ==114== ==114== ==114== HEAP SUMMARY: ==114== in use at exit: 289,674 bytes in 4,102 blocks ==114== total heap usage: 121,676 allocs, 117,574 frees, 15,589,127 bytes allocated ==114== ==114== LEAK SUMMARY: ==114== definitely lost: 0 bytes in 0 blocks ==114== indirectly lost: 0 bytes in 0 blocks ==114== possibly lost: 52 bytes in 1 blocks ==114== still reachable: 127,261 bytes in 679 blocks ==114== of which reachable via heuristic: ==114== newarray : 4,712 bytes in 17 blocks ==114== suppressed: 162,361 bytes in 3,422 blocks ==114== Rerun with --leak-check=full to see details of leaked memory ==114== ==114== For counts of detected and suppressed errors, rerun with: -v ==114== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==115== Memcheck, a memory error detector ==115== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==115== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==115== Command: ./client-test Client::Source::file_event::testReadItem404 ==115== Parent PID: 106 ==115== ==115== ==115== HEAP SUMMARY: ==115== in use at exit: 289,682 bytes in 4,102 blocks ==115== total heap usage: 121,676 allocs, 117,574 frees, 15,589,552 bytes allocated ==115== ==115== LEAK SUMMARY: ==115== definitely lost: 0 bytes in 0 blocks ==115== indirectly lost: 0 bytes in 0 blocks ==115== possibly lost: 52 bytes in 1 blocks ==115== still reachable: 127,261 bytes in 679 blocks ==115== of which reachable via heuristic: ==115== newarray : 4,712 bytes in 17 blocks ==115== suppressed: 162,369 bytes in 3,422 blocks ==115== Rerun with --leak-check=full to see details of leaked memory ==115== ==115== For counts of detected and suppressed errors, rerun with: -v ==115== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==116== Memcheck, a memory error detector ==116== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==116== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==116== Command: ./client-test Client::Source::file_event::testSimpleInsert ==116== Parent PID: 106 ==116== ==116== ==116== HEAP SUMMARY: ==116== in use at exit: 289,790 bytes in 4,109 blocks ==116== total heap usage: 129,347 allocs, 125,238 frees, 16,302,396 bytes allocated ==116== ==116== LEAK SUMMARY: ==116== definitely lost: 0 bytes in 0 blocks ==116== indirectly lost: 0 bytes in 0 blocks ==116== possibly lost: 52 bytes in 1 blocks ==116== still reachable: 127,385 bytes in 684 blocks ==116== of which reachable via heuristic: ==116== newarray : 4,712 bytes in 17 blocks ==116== suppressed: 162,353 bytes in 3,424 blocks ==116== Rerun with --leak-check=full to see details of leaked memory ==116== ==116== For counts of detected and suppressed errors, rerun with: -v ==116== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==117== Memcheck, a memory error detector ==117== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==117== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==117== Command: ./client-test Client::Source::file_event::testLocalDeleteAll ==117== Parent PID: 106 ==117== ==117== ==117== HEAP SUMMARY: ==117== in use at exit: 289,786 bytes in 4,109 blocks ==117== total heap usage: 144,127 allocs, 140,018 frees, 17,655,431 bytes allocated ==117== ==117== LEAK SUMMARY: ==117== definitely lost: 0 bytes in 0 blocks ==117== indirectly lost: 0 bytes in 0 blocks ==117== possibly lost: 52 bytes in 1 blocks ==117== still reachable: 127,385 bytes in 684 blocks ==117== of which reachable via heuristic: ==117== newarray : 4,712 bytes in 17 blocks ==117== suppressed: 162,349 bytes in 3,424 blocks ==117== Rerun with --leak-check=full to see details of leaked memory ==117== ==117== For counts of detected and suppressed errors, rerun with: -v ==117== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==118== Memcheck, a memory error detector ==118== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==118== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==118== Command: ./client-test Client::Source::file_event::testComplexInsert ==118== Parent PID: 106 ==118== ==118== ==118== HEAP SUMMARY: ==118== in use at exit: 289,794 bytes in 4,109 blocks ==118== total heap usage: 151,305 allocs, 147,196 frees, 18,252,826 bytes allocated ==118== ==118== LEAK SUMMARY: ==118== definitely lost: 0 bytes in 0 blocks ==118== indirectly lost: 0 bytes in 0 blocks ==118== possibly lost: 52 bytes in 1 blocks ==118== still reachable: 127,385 bytes in 684 blocks ==118== of which reachable via heuristic: ==118== newarray : 4,712 bytes in 17 blocks ==118== suppressed: 162,357 bytes in 3,424 blocks ==118== Rerun with --leak-check=full to see details of leaked memory ==118== ==118== For counts of detected and suppressed errors, rerun with: -v ==118== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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::testInsertTwice ==119== Parent PID: 106 ==119== ==119== ==119== HEAP SUMMARY: ==119== in use at exit: 289,786 bytes in 4,109 blocks ==119== total heap usage: 136,847 allocs, 132,738 frees, 17,029,997 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: 52 bytes in 1 blocks ==119== still reachable: 127,385 bytes in 684 blocks ==119== of which reachable via heuristic: ==119== newarray : 4,712 bytes in 17 blocks ==119== suppressed: 162,349 bytes in 3,424 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::testLocalUpdate ==120== Parent PID: 106 ==120== ==120== ==120== HEAP SUMMARY: ==120== in use at exit: 289,798 bytes in 4,109 blocks ==120== total heap usage: 159,131 allocs, 155,022 frees, 19,035,860 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: 52 bytes in 1 blocks ==120== still reachable: 127,385 bytes in 684 blocks ==120== of which reachable via heuristic: ==120== newarray : 4,712 bytes in 17 blocks ==120== suppressed: 162,361 bytes in 3,424 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::testChanges ==121== Parent PID: 106 ==121== ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 289,882 bytes in 4,109 blocks ==121== total heap usage: 396,276 allocs, 392,167 frees, 40,620,271 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: 52 bytes in 1 blocks ==121== still reachable: 127,513 bytes in 685 blocks ==121== of which reachable via heuristic: ==121== newarray : 4,712 bytes in 17 blocks ==121== suppressed: 162,317 bytes in 3,423 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::testChangesMultiCycles ==122== Parent PID: 106 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 289,882 bytes in 4,109 blocks ==122== total heap usage: 309,371 allocs, 305,262 frees, 34,171,335 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: 52 bytes in 1 blocks ==122== still reachable: 127,513 bytes in 685 blocks ==122== of which reachable via heuristic: ==122== newarray : 4,712 bytes in 17 blocks ==122== suppressed: 162,317 bytes in 3,423 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::testImport ==123== Parent PID: 106 ==123== ==123== ==123== HEAP SUMMARY: ==123== in use at exit: 289,758 bytes in 4,107 blocks ==123== total heap usage: 166,270 allocs, 162,163 frees, 21,597,571 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: 52 bytes in 1 blocks ==123== still reachable: 127,385 bytes in 684 blocks ==123== of which reachable via heuristic: ==123== newarray : 4,712 bytes in 17 blocks ==123== suppressed: 162,321 bytes in 3,422 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::testImport ==124== Parent PID: 123 ==124== ==132== Memcheck, a memory error detector ==132== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==132== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==132== Command: ./client-test Client::Source::file_event::testImportDelete ==132== Parent PID: 106 ==132== ==132== ==132== HEAP SUMMARY: ==132== in use at exit: 289,786 bytes in 4,109 blocks ==132== total heap usage: 182,742 allocs, 178,633 frees, 23,733,115 bytes allocated ==132== ==132== LEAK SUMMARY: ==132== definitely lost: 0 bytes in 0 blocks ==132== indirectly lost: 0 bytes in 0 blocks ==132== possibly lost: 52 bytes in 1 blocks ==132== still reachable: 127,385 bytes in 684 blocks ==132== of which reachable via heuristic: ==132== newarray : 4,712 bytes in 17 blocks ==132== suppressed: 162,349 bytes in 3,424 blocks ==132== Rerun with --leak-check=full to see details of leaked memory ==132== ==132== For counts of detected and suppressed errors, rerun with: -v ==132== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==133== Memcheck, a memory error detector ==133== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==133== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==133== Command: ./client-test Client::Source::file_event::testImportDelete ==133== Parent PID: 132 ==133== ==141== Memcheck, a memory error detector ==141== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==141== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==141== Command: ./client-test Client::Source::file_event::testRemoveProperties ==141== Parent PID: 106 ==141== ==141== ==141== HEAP SUMMARY: ==141== in use at exit: 289,786 bytes in 4,109 blocks ==141== total heap usage: 209,119 allocs, 205,010 frees, 27,679,938 bytes allocated ==141== ==141== LEAK SUMMARY: ==141== definitely lost: 0 bytes in 0 blocks ==141== indirectly lost: 0 bytes in 0 blocks ==141== possibly lost: 52 bytes in 1 blocks ==141== still reachable: 127,385 bytes in 684 blocks ==141== of which reachable via heuristic: ==141== newarray : 4,712 bytes in 17 blocks ==141== suppressed: 162,349 bytes in 3,424 blocks ==141== Rerun with --leak-check=full to see details of leaked memory ==141== ==141== For counts of detected and suppressed errors, rerun with: -v ==141== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==142== Memcheck, a memory error detector ==142== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==142== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==142== Command: ./client-test Client::Source::file_event::testRemoveProperties ==142== Parent PID: 141 ==142== ==150== Memcheck, a memory error detector ==150== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==150== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==150== Command: ./client-test Client::Source::file_event::testManyChanges ==150== Parent PID: 106 ==150== ==150== ==150== HEAP SUMMARY: ==150== in use at exit: 289,786 bytes in 4,109 blocks ==150== total heap usage: 206,103 allocs, 201,994 frees, 31,457,712 bytes allocated ==150== ==150== LEAK SUMMARY: ==150== definitely lost: 0 bytes in 0 blocks ==150== indirectly lost: 0 bytes in 0 blocks ==150== possibly lost: 52 bytes in 1 blocks ==150== still reachable: 127,385 bytes in 684 blocks ==150== of which reachable via heuristic: ==150== newarray : 4,712 bytes in 17 blocks ==150== suppressed: 162,349 bytes in 3,424 blocks ==150== Rerun with --leak-check=full to see details of leaked memory ==150== ==150== For counts of detected and suppressed errors, rerun with: -v ==150== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==151== Memcheck, a memory error detector ==151== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==151== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==151== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent ==151== Parent PID: 106 ==151== ==151== ==151== HEAP SUMMARY: ==151== in use at exit: 289,786 bytes in 4,109 blocks ==151== total heap usage: 181,179 allocs, 177,070 frees, 21,047,062 bytes allocated ==151== ==151== LEAK SUMMARY: ==151== definitely lost: 0 bytes in 0 blocks ==151== indirectly lost: 0 bytes in 0 blocks ==151== possibly lost: 52 bytes in 1 blocks ==151== still reachable: 127,385 bytes in 684 blocks ==151== of which reachable via heuristic: ==151== newarray : 4,712 bytes in 17 blocks ==151== suppressed: 162,349 bytes in 3,424 blocks ==151== Rerun with --leak-check=full to see details of leaked memory ==151== ==151== For counts of detected and suppressed errors, rerun with: -v ==151== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==152== Memcheck, a memory error detector ==152== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==152== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==152== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParent ==152== Parent PID: 151 ==152== ==160== Memcheck, a memory error detector ==160== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==160== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==160== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild ==160== Parent PID: 106 ==160== ==160== ==160== HEAP SUMMARY: ==160== in use at exit: 289,790 bytes in 4,109 blocks ==160== total heap usage: 181,179 allocs, 177,070 frees, 21,047,005 bytes allocated ==160== ==160== LEAK SUMMARY: ==160== definitely lost: 0 bytes in 0 blocks ==160== indirectly lost: 0 bytes in 0 blocks ==160== possibly lost: 52 bytes in 1 blocks ==160== still reachable: 127,385 bytes in 684 blocks ==160== of which reachable via heuristic: ==160== newarray : 4,712 bytes in 17 blocks ==160== suppressed: 162,353 bytes in 3,424 blocks ==160== Rerun with --leak-check=full to see details of leaked memory ==160== ==160== For counts of detected and suppressed errors, rerun with: -v ==160== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==161== Memcheck, a memory error detector ==161== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==161== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==161== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChild ==161== Parent PID: 160 ==161== ==169== Memcheck, a memory error detector ==169== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==169== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==169== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild ==169== Parent PID: 106 ==169== ==169== ==169== HEAP SUMMARY: ==169== in use at exit: 289,786 bytes in 4,109 blocks ==169== total heap usage: 196,186 allocs, 192,077 frees, 22,445,720 bytes allocated ==169== ==169== LEAK SUMMARY: ==169== definitely lost: 0 bytes in 0 blocks ==169== indirectly lost: 0 bytes in 0 blocks ==169== possibly lost: 52 bytes in 1 blocks ==169== still reachable: 127,385 bytes in 684 blocks ==169== of which reachable via heuristic: ==169== newarray : 4,712 bytes in 17 blocks ==169== suppressed: 162,349 bytes in 3,424 blocks ==169== Rerun with --leak-check=full to see details of leaked memory ==169== ==169== For counts of detected and suppressed errors, rerun with: -v ==169== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==170== Memcheck, a memory error detector ==170== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==170== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==170== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentChild ==170== Parent PID: 169 ==170== ==178== Memcheck, a memory error detector ==178== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==178== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==178== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent ==178== Parent PID: 106 ==178== ==178== ==178== HEAP SUMMARY: ==178== in use at exit: 289,790 bytes in 4,109 blocks ==178== total heap usage: 188,883 allocs, 184,774 frees, 21,802,191 bytes allocated ==178== ==178== LEAK SUMMARY: ==178== definitely lost: 0 bytes in 0 blocks ==178== indirectly lost: 0 bytes in 0 blocks ==178== possibly lost: 52 bytes in 1 blocks ==178== still reachable: 127,385 bytes in 684 blocks ==178== of which reachable via heuristic: ==178== newarray : 4,712 bytes in 17 blocks ==178== suppressed: 162,353 bytes in 3,424 blocks ==178== Rerun with --leak-check=full to see details of leaked memory ==178== ==178== For counts of detected and suppressed errors, rerun with: -v ==178== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==179== Memcheck, a memory error detector ==179== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==179== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==179== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildParent ==179== Parent PID: 178 ==179== ==187== Memcheck, a memory error detector ==187== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==187== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==187== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==187== Parent PID: 106 ==187== ==187== ==187== HEAP SUMMARY: ==187== in use at exit: 289,786 bytes in 4,109 blocks ==187== total heap usage: 196,811 allocs, 192,702 frees, 22,644,716 bytes allocated ==187== ==187== LEAK SUMMARY: ==187== definitely lost: 0 bytes in 0 blocks ==187== indirectly lost: 0 bytes in 0 blocks ==187== possibly lost: 52 bytes in 1 blocks ==187== still reachable: 127,385 bytes in 684 blocks ==187== of which reachable via heuristic: ==187== newarray : 4,712 bytes in 17 blocks ==187== suppressed: 162,349 bytes in 3,424 blocks ==187== Rerun with --leak-check=full to see details of leaked memory ==187== ==187== For counts of detected and suppressed errors, rerun with: -v ==187== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==188== Memcheck, a memory error detector ==188== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==188== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==188== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==188== Parent PID: 187 ==188== ==196== Memcheck, a memory error detector ==196== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==196== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==196== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsChildChangesParent ==196== Parent PID: 187 ==196== ==204== Memcheck, a memory error detector ==204== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==204== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==204== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==204== Parent PID: 106 ==204== ==204== ==204== HEAP SUMMARY: ==204== in use at exit: 289,798 bytes in 4,109 blocks ==204== total heap usage: 203,991 allocs, 199,882 frees, 23,266,720 bytes allocated ==204== ==204== LEAK SUMMARY: ==204== definitely lost: 0 bytes in 0 blocks ==204== indirectly lost: 0 bytes in 0 blocks ==204== possibly lost: 52 bytes in 1 blocks ==204== still reachable: 127,385 bytes in 684 blocks ==204== of which reachable via heuristic: ==204== newarray : 4,712 bytes in 17 blocks ==204== suppressed: 162,361 bytes in 3,424 blocks ==204== Rerun with --leak-check=full to see details of leaked memory ==204== ==204== For counts of detected and suppressed errors, rerun with: -v ==204== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==205== Memcheck, a memory error detector ==205== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==205== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==205== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==205== Parent PID: 204 ==205== ==213== Memcheck, a memory error detector ==213== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==213== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==213== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveParentFirst ==213== Parent PID: 204 ==213== ==221== Memcheck, a memory error detector ==221== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==221== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==221== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==221== Parent PID: 106 ==221== ==221== ==221== HEAP SUMMARY: ==221== in use at exit: 289,798 bytes in 4,109 blocks ==221== total heap usage: 211,528 allocs, 207,419 frees, 23,945,398 bytes allocated ==221== ==221== LEAK SUMMARY: ==221== definitely lost: 0 bytes in 0 blocks ==221== indirectly lost: 0 bytes in 0 blocks ==221== possibly lost: 52 bytes in 1 blocks ==221== still reachable: 127,385 bytes in 684 blocks ==221== of which reachable via heuristic: ==221== newarray : 4,712 bytes in 17 blocks ==221== suppressed: 162,361 bytes in 3,424 blocks ==221== Rerun with --leak-check=full to see details of leaked memory ==221== ==221== For counts of detected and suppressed errors, rerun with: -v ==221== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==222== Memcheck, a memory error detector ==222== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==222== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==222== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==222== Parent PID: 221 ==222== ==230== Memcheck, a memory error detector ==230== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==230== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==230== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsRemoveNormal ==230== Parent PID: 221 ==230== ==238== Memcheck, a memory error detector ==238== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==238== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==238== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==238== Parent PID: 106 ==238== ==238== ==238== HEAP SUMMARY: ==238== in use at exit: 289,794 bytes in 4,109 blocks ==238== total heap usage: 189,212 allocs, 185,103 frees, 21,928,234 bytes allocated ==238== ==238== LEAK SUMMARY: ==238== definitely lost: 0 bytes in 0 blocks ==238== indirectly lost: 0 bytes in 0 blocks ==238== possibly lost: 52 bytes in 1 blocks ==238== still reachable: 127,385 bytes in 684 blocks ==238== of which reachable via heuristic: ==238== newarray : 4,712 bytes in 17 blocks ==238== suppressed: 162,357 bytes in 3,424 blocks ==238== Rerun with --leak-check=full to see details of leaked memory ==238== ==238== For counts of detected and suppressed errors, rerun with: -v ==238== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==239== Memcheck, a memory error detector ==239== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==239== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==239== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==239== Parent PID: 238 ==239== ==247== Memcheck, a memory error detector ==247== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==247== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==247== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsParentUpdate ==247== Parent PID: 238 ==247== ==255== Memcheck, a memory error detector ==255== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==255== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==255== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==255== Parent PID: 106 ==255== ==255== ==255== HEAP SUMMARY: ==255== in use at exit: 289,786 bytes in 4,109 blocks ==255== total heap usage: 189,178 allocs, 185,069 frees, 21,923,320 bytes allocated ==255== ==255== LEAK SUMMARY: ==255== definitely lost: 0 bytes in 0 blocks ==255== indirectly lost: 0 bytes in 0 blocks ==255== possibly lost: 52 bytes in 1 blocks ==255== still reachable: 127,385 bytes in 684 blocks ==255== of which reachable via heuristic: ==255== newarray : 4,712 bytes in 17 blocks ==255== suppressed: 162,349 bytes in 3,424 blocks ==255== Rerun with --leak-check=full to see details of leaked memory ==255== ==255== For counts of detected and suppressed errors, rerun with: -v ==255== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==256== Memcheck, a memory error detector ==256== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==256== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==256== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==256== Parent PID: 255 ==256== ==264== Memcheck, a memory error detector ==264== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==264== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==264== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsUpdateChild ==264== Parent PID: 255 ==264== ==272== Memcheck, a memory error detector ==272== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==272== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==272== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==272== Parent PID: 106 ==272== ==272== ==272== HEAP SUMMARY: ==272== in use at exit: 289,790 bytes in 4,109 blocks ==272== total heap usage: 211,711 allocs, 207,602 frees, 24,010,653 bytes allocated ==272== ==272== LEAK SUMMARY: ==272== definitely lost: 0 bytes in 0 blocks ==272== indirectly lost: 0 bytes in 0 blocks ==272== possibly lost: 52 bytes in 1 blocks ==272== still reachable: 127,385 bytes in 684 blocks ==272== of which reachable via heuristic: ==272== newarray : 4,712 bytes in 17 blocks ==272== suppressed: 162,353 bytes in 3,424 blocks ==272== Rerun with --leak-check=full to see details of leaked memory ==272== ==272== For counts of detected and suppressed errors, rerun with: -v ==272== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==273== Memcheck, a memory error detector ==273== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==273== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==273== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==273== Parent PID: 272 ==273== ==281== Memcheck, a memory error detector ==281== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==281== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==281== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateChild ==281== Parent PID: 272 ==281== ==289== Memcheck, a memory error detector ==289== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==289== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==289== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==289== Parent PID: 106 ==289== ==289== ==289== HEAP SUMMARY: ==289== in use at exit: 289,790 bytes in 4,109 blocks ==289== total heap usage: 211,677 allocs, 207,568 frees, 24,005,967 bytes allocated ==289== ==289== LEAK SUMMARY: ==289== definitely lost: 0 bytes in 0 blocks ==289== indirectly lost: 0 bytes in 0 blocks ==289== possibly lost: 52 bytes in 1 blocks ==289== still reachable: 127,385 bytes in 684 blocks ==289== of which reachable via heuristic: ==289== newarray : 4,712 bytes in 17 blocks ==289== suppressed: 162,353 bytes in 3,424 blocks ==289== Rerun with --leak-check=full to see details of leaked memory ==289== ==289== For counts of detected and suppressed errors, rerun with: -v ==289== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==290== Memcheck, a memory error detector ==290== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==290== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==290== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==290== Parent PID: 289 ==290== ==298== Memcheck, a memory error detector ==298== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==298== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==298== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsInsertBothUpdateParent ==298== Parent PID: 289 ==298== ==306== Memcheck, a memory error detector ==306== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==306== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==306== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsSingle404 ==306== Parent PID: 106 ==306== ==306== ==306== HEAP SUMMARY: ==306== in use at exit: 289,794 bytes in 4,109 blocks ==306== total heap usage: 151,234 allocs, 147,125 frees, 18,243,122 bytes allocated ==306== ==306== LEAK SUMMARY: ==306== definitely lost: 0 bytes in 0 blocks ==306== indirectly lost: 0 bytes in 0 blocks ==306== possibly lost: 52 bytes in 1 blocks ==306== still reachable: 127,385 bytes in 684 blocks ==306== of which reachable via heuristic: ==306== newarray : 4,712 bytes in 17 blocks ==306== suppressed: 162,357 bytes in 3,424 blocks ==306== Rerun with --leak-check=full to see details of leaked memory ==306== ==306== For counts of detected and suppressed errors, rerun with: -v ==306== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==307== Memcheck, a memory error detector ==307== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==307== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==307== Command: ./client-test Client::Source::file_event::LinkedItemsDefault::testLinkedItemsMany404 ==307== Parent PID: 106 ==307== ==307== ==307== HEAP SUMMARY: ==307== in use at exit: 289,786 bytes in 4,109 blocks ==307== total heap usage: 166,056 allocs, 161,947 frees, 19,607,773 bytes allocated ==307== ==307== LEAK SUMMARY: ==307== definitely lost: 0 bytes in 0 blocks ==307== indirectly lost: 0 bytes in 0 blocks ==307== possibly lost: 52 bytes in 1 blocks ==307== still reachable: 127,385 bytes in 684 blocks ==307== of which reachable via heuristic: ==307== newarray : 4,712 bytes in 17 blocks ==307== suppressed: 162,349 bytes in 3,424 blocks ==307== Rerun with --leak-check=full to see details of leaked memory ==307== ==307== For counts of detected and suppressed errors, rerun with: -v ==307== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==308== Memcheck, a memory error detector ==308== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==308== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==308== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent ==308== Parent PID: 106 ==308== ==308== ==308== HEAP SUMMARY: ==308== in use at exit: 289,794 bytes in 4,109 blocks ==308== total heap usage: 181,288 allocs, 177,179 frees, 21,100,920 bytes allocated ==308== ==308== LEAK SUMMARY: ==308== definitely lost: 0 bytes in 0 blocks ==308== indirectly lost: 0 bytes in 0 blocks ==308== possibly lost: 52 bytes in 1 blocks ==308== still reachable: 127,385 bytes in 684 blocks ==308== of which reachable via heuristic: ==308== newarray : 4,712 bytes in 17 blocks ==308== suppressed: 162,357 bytes in 3,424 blocks ==308== Rerun with --leak-check=full to see details of leaked memory ==308== ==308== For counts of detected and suppressed errors, rerun with: -v ==308== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==309== Memcheck, a memory error detector ==309== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==309== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==309== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParent ==309== Parent PID: 308 ==309== ==317== Memcheck, a memory error detector ==317== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==317== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==317== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild ==317== Parent PID: 106 ==317== ==317== ==317== HEAP SUMMARY: ==317== in use at exit: 289,790 bytes in 4,109 blocks ==317== total heap usage: 181,179 allocs, 177,070 frees, 21,047,359 bytes allocated ==317== ==317== LEAK SUMMARY: ==317== definitely lost: 0 bytes in 0 blocks ==317== indirectly lost: 0 bytes in 0 blocks ==317== possibly lost: 52 bytes in 1 blocks ==317== still reachable: 127,385 bytes in 684 blocks ==317== of which reachable via heuristic: ==317== newarray : 4,712 bytes in 17 blocks ==317== suppressed: 162,353 bytes in 3,424 blocks ==317== Rerun with --leak-check=full to see details of leaked memory ==317== ==317== For counts of detected and suppressed errors, rerun with: -v ==317== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==318== Memcheck, a memory error detector ==318== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==318== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==318== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChild ==318== Parent PID: 317 ==318== ==326== Memcheck, a memory error detector ==326== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==326== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==326== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==326== Parent PID: 106 ==326== ==326== ==326== HEAP SUMMARY: ==326== in use at exit: 289,806 bytes in 4,109 blocks ==326== total heap usage: 196,186 allocs, 192,077 frees, 22,446,397 bytes allocated ==326== ==326== LEAK SUMMARY: ==326== definitely lost: 0 bytes in 0 blocks ==326== indirectly lost: 0 bytes in 0 blocks ==326== possibly lost: 52 bytes in 1 blocks ==326== still reachable: 127,385 bytes in 684 blocks ==326== of which reachable via heuristic: ==326== newarray : 4,712 bytes in 17 blocks ==326== suppressed: 162,369 bytes in 3,424 blocks ==326== Rerun with --leak-check=full to see details of leaked memory ==326== ==326== For counts of detected and suppressed errors, rerun with: -v ==326== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==327== Memcheck, a memory error detector ==327== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==327== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==327== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentChild ==327== Parent PID: 326 ==327== ==335== Memcheck, a memory error detector ==335== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==335== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==335== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==335== Parent PID: 106 ==335== ==335== ==335== HEAP SUMMARY: ==335== in use at exit: 289,794 bytes in 4,109 blocks ==335== total heap usage: 188,883 allocs, 184,774 frees, 21,802,852 bytes allocated ==335== ==335== LEAK SUMMARY: ==335== definitely lost: 0 bytes in 0 blocks ==335== indirectly lost: 0 bytes in 0 blocks ==335== possibly lost: 52 bytes in 1 blocks ==335== still reachable: 127,385 bytes in 684 blocks ==335== of which reachable via heuristic: ==335== newarray : 4,712 bytes in 17 blocks ==335== suppressed: 162,357 bytes in 3,424 blocks ==335== Rerun with --leak-check=full to see details of leaked memory ==335== ==335== For counts of detected and suppressed errors, rerun with: -v ==335== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==336== Memcheck, a memory error detector ==336== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==336== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==336== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildParent ==336== Parent PID: 335 ==336== ==344== Memcheck, a memory error detector ==344== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==344== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==344== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==344== Parent PID: 106 ==344== ==344== ==344== HEAP SUMMARY: ==344== in use at exit: 289,790 bytes in 4,109 blocks ==344== total heap usage: 196,811 allocs, 192,702 frees, 22,645,554 bytes allocated ==344== ==344== LEAK SUMMARY: ==344== definitely lost: 0 bytes in 0 blocks ==344== indirectly lost: 0 bytes in 0 blocks ==344== possibly lost: 52 bytes in 1 blocks ==344== still reachable: 127,385 bytes in 684 blocks ==344== of which reachable via heuristic: ==344== newarray : 4,712 bytes in 17 blocks ==344== suppressed: 162,353 bytes in 3,424 blocks ==344== Rerun with --leak-check=full to see details of leaked memory ==344== ==344== For counts of detected and suppressed errors, rerun with: -v ==344== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==345== Memcheck, a memory error detector ==345== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==345== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==345== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==345== Parent PID: 344 ==345== ==353== Memcheck, a memory error detector ==353== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==353== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==353== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsChildChangesParent ==353== Parent PID: 344 ==353== ==361== Memcheck, a memory error detector ==361== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==361== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==361== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==361== Parent PID: 106 ==361== ==361== ==361== HEAP SUMMARY: ==361== in use at exit: 289,786 bytes in 4,109 blocks ==361== total heap usage: 203,991 allocs, 199,882 frees, 23,267,551 bytes allocated ==361== ==361== LEAK SUMMARY: ==361== definitely lost: 0 bytes in 0 blocks ==361== indirectly lost: 0 bytes in 0 blocks ==361== possibly lost: 52 bytes in 1 blocks ==361== still reachable: 127,385 bytes in 684 blocks ==361== of which reachable via heuristic: ==361== newarray : 4,712 bytes in 17 blocks ==361== suppressed: 162,349 bytes in 3,424 blocks ==361== Rerun with --leak-check=full to see details of leaked memory ==361== ==361== For counts of detected and suppressed errors, rerun with: -v ==361== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==362== Memcheck, a memory error detector ==362== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==362== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==362== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==362== Parent PID: 361 ==362== ==370== Memcheck, a memory error detector ==370== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==370== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==370== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveParentFirst ==370== Parent PID: 361 ==370== ==378== Memcheck, a memory error detector ==378== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==378== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==378== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==378== Parent PID: 106 ==378== ==378== ==378== HEAP SUMMARY: ==378== in use at exit: 289,786 bytes in 4,109 blocks ==378== total heap usage: 211,528 allocs, 207,419 frees, 23,946,229 bytes allocated ==378== ==378== LEAK SUMMARY: ==378== definitely lost: 0 bytes in 0 blocks ==378== indirectly lost: 0 bytes in 0 blocks ==378== possibly lost: 52 bytes in 1 blocks ==378== still reachable: 127,385 bytes in 684 blocks ==378== of which reachable via heuristic: ==378== newarray : 4,712 bytes in 17 blocks ==378== suppressed: 162,349 bytes in 3,424 blocks ==378== Rerun with --leak-check=full to see details of leaked memory ==378== ==378== For counts of detected and suppressed errors, rerun with: -v ==378== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==379== Memcheck, a memory error detector ==379== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==379== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==379== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==379== Parent PID: 378 ==379== ==387== Memcheck, a memory error detector ==387== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==387== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==387== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsRemoveNormal ==387== Parent PID: 378 ==387== ==395== Memcheck, a memory error detector ==395== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==395== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==395== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==395== Parent PID: 106 ==395== ==395== ==395== HEAP SUMMARY: ==395== in use at exit: 289,786 bytes in 4,109 blocks ==395== total heap usage: 189,212 allocs, 185,103 frees, 21,929,357 bytes allocated ==395== ==395== LEAK SUMMARY: ==395== definitely lost: 0 bytes in 0 blocks ==395== indirectly lost: 0 bytes in 0 blocks ==395== possibly lost: 52 bytes in 1 blocks ==395== still reachable: 127,385 bytes in 684 blocks ==395== of which reachable via heuristic: ==395== newarray : 4,712 bytes in 17 blocks ==395== suppressed: 162,349 bytes in 3,424 blocks ==395== Rerun with --leak-check=full to see details of leaked memory ==395== ==395== For counts of detected and suppressed errors, rerun with: -v ==395== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==396== Memcheck, a memory error detector ==396== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==396== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==396== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==396== Parent PID: 395 ==396== ==404== Memcheck, a memory error detector ==404== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==404== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==404== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsParentUpdate ==404== Parent PID: 395 ==404== ==412== Memcheck, a memory error detector ==412== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==412== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==412== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==412== Parent PID: 106 ==412== ==412== ==412== HEAP SUMMARY: ==412== in use at exit: 289,790 bytes in 4,109 blocks ==412== total heap usage: 189,178 allocs, 185,069 frees, 21,924,449 bytes allocated ==412== ==412== LEAK SUMMARY: ==412== definitely lost: 0 bytes in 0 blocks ==412== indirectly lost: 0 bytes in 0 blocks ==412== possibly lost: 52 bytes in 1 blocks ==412== still reachable: 127,385 bytes in 684 blocks ==412== of which reachable via heuristic: ==412== newarray : 4,712 bytes in 17 blocks ==412== suppressed: 162,353 bytes in 3,424 blocks ==412== Rerun with --leak-check=full to see details of leaked memory ==412== ==412== For counts of detected and suppressed errors, rerun with: -v ==412== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==413== Memcheck, a memory error detector ==413== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==413== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==413== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==413== Parent PID: 412 ==413== ==421== Memcheck, a memory error detector ==421== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==421== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==421== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsUpdateChild ==421== Parent PID: 412 ==421== ==429== Memcheck, a memory error detector ==429== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==429== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==429== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==429== Parent PID: 106 ==429== ==429== ==429== HEAP SUMMARY: ==429== in use at exit: 289,790 bytes in 4,109 blocks ==429== total heap usage: 211,711 allocs, 207,602 frees, 24,012,275 bytes allocated ==429== ==429== LEAK SUMMARY: ==429== definitely lost: 0 bytes in 0 blocks ==429== indirectly lost: 0 bytes in 0 blocks ==429== possibly lost: 52 bytes in 1 blocks ==429== still reachable: 127,385 bytes in 684 blocks ==429== of which reachable via heuristic: ==429== newarray : 4,712 bytes in 17 blocks ==429== suppressed: 162,353 bytes in 3,424 blocks ==429== Rerun with --leak-check=full to see details of leaked memory ==429== ==429== For counts of detected and suppressed errors, rerun with: -v ==429== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==430== Memcheck, a memory error detector ==430== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==430== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==430== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==430== Parent PID: 429 ==430== ==438== Memcheck, a memory error detector ==438== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==438== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==438== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateChild ==438== Parent PID: 429 ==438== ==446== Memcheck, a memory error detector ==446== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==446== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==446== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==446== Parent PID: 106 ==446== ==446== ==446== HEAP SUMMARY: ==446== in use at exit: 289,790 bytes in 4,109 blocks ==446== total heap usage: 211,677 allocs, 207,568 frees, 24,007,593 bytes allocated ==446== ==446== LEAK SUMMARY: ==446== definitely lost: 0 bytes in 0 blocks ==446== indirectly lost: 0 bytes in 0 blocks ==446== possibly lost: 52 bytes in 1 blocks ==446== still reachable: 127,385 bytes in 684 blocks ==446== of which reachable via heuristic: ==446== newarray : 4,712 bytes in 17 blocks ==446== suppressed: 162,353 bytes in 3,424 blocks ==446== Rerun with --leak-check=full to see details of leaked memory ==446== ==446== For counts of detected and suppressed errors, rerun with: -v ==446== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==447== Memcheck, a memory error detector ==447== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==447== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==447== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==447== Parent PID: 446 ==447== ==455== Memcheck, a memory error detector ==455== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==455== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==455== Command: ./client-test Client::Source::file_event::LinkedItemsWithVALARM::testLinkedItemsInsertBothUpdateParent ==455== Parent PID: 446 ==455== ==463== Memcheck, a memory error detector ==463== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==463== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==463== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent ==463== Parent PID: 106 ==463== ==463== ==463== HEAP SUMMARY: ==463== in use at exit: 289,794 bytes in 4,109 blocks ==463== total heap usage: 181,178 allocs, 177,069 frees, 21,045,209 bytes allocated ==463== ==463== LEAK SUMMARY: ==463== definitely lost: 0 bytes in 0 blocks ==463== indirectly lost: 0 bytes in 0 blocks ==463== possibly lost: 52 bytes in 1 blocks ==463== still reachable: 127,385 bytes in 684 blocks ==463== of which reachable via heuristic: ==463== newarray : 4,712 bytes in 17 blocks ==463== suppressed: 162,357 bytes in 3,424 blocks ==463== Rerun with --leak-check=full to see details of leaked memory ==463== ==463== For counts of detected and suppressed errors, rerun with: -v ==463== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==464== Memcheck, a memory error detector ==464== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==464== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==464== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParent ==464== Parent PID: 463 ==464== ==472== Memcheck, a memory error detector ==472== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==472== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==472== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild ==472== Parent PID: 106 ==472== ==472== ==472== HEAP SUMMARY: ==472== in use at exit: 289,798 bytes in 4,109 blocks ==472== total heap usage: 181,178 allocs, 177,069 frees, 21,045,144 bytes allocated ==472== ==472== LEAK SUMMARY: ==472== definitely lost: 0 bytes in 0 blocks ==472== indirectly lost: 0 bytes in 0 blocks ==472== possibly lost: 52 bytes in 1 blocks ==472== still reachable: 127,385 bytes in 684 blocks ==472== of which reachable via heuristic: ==472== newarray : 4,712 bytes in 17 blocks ==472== suppressed: 162,361 bytes in 3,424 blocks ==472== Rerun with --leak-check=full to see details of leaked memory ==472== ==472== For counts of detected and suppressed errors, rerun with: -v ==472== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==473== Memcheck, a memory error detector ==473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==473== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==473== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChild ==473== Parent PID: 472 ==473== ==481== Memcheck, a memory error detector ==481== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==481== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==481== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild ==481== Parent PID: 106 ==481== ==481== ==481== HEAP SUMMARY: ==481== in use at exit: 289,790 bytes in 4,109 blocks ==481== total heap usage: 196,184 allocs, 192,075 frees, 22,442,011 bytes allocated ==481== ==481== LEAK SUMMARY: ==481== definitely lost: 0 bytes in 0 blocks ==481== indirectly lost: 0 bytes in 0 blocks ==481== possibly lost: 52 bytes in 1 blocks ==481== still reachable: 127,385 bytes in 684 blocks ==481== of which reachable via heuristic: ==481== newarray : 4,712 bytes in 17 blocks ==481== suppressed: 162,353 bytes in 3,424 blocks ==481== Rerun with --leak-check=full to see details of leaked memory ==481== ==481== For counts of detected and suppressed errors, rerun with: -v ==481== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==482== Memcheck, a memory error detector ==482== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==482== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==482== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentChild ==482== Parent PID: 481 ==482== ==490== Memcheck, a memory error detector ==490== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==490== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==490== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent ==490== Parent PID: 106 ==490== ==490== ==490== HEAP SUMMARY: ==490== in use at exit: 289,790 bytes in 4,109 blocks ==490== total heap usage: 188,881 allocs, 184,772 frees, 21,798,483 bytes allocated ==490== ==490== LEAK SUMMARY: ==490== definitely lost: 0 bytes in 0 blocks ==490== indirectly lost: 0 bytes in 0 blocks ==490== possibly lost: 52 bytes in 1 blocks ==490== still reachable: 127,385 bytes in 684 blocks ==490== of which reachable via heuristic: ==490== newarray : 4,712 bytes in 17 blocks ==490== suppressed: 162,353 bytes in 3,424 blocks ==490== Rerun with --leak-check=full to see details of leaked memory ==490== ==490== For counts of detected and suppressed errors, rerun with: -v ==490== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==491== Memcheck, a memory error detector ==491== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==491== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==491== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildParent ==491== Parent PID: 490 ==491== ==499== Memcheck, a memory error detector ==499== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==499== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==499== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==499== Parent PID: 106 ==499== ==499== ==499== HEAP SUMMARY: ==499== in use at exit: 289,786 bytes in 4,109 blocks ==499== total heap usage: 196,808 allocs, 192,699 frees, 22,639,474 bytes allocated ==499== ==499== LEAK SUMMARY: ==499== definitely lost: 0 bytes in 0 blocks ==499== indirectly lost: 0 bytes in 0 blocks ==499== possibly lost: 52 bytes in 1 blocks ==499== still reachable: 127,385 bytes in 684 blocks ==499== of which reachable via heuristic: ==499== newarray : 4,712 bytes in 17 blocks ==499== suppressed: 162,349 bytes in 3,424 blocks ==499== Rerun with --leak-check=full to see details of leaked memory ==499== ==499== For counts of detected and suppressed errors, rerun with: -v ==499== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==499== could not unlink /tmp/vgdb-pipe-from-vgdb-to-499-by-nightly-on-syncev ==499== could not unlink /tmp/vgdb-pipe-to-vgdb-from-499-by-nightly-on-syncev ==499== could not unlink /tmp/vgdb-pipe-shared-mem-vgdb-499-by-nightly-on-syncev ==500== Memcheck, a memory error detector ==500== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==500== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==500== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==500== Parent PID: 499 ==500== ==508== Memcheck, a memory error detector ==508== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==508== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==508== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsChildChangesParent ==508== Parent PID: 499 ==508== ==516== Memcheck, a memory error detector ==516== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==516== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==516== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==516== Parent PID: 106 ==516== ==516== ==516== HEAP SUMMARY: ==516== in use at exit: 289,794 bytes in 4,109 blocks ==516== total heap usage: 203,988 allocs, 199,879 frees, 23,261,557 bytes allocated ==516== ==516== LEAK SUMMARY: ==516== definitely lost: 0 bytes in 0 blocks ==516== indirectly lost: 0 bytes in 0 blocks ==516== possibly lost: 52 bytes in 1 blocks ==516== still reachable: 127,385 bytes in 684 blocks ==516== of which reachable via heuristic: ==516== newarray : 4,712 bytes in 17 blocks ==516== suppressed: 162,357 bytes in 3,424 blocks ==516== Rerun with --leak-check=full to see details of leaked memory ==516== ==516== For counts of detected and suppressed errors, rerun with: -v ==516== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==517== Memcheck, a memory error detector ==517== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==517== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==517== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==517== Parent PID: 516 ==517== ==525== Memcheck, a memory error detector ==525== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==525== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==525== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveParentFirst ==525== Parent PID: 516 ==525== ==533== Memcheck, a memory error detector ==533== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==533== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==533== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==533== Parent PID: 106 ==533== ==533== ==533== HEAP SUMMARY: ==533== in use at exit: 289,802 bytes in 4,109 blocks ==533== total heap usage: 211,525 allocs, 207,416 frees, 23,940,221 bytes allocated ==533== ==533== LEAK SUMMARY: ==533== definitely lost: 0 bytes in 0 blocks ==533== indirectly lost: 0 bytes in 0 blocks ==533== possibly lost: 52 bytes in 1 blocks ==533== still reachable: 127,385 bytes in 684 blocks ==533== of which reachable via heuristic: ==533== newarray : 4,712 bytes in 17 blocks ==533== suppressed: 162,365 bytes in 3,424 blocks ==533== Rerun with --leak-check=full to see details of leaked memory ==533== ==533== For counts of detected and suppressed errors, rerun with: -v ==533== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==534== Memcheck, a memory error detector ==534== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==534== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==534== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==534== Parent PID: 533 ==534== ==542== Memcheck, a memory error detector ==542== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==542== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==542== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsRemoveNormal ==542== Parent PID: 533 ==542== ==550== Memcheck, a memory error detector ==550== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==550== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==550== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==550== Parent PID: 106 ==550== ==550== ==550== HEAP SUMMARY: ==550== in use at exit: 289,786 bytes in 4,109 blocks ==550== total heap usage: 189,210 allocs, 185,101 frees, 21,923,314 bytes allocated ==550== ==550== LEAK SUMMARY: ==550== definitely lost: 0 bytes in 0 blocks ==550== indirectly lost: 0 bytes in 0 blocks ==550== possibly lost: 52 bytes in 1 blocks ==550== still reachable: 127,385 bytes in 684 blocks ==550== of which reachable via heuristic: ==550== newarray : 4,712 bytes in 17 blocks ==550== suppressed: 162,349 bytes in 3,424 blocks ==550== Rerun with --leak-check=full to see details of leaked memory ==550== ==550== For counts of detected and suppressed errors, rerun with: -v ==550== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==551== Memcheck, a memory error detector ==551== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==551== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==551== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==551== Parent PID: 550 ==551== ==559== Memcheck, a memory error detector ==559== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==559== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==559== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsParentUpdate ==559== Parent PID: 550 ==559== ==567== Memcheck, a memory error detector ==567== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==567== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==567== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==567== Parent PID: 106 ==567== ==567== ==567== HEAP SUMMARY: ==567== in use at exit: 289,790 bytes in 4,109 blocks ==567== total heap usage: 189,176 allocs, 185,067 frees, 21,918,405 bytes allocated ==567== ==567== LEAK SUMMARY: ==567== definitely lost: 0 bytes in 0 blocks ==567== indirectly lost: 0 bytes in 0 blocks ==567== possibly lost: 52 bytes in 1 blocks ==567== still reachable: 127,385 bytes in 684 blocks ==567== of which reachable via heuristic: ==567== newarray : 4,712 bytes in 17 blocks ==567== suppressed: 162,353 bytes in 3,424 blocks ==567== Rerun with --leak-check=full to see details of leaked memory ==567== ==567== For counts of detected and suppressed errors, rerun with: -v ==567== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==568== Memcheck, a memory error detector ==568== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==568== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==568== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==568== Parent PID: 567 ==568== ==576== Memcheck, a memory error detector ==576== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==576== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==576== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsUpdateChild ==576== Parent PID: 567 ==576== ==584== Memcheck, a memory error detector ==584== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==584== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==584== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==584== Parent PID: 106 ==584== ==584== ==584== HEAP SUMMARY: ==584== in use at exit: 289,790 bytes in 4,109 blocks ==584== total heap usage: 211,707 allocs, 207,598 frees, 24,002,450 bytes allocated ==584== ==584== LEAK SUMMARY: ==584== definitely lost: 0 bytes in 0 blocks ==584== indirectly lost: 0 bytes in 0 blocks ==584== possibly lost: 52 bytes in 1 blocks ==584== still reachable: 127,385 bytes in 684 blocks ==584== of which reachable via heuristic: ==584== newarray : 4,712 bytes in 17 blocks ==584== suppressed: 162,353 bytes in 3,424 blocks ==584== Rerun with --leak-check=full to see details of leaked memory ==584== ==584== For counts of detected and suppressed errors, rerun with: -v ==584== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==585== Memcheck, a memory error detector ==585== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==585== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==585== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==585== Parent PID: 584 ==585== ==593== Memcheck, a memory error detector ==593== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==593== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==593== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateChild ==593== Parent PID: 584 ==593== ==601== Memcheck, a memory error detector ==601== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==601== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==601== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==601== Parent PID: 106 ==601== ==601== ==601== HEAP SUMMARY: ==601== in use at exit: 289,790 bytes in 4,109 blocks ==601== total heap usage: 211,673 allocs, 207,564 frees, 23,997,812 bytes allocated ==601== ==601== LEAK SUMMARY: ==601== definitely lost: 0 bytes in 0 blocks ==601== indirectly lost: 0 bytes in 0 blocks ==601== possibly lost: 52 bytes in 1 blocks ==601== still reachable: 127,385 bytes in 684 blocks ==601== of which reachable via heuristic: ==601== newarray : 4,712 bytes in 17 blocks ==601== suppressed: 162,353 bytes in 3,424 blocks ==601== Rerun with --leak-check=full to see details of leaked memory ==601== ==601== For counts of detected and suppressed errors, rerun with: -v ==601== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==602== Memcheck, a memory error detector ==602== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==602== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==602== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==602== Parent PID: 601 ==602== ==610== Memcheck, a memory error detector ==610== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==610== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==610== Command: ./client-test Client::Source::file_event::LinkedItemsAllDay::testLinkedItemsInsertBothUpdateParent ==610== Parent PID: 601 ==610== ==618== Memcheck, a memory error detector ==618== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==618== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==618== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent ==618== Parent PID: 106 ==618== ==618== ==618== HEAP SUMMARY: ==618== in use at exit: 289,786 bytes in 4,109 blocks ==618== total heap usage: 181,178 allocs, 177,069 frees, 21,045,149 bytes allocated ==618== ==618== LEAK SUMMARY: ==618== definitely lost: 0 bytes in 0 blocks ==618== indirectly lost: 0 bytes in 0 blocks ==618== possibly lost: 52 bytes in 1 blocks ==618== still reachable: 127,385 bytes in 684 blocks ==618== of which reachable via heuristic: ==618== newarray : 4,712 bytes in 17 blocks ==618== suppressed: 162,349 bytes in 3,424 blocks ==618== Rerun with --leak-check=full to see details of leaked memory ==618== ==618== For counts of detected and suppressed errors, rerun with: -v ==618== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==619== Memcheck, a memory error detector ==619== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==619== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==619== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParent ==619== Parent PID: 618 ==619== ==627== Memcheck, a memory error detector ==627== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==627== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==627== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild ==627== Parent PID: 106 ==627== ==627== ==627== HEAP SUMMARY: ==627== in use at exit: 289,786 bytes in 4,109 blocks ==627== total heap usage: 181,178 allocs, 177,069 frees, 21,045,050 bytes allocated ==627== ==627== LEAK SUMMARY: ==627== definitely lost: 0 bytes in 0 blocks ==627== indirectly lost: 0 bytes in 0 blocks ==627== possibly lost: 52 bytes in 1 blocks ==627== still reachable: 127,385 bytes in 684 blocks ==627== of which reachable via heuristic: ==627== newarray : 4,712 bytes in 17 blocks ==627== suppressed: 162,349 bytes in 3,424 blocks ==627== Rerun with --leak-check=full to see details of leaked memory ==627== ==627== For counts of detected and suppressed errors, rerun with: -v ==627== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==628== Memcheck, a memory error detector ==628== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==628== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==628== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChild ==628== Parent PID: 627 ==628== ==636== Memcheck, a memory error detector ==636== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==636== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==636== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==636== Parent PID: 106 ==636== ==636== ==636== HEAP SUMMARY: ==636== in use at exit: 289,790 bytes in 4,109 blocks ==636== total heap usage: 196,184 allocs, 192,075 frees, 22,441,901 bytes allocated ==636== ==636== LEAK SUMMARY: ==636== definitely lost: 0 bytes in 0 blocks ==636== indirectly lost: 0 bytes in 0 blocks ==636== possibly lost: 52 bytes in 1 blocks ==636== still reachable: 127,385 bytes in 684 blocks ==636== of which reachable via heuristic: ==636== newarray : 4,712 bytes in 17 blocks ==636== suppressed: 162,353 bytes in 3,424 blocks ==636== Rerun with --leak-check=full to see details of leaked memory ==636== ==636== For counts of detected and suppressed errors, rerun with: -v ==636== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==637== Memcheck, a memory error detector ==637== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==637== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==637== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentChild ==637== Parent PID: 636 ==637== ==645== Memcheck, a memory error detector ==645== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==645== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==645== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==645== Parent PID: 106 ==645== ==645== ==645== HEAP SUMMARY: ==645== in use at exit: 289,786 bytes in 4,109 blocks ==645== total heap usage: 188,881 allocs, 184,772 frees, 21,798,329 bytes allocated ==645== ==645== LEAK SUMMARY: ==645== definitely lost: 0 bytes in 0 blocks ==645== indirectly lost: 0 bytes in 0 blocks ==645== possibly lost: 52 bytes in 1 blocks ==645== still reachable: 127,385 bytes in 684 blocks ==645== of which reachable via heuristic: ==645== newarray : 4,712 bytes in 17 blocks ==645== suppressed: 162,349 bytes in 3,424 blocks ==645== Rerun with --leak-check=full to see details of leaked memory ==645== ==645== For counts of detected and suppressed errors, rerun with: -v ==645== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==646== Memcheck, a memory error detector ==646== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==646== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==646== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildParent ==646== Parent PID: 645 ==646== ==654== Memcheck, a memory error detector ==654== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==654== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==654== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==654== Parent PID: 106 ==654== ==654== ==654== HEAP SUMMARY: ==654== in use at exit: 289,790 bytes in 4,109 blocks ==654== total heap usage: 196,808 allocs, 192,699 frees, 22,639,398 bytes allocated ==654== ==654== LEAK SUMMARY: ==654== definitely lost: 0 bytes in 0 blocks ==654== indirectly lost: 0 bytes in 0 blocks ==654== possibly lost: 52 bytes in 1 blocks ==654== still reachable: 127,385 bytes in 684 blocks ==654== of which reachable via heuristic: ==654== newarray : 4,712 bytes in 17 blocks ==654== suppressed: 162,353 bytes in 3,424 blocks ==654== Rerun with --leak-check=full to see details of leaked memory ==654== ==654== For counts of detected and suppressed errors, rerun with: -v ==654== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==655== Memcheck, a memory error detector ==655== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==655== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==655== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==655== Parent PID: 654 ==655== ==663== Memcheck, a memory error detector ==663== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==663== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==663== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsChildChangesParent ==663== Parent PID: 654 ==663== ==671== Memcheck, a memory error detector ==671== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==671== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==671== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==671== Parent PID: 106 ==671== ==671== ==671== HEAP SUMMARY: ==671== in use at exit: 289,786 bytes in 4,109 blocks ==671== total heap usage: 203,988 allocs, 199,879 frees, 23,261,377 bytes allocated ==671== ==671== LEAK SUMMARY: ==671== definitely lost: 0 bytes in 0 blocks ==671== indirectly lost: 0 bytes in 0 blocks ==671== possibly lost: 52 bytes in 1 blocks ==671== still reachable: 127,385 bytes in 684 blocks ==671== of which reachable via heuristic: ==671== newarray : 4,712 bytes in 17 blocks ==671== suppressed: 162,349 bytes in 3,424 blocks ==671== Rerun with --leak-check=full to see details of leaked memory ==671== ==671== For counts of detected and suppressed errors, rerun with: -v ==671== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==672== Memcheck, a memory error detector ==672== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==672== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==672== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==672== Parent PID: 671 ==672== ==680== Memcheck, a memory error detector ==680== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==680== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==680== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveParentFirst ==680== Parent PID: 671 ==680== ==688== Memcheck, a memory error detector ==688== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==688== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==688== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==688== Parent PID: 106 ==688== ==688== ==688== HEAP SUMMARY: ==688== in use at exit: 289,790 bytes in 4,109 blocks ==688== total heap usage: 211,525 allocs, 207,416 frees, 23,940,078 bytes allocated ==688== ==688== LEAK SUMMARY: ==688== definitely lost: 0 bytes in 0 blocks ==688== indirectly lost: 0 bytes in 0 blocks ==688== possibly lost: 52 bytes in 1 blocks ==688== still reachable: 127,385 bytes in 684 blocks ==688== of which reachable via heuristic: ==688== newarray : 4,712 bytes in 17 blocks ==688== suppressed: 162,353 bytes in 3,424 blocks ==688== Rerun with --leak-check=full to see details of leaked memory ==688== ==688== For counts of detected and suppressed errors, rerun with: -v ==688== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==689== Memcheck, a memory error detector ==689== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==689== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==689== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==689== Parent PID: 688 ==689== ==697== Memcheck, a memory error detector ==697== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==697== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==697== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsRemoveNormal ==697== Parent PID: 688 ==697== ==705== Memcheck, a memory error detector ==705== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==705== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==705== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==705== Parent PID: 106 ==705== ==705== ==705== HEAP SUMMARY: ==705== in use at exit: 289,790 bytes in 4,109 blocks ==705== total heap usage: 189,210 allocs, 185,101 frees, 21,923,152 bytes allocated ==705== ==705== LEAK SUMMARY: ==705== definitely lost: 0 bytes in 0 blocks ==705== indirectly lost: 0 bytes in 0 blocks ==705== possibly lost: 52 bytes in 1 blocks ==705== still reachable: 127,385 bytes in 684 blocks ==705== of which reachable via heuristic: ==705== newarray : 4,712 bytes in 17 blocks ==705== suppressed: 162,353 bytes in 3,424 blocks ==705== Rerun with --leak-check=full to see details of leaked memory ==705== ==705== For counts of detected and suppressed errors, rerun with: -v ==705== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==706== Memcheck, a memory error detector ==706== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==706== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==706== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==706== Parent PID: 705 ==706== ==714== Memcheck, a memory error detector ==714== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==714== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==714== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsParentUpdate ==714== Parent PID: 705 ==714== ==722== Memcheck, a memory error detector ==722== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==722== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==722== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==722== Parent PID: 106 ==722== ==722== ==722== HEAP SUMMARY: ==722== in use at exit: 289,790 bytes in 4,109 blocks ==722== total heap usage: 189,176 allocs, 185,067 frees, 21,918,155 bytes allocated ==722== ==722== LEAK SUMMARY: ==722== definitely lost: 0 bytes in 0 blocks ==722== indirectly lost: 0 bytes in 0 blocks ==722== possibly lost: 52 bytes in 1 blocks ==722== still reachable: 127,385 bytes in 684 blocks ==722== of which reachable via heuristic: ==722== newarray : 4,712 bytes in 17 blocks ==722== suppressed: 162,353 bytes in 3,424 blocks ==722== Rerun with --leak-check=full to see details of leaked memory ==722== ==722== For counts of detected and suppressed errors, rerun with: -v ==722== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==723== Memcheck, a memory error detector ==723== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==723== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==723== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==723== Parent PID: 722 ==723== ==731== Memcheck, a memory error detector ==731== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==731== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==731== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsUpdateChild ==731== Parent PID: 722 ==731== ==739== Memcheck, a memory error detector ==739== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==739== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==739== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==739== Parent PID: 106 ==739== ==739== ==739== HEAP SUMMARY: ==739== in use at exit: 289,794 bytes in 4,109 blocks ==739== total heap usage: 211,707 allocs, 207,598 frees, 24,002,183 bytes allocated ==739== ==739== LEAK SUMMARY: ==739== definitely lost: 0 bytes in 0 blocks ==739== indirectly lost: 0 bytes in 0 blocks ==739== possibly lost: 52 bytes in 1 blocks ==739== still reachable: 127,385 bytes in 684 blocks ==739== of which reachable via heuristic: ==739== newarray : 4,712 bytes in 17 blocks ==739== suppressed: 162,357 bytes in 3,424 blocks ==739== Rerun with --leak-check=full to see details of leaked memory ==739== ==739== For counts of detected and suppressed errors, rerun with: -v ==739== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==740== Memcheck, a memory error detector ==740== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==740== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==740== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==740== Parent PID: 739 ==740== ==748== Memcheck, a memory error detector ==748== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==748== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==748== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateChild ==748== Parent PID: 739 ==748== ==756== Memcheck, a memory error detector ==756== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==756== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==756== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==756== Parent PID: 106 ==756== ==756== ==756== HEAP SUMMARY: ==756== in use at exit: 289,790 bytes in 4,109 blocks ==756== total heap usage: 211,673 allocs, 207,564 frees, 23,997,594 bytes allocated ==756== ==756== LEAK SUMMARY: ==756== definitely lost: 0 bytes in 0 blocks ==756== indirectly lost: 0 bytes in 0 blocks ==756== possibly lost: 52 bytes in 1 blocks ==756== still reachable: 127,385 bytes in 684 blocks ==756== of which reachable via heuristic: ==756== newarray : 4,712 bytes in 17 blocks ==756== suppressed: 162,353 bytes in 3,424 blocks ==756== Rerun with --leak-check=full to see details of leaked memory ==756== ==756== For counts of detected and suppressed errors, rerun with: -v ==756== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==757== Memcheck, a memory error detector ==757== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==757== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==757== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==757== Parent PID: 756 ==757== ==765== Memcheck, a memory error detector ==765== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==765== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==765== Command: ./client-test Client::Source::file_event::LinkedItemsNoTZ::testLinkedItemsInsertBothUpdateParent ==765== Parent PID: 756 ==765== valgrindcheck: ./client-test Client::Source::file_event: final result 0 wrappercheck-95 line 100: RET=0 wrappercheck-95 line 101: set -e wrappercheck-95 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-95 line 108: kill -INT -97 wrappercheck-95 line 108: kill -TERM -97 wrappercheck-95 line 108: kill -TERM 97 wrappercheck-95 line 110: KILL_PID=2562 wrappercheck-95 line 115: set +e wrappercheck-95 line 116: wait 97 wrappercheck-95 line 117: SUBRET=143 wrappercheck-95 line 118: case $SUBRET in wrappercheck-95 line 118: SUBRET=0 wrappercheck-95 line 120: SUBRET=0 wrappercheck-95 line 121: '[' 2562 ']' wwrappercheck-95 line 122: LC_ALL=C wwrappercheck-95 line 122: kill -KILL 2562 wrappercheck-95 line 122: msg= wrappercheck-95 line 123: echo '' wrappercheck-95 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2562 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-95 line 127: echo '' wrappercheck-95 line 129: wait 2562 wrappercheck-95 line 131: set -e wrappercheck-95 line 132: '[' 0 = 0 ']' wrappercheck-95 line 133: RET=0 wrappercheck-95 line 136: exit 0 wrappercheck-75 line 100: RET=0 wrappercheck-75 line 101: set -e wrappercheck-75 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-75 line 108: kill -INT -77 wrappercheck-75 line 108: kill -TERM -77 wrappercheck-75 line 108: kill -TERM 77 wrappercheck-75 line 110: KILL_PID=2567 wrappercheck-75 line 115: set +e wrappercheck-75 line 116: wait 77 wrappercheck-75 line 109: perl -e 'sleep(60); kill(9, -77);' wrappercheck-75 line 117: SUBRET=143 wrappercheck-75 line 118: case $SUBRET in wrappercheck-75 line 118: SUBRET=0 wrappercheck-75 line 120: SUBRET=0 wrappercheck-75 line 121: '[' 2567 ']' wwrappercheck-75 line 122: LC_ALL=C wwrappercheck-75 line 122: kill -KILL 2567 wrappercheck-75 line 122: msg= wrappercheck-75 line 123: echo '' wrappercheck-75 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2567 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-75 line 127: echo '' wrappercheck-75 line 129: wait 2567 wrappercheck-75 line 131: set -e wrappercheck-75 line 132: '[' 0 = 0 ']' wrappercheck-75 line 133: RET=0 wrappercheck-75 line 136: exit 0 wrappercheck-25 line 100: RET=0 wrappercheck-25 line 101: set -e wrappercheck-25 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-25 line 108: kill -INT -30 wrappercheck-25 line 108: kill -TERM -30 wrappercheck-25 line 108: kill -TERM 30 wrappercheck-25 line 110: KILL_PID=2572 wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 30 wrappercheck-25 line 117: SUBRET=143 wrappercheck-25 line 118: case $SUBRET in wrappercheck-25 line 118: SUBRET=0 wrappercheck-25 line 120: SUBRET=0 wrappercheck-25 line 121: '[' 2572 ']' wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -30);' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 2572 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: grep -q 'No such process' wrappercheck-25 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2572 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 2572 wrappercheck-25 line 131: set -e wrappercheck-25 line 132: '[' 0 = 0 ']' wrappercheck-25 line 133: RET=0 wrappercheck-25 line 136: exit 0 wrappercheck-19 line 100: RET=0 wrappercheck-19 line 101: set -e wrappercheck-19 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-19 line 108: kill -INT -22 wrappercheck-19 line 108: kill -TERM -22 wrappercheck-19 line 108: kill -TERM 22 wrappercheck-19 line 110: KILL_PID=2577 wrappercheck-19 line 115: set +e wrappercheck-19 line 116: wait 22 wrappercheck-19 line 117: SUBRET=143 wrappercheck-19 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-19 line 118: case $SUBRET in wrappercheck-19 line 118: SUBRET=0 wrappercheck-19 line 120: SUBRET=0 wrappercheck-19 line 121: '[' 2577 ']' wwrappercheck-19 line 122: LC_ALL=C wwrappercheck-19 line 122: kill -KILL 2577 wrappercheck-19 line 122: msg= wrappercheck-19 line 123: grep -q 'No such process' wrappercheck-19 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2577 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-19 line 127: echo '' wrappercheck-19 line 129: wait 2577 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.TxuRMkuxO4 Fri Jan 5 15:50:53 2018 UTC (+ 1184.3s / 1184.9s) === cleaning up ===