runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 1.6s / 1633.5s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/.config/akonadi/akonadiserverrc: [%General] Driver=QSQLITE3 [QSQLITE3] Name=/data/runtests/work/testing-amd64/home/unittests/data/akonadi/akonadi.db [Debug] Tracer=null runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 0.1s / 1633.6s) target /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/.local/share/akonadi/akonadi.db: PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0); INSERT INTO "SchemaVersionTable" VALUES(20); CREATE TABLE ResourceTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL, isVirtual BOOL DEFAULT false); INSERT INTO "ResourceTable" VALUES(1,'akonadi_search_resource',1); INSERT INTO "ResourceTable" VALUES(2,'akonadi_ical_resource_0','false'); INSERT INTO "ResourceTable" VALUES(3,'akonadi_ical_resource_1','false'); INSERT INTO "ResourceTable" VALUES(4,'akonadi_ical_resource_2','false'); INSERT INTO "ResourceTable" VALUES(5,'akonadi_contacts_resource_0','false'); INSERT INTO "ResourceTable" VALUES(6,'akonadi_contacts_resource_1','false'); INSERT INTO "ResourceTable" VALUES(7,'akonadi_contacts_resource_2','false'); INSERT INTO "ResourceTable" VALUES(8,'akonadi_notes_resource_0','false'); INSERT INTO "ResourceTable" VALUES(9,'akonadi_notes_resource_1','false'); INSERT INTO "ResourceTable" VALUES(10,'akonadi_notes_resource_2','false'); CREATE TABLE CollectionTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, remoteId TEXT, remoteRevision TEXT, name TEXT NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts TEXT, queryString TEXT, queryLanguage TEXT); INSERT INTO "CollectionTable" VALUES(1,NULL,NULL,'Search',NULL,1,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(2,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/ical_resource_0.ics','','akonadi_ical_resource_0',NULL,2,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(3,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/ical_resource_1.ics','','akonadi_ical_resource_1',NULL,3,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(4,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/ical_resource_2.ics','','akonadi_ical_resource_2',NULL,4,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(5,'/data/runtests/work/testing-amd64/home/unittests/data/akonadi/contacts_0','','Personal_Contacts_0',NULL,5,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(6,'/data/runtests/work/testing-amd64/home/unittests/data/akonadi/contacts_1','','Personal_Contacts_1',NULL,6,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(8,'/data/runtests/work/testing-amd64/home/unittests/data/akonadi/contacts_2','','Personal_Contacts_2',NULL,7,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(9,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_0',NULL,8,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(10,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/notes_resource_0.ics','','akonadi_notes_resource_1',NULL,9,'true','true',-1,-1,'false',NULL,NULL,NULL); INSERT INTO "CollectionTable" VALUES(11,'file:///data/runtests/work/testing-amd64/home/unittests/data/akonadi/notes_resource_1.ics','','akonadi_notes_resource_2',NULL,10,'true','true',-1,-1,'false',NULL,NULL,NULL); CREATE TABLE MimeTypeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "MimeTypeTable" VALUES(1,'application/octet-stream'); INSERT INTO "MimeTypeTable" VALUES(2,'message/rfc822'); INSERT INTO "MimeTypeTable" VALUES(3,'text/calendar'); INSERT INTO "MimeTypeTable" VALUES(4,'text/vcard'); INSERT INTO "MimeTypeTable" VALUES(5,'inode/directory'); INSERT INTO "MimeTypeTable" VALUES(6,'application/x-vnd.akonadi.calendar.event'); INSERT INTO "MimeTypeTable" VALUES(7,'application/x-vnd.akonadi.calendar.todo'); INSERT INTO "MimeTypeTable" VALUES(8,'application/x-vnd.akonadi.calendar.journal'); INSERT INTO "MimeTypeTable" VALUES(9,'application/x-vnd.akonadi.calendar.freebusy'); INSERT INTO "MimeTypeTable" VALUES(10,'text/directory'); INSERT INTO "MimeTypeTable" VALUES(11,'application/x-vnd.kde.contactgroup'); INSERT INTO "MimeTypeTable" VALUES(12,'application/x-vnd.kde.notes'); CREATE TABLE PimItemTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, rev INTEGER NOT NULL DEFAULT 0, remoteId TEXT, remoteRevision TEXT, collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0); CREATE TABLE FlagTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT UNIQUE NOT NULL); INSERT INTO "FlagTable" VALUES(1,'important'); INSERT INTO "FlagTable" VALUES(2,'has_attachment'); INSERT INTO "FlagTable" VALUES(3,'spam'); INSERT INTO "FlagTable" VALUES(4,'\ANSWERED'); INSERT INTO "FlagTable" VALUES(5,'\FLAGGED'); INSERT INTO "FlagTable" VALUES(6,'\DELETED'); INSERT INTO "FlagTable" VALUES(7,'\SEEN'); INSERT INTO "FlagTable" VALUES(8,'\DRAFT'); CREATE TABLE PartTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, pimItemId BIGINT NOT NULL, name TEXT NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false); CREATE TABLE CollectionAttributeTable (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB); INSERT INTO "CollectionAttributeTable" VALUES(1,2,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(2,2,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(3,3,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F302E6963732028436C6F6E65292220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(4,3,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(5,4,X'454E54495459444953504C4159',X'28226963616C5F7265736F757263655F322E6963732220226F66666963652D63616C656E6461722220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(6,4,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(7,5,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(8,6,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(10,8,X'416363657373526967687473',X'61'); INSERT INTO "CollectionAttributeTable" VALUES(11,9,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(12,9,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(13,10,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(14,10,X'416363657373526967687473',X'77636457'); INSERT INTO "CollectionAttributeTable" VALUES(15,11,X'454E54495459444953504C4159',X'28226E6F7465735F7265736F757263655F302E6963732028436C6F6E65292028436C6F6E65292220226B6E6F7465732220222220282929'); INSERT INTO "CollectionAttributeTable" VALUES(16,11,X'416363657373526967687473',X'77636457'); CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id)); CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id)); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(2,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(3,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,6); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,9); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,8); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,7); INSERT INTO "CollectionMimeTypeRelation" VALUES(4,3); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(5,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(6,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,11); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,5); INSERT INTO "CollectionMimeTypeRelation" VALUES(8,10); INSERT INTO "CollectionMimeTypeRelation" VALUES(9,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(10,12); INSERT INTO "CollectionMimeTypeRelation" VALUES(11,12); CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id)); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('ResourceTable',10); INSERT INTO "sqlite_sequence" VALUES('CollectionTable',11); INSERT INTO "sqlite_sequence" VALUES('MimeTypeTable',12); INSERT INTO "sqlite_sequence" VALUES('FlagTable',8); INSERT INTO "sqlite_sequence" VALUES('CollectionAttributeTable',16); CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name); CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId); CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name); CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name); CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId); COMMIT; old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/.cache new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/cache old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/.config new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/config old /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/.local/share new /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/home/unittests/data runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) === starting unittests === runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) result dir: /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/10-unittests, /proc/self/cwd -> /data/schroot/2018-01-05-07-10-all-testing-amd64/home/nightly/results/2018-01-05-07-10_all/testing-amd64/10-unittests runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) changing into directory /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/unittests (= /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/unittests) runtests.py-17075 Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 1633.6s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/unittests; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/unittests' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/unittests/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/unittests/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/unittests/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r unittests -- env CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale schroot -d /data/runtests/work/testing-amd64/tests/unittests -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution ) Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['unittests'] === Fri Jan 5 15:56:20 2018 UTC (+ 0.1s / 0.1s) property changed: status = acquired Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.1s) using jobserver Fri Jan 5 15:56:20 2018 UTC (+ 0.0s / 0.1s) === allocating 1 job slot(s) === Fri Jan 5 16:03:48 2018 UTC (+ 447.7s / 447.7s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution” + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-15 line 16: PIDS= wrappercheck-15 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-15 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-15 line 21: DAEMON_LOG= wrappercheck-15 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-15 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-15 line 25: declare -a BACKGROUND wrappercheck-15 line 26: declare -a ENV wrappercheck-15 line 28: '[' 32 -gt 1 ']' wrappercheck-15 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 31: shift wrappercheck-15 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-15 line 53: shift wrappercheck-15 line 28: '[' 30 -gt 1 ']' wrappercheck-15 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 29: case "$1" in wrappercheck-15 line 50: break wrappercheck-15 line 56: '[' 30 -gt 1 ']' wrappercheck-15 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 29 -gt 1 ']' wrappercheck-15 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-15 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-15 line 58: shift wrappercheck-15 line 56: '[' 28 -gt 1 ']' wrappercheck-15 line 56: '[' -- '!=' -- ']' wrappercheck-15 line 60: shift wrappercheck-15 line 62: '[' dbus-monitor.log ']' wrappercheck-15 line 62: '[' '' ']' gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.YvfgnJ85uY/keyring/control: No such file or directory wrappercheck-15 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-15 line 72: BACKGROUND_PID=18 wrappercheck-15 line 73: PIDS+=18 wrappercheck-15 line 75: '[' dbus-monitor.log ']' wrappercheck-15 line 70: set -x wrappercheck-15 line 75: '[' '' ']' wrappercheck-15 line 70: exec wrappercheck-15 line 84: '[' '' ']' wrappercheck-15 line 93: kill -0 18 wrappercheck-15 line 94: set +e wrappercheck-15 line 95: '[' '' ']' wrappercheck-15 line 99: set -x wrappercheck-15 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-22 line 16: PIDS= wrappercheck-22 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-22 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-22 line 21: DAEMON_LOG= wrappercheck-22 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-22 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-22 line 25: declare -a BACKGROUND wrappercheck-22 line 26: declare -a ENV wrappercheck-22 line 28: '[' 26 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 31: shift wrappercheck-22 line 32: DAEMON_LOG=evolution-source-registry.log wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 24 -gt 1 ']' wrappercheck-22 line 28: '[' --daemon-sleep '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 43: shift wrappercheck-22 line 44: DAEMON_SLEEP=5 wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 22 -gt 1 ']' wrappercheck-22 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 35: shift wrappercheck-22 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.Sources wrappercheck-22 line 53: shift wrappercheck-22 line 28: '[' 20 -gt 1 ']' wrappercheck-22 line 28: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 29: case "$1" in wrappercheck-22 line 50: break wrappercheck-22 line 56: '[' 20 -gt 1 ']' wrappercheck-22 line 56: '[' /usr/lib/evolution/evolution-source-registry '!=' -- ']' wrappercheck-22 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-source-registry wrappercheck-22 line 58: shift wrappercheck-22 line 56: '[' 19 -gt 1 ']' wrappercheck-22 line 56: '[' -- '!=' -- ']' wrappercheck-22 line 60: shift wrappercheck-22 line 62: '[' evolution-source-registry.log ']' wrappercheck-22 line 62: '[' '' ']' wrappercheck-22 line 66: set +x *** starting /usr/lib/evolution/evolution-source-registry as background daemon, output to evolution-source-registry.log wrappercheck-22 line 72: BACKGROUND_PID=27 wrappercheck-22 line 73: PIDS+=27 wrappercheck-22 line 75: '[' evolution-source-registry.log ']' wrappercheck-22 line 75: '[' '' ']' wrappercheck-22 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-22 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-22 line 70: set -x wrappercheck-22 line 70: exec wrappercheck-22 line 93: kill -0 27 wrappercheck-22 line 94: set +e wrappercheck-22 line 95: '[' 5 ']' wrappercheck-22 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-22 line 97: sleep 5 wrappercheck-22 line 99: set -x wrappercheck-22 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-81 line 16: PIDS= wrappercheck-81 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-81 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-81 line 21: DAEMON_LOG= wrappercheck-81 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-81 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-81 line 25: declare -a BACKGROUND wrappercheck-81 line 26: declare -a ENV wrappercheck-81 line 28: '[' 17 -gt 1 ']' wrappercheck-81 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-81 line 29: case "$1" in wrappercheck-81 line 31: shift wrappercheck-81 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-81 line 53: shift wrappercheck-81 line 28: '[' 15 -gt 1 ']' wrappercheck-81 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-81 line 29: case "$1" in wrappercheck-81 line 35: shift wrappercheck-81 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-81 line 53: shift wrappercheck-81 line 28: '[' 13 -gt 1 ']' wrappercheck-81 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-81 line 29: case "$1" in wrappercheck-81 line 50: break wrappercheck-81 line 56: '[' 13 -gt 1 ']' wrappercheck-81 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-81 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-81 line 58: shift wrappercheck-81 line 56: '[' 12 -gt 1 ']' wrappercheck-81 line 56: '[' --keep-running '!=' -- ']' wrappercheck-81 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-81 line 58: shift wrappercheck-81 line 56: '[' 11 -gt 1 ']' wrappercheck-81 line 56: '[' -- '!=' -- ']' wrappercheck-81 line 60: shift wrappercheck-81 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-81 line 62: '[' '' ']' wrappercheck-81 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-81 line 72: BACKGROUND_PID=83 wrappercheck-81 line 73: PIDS+=83 wrappercheck-81 line 70: set -x wrappercheck-81 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-81 line 75: '[' '' ']' wrappercheck-81 line 70: exec wrappercheck-81 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-81 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-81 line 93: kill -0 83 wrappercheck-81 line 94: set +e wrappercheck-81 line 95: '[' '' ']' wrappercheck-81 line 99: set -x wrappercheck-81 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-101 line 16: PIDS= wrappercheck-101 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-101 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-101 line 21: DAEMON_LOG= wrappercheck-101 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-101 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-101 line 25: declare -a BACKGROUND wrappercheck-101 line 26: declare -a ENV wrappercheck-101 line 28: '[' 9 -gt 1 ']' wrappercheck-101 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-101 line 29: case "$1" in wrappercheck-101 line 31: shift wrappercheck-101 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-101 line 53: shift wrappercheck-101 line 28: '[' 7 -gt 1 ']' wrappercheck-101 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-101 line 29: case "$1" in wrappercheck-101 line 50: break wrappercheck-101 line 56: '[' 7 -gt 1 ']' wrappercheck-101 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-101 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-101 line 58: shift wrappercheck-101 line 56: '[' 6 -gt 1 ']' wrappercheck-101 line 56: '[' --keep-running '!=' -- ']' wrappercheck-101 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-101 line 58: shift wrappercheck-101 line 56: '[' 5 -gt 1 ']' wrappercheck-101 line 56: '[' -- '!=' -- ']' wrappercheck-101 line 60: shift wrappercheck-101 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-101 line 62: '[' '' ']' wrappercheck-101 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-101 line 72: BACKGROUND_PID=103 wrappercheck-101 line 73: PIDS+=103 wrappercheck-101 line 70: set -x wrappercheck-101 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-101 line 75: '[' '' ']' wrappercheck-101 line 70: exec wrappercheck-101 line 84: '[' '' ']' wrappercheck-101 line 93: kill -0 103 wrappercheck-101 line 94: set +e wrappercheck-101 line 95: '[' '' ']' wrappercheck-101 line 99: set -x wrappercheck-101 line 99: env /home/nightly/testing/setup-syncevolution.sh unittests ./syncevolution + case $TEST in + case $TEST in + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ sed -e 's/=.*//' ++ echo evolution-contacts=eds_contact + backend=evolution-contacts ++ echo evolution-contacts=eds_contact ++ sed -e 's/.*=//' + name=eds_contact + for i in 1 2 + databasename=Test_eds_contact_1 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_1 Test_eds_contact_1 (1303826927.6946.21@mob-sync2) + echo evolution-contacts: Test_eds_contact_1 exists evolution-contacts: Test_eds_contact_1 exists + for i in 1 2 + databasename=Test_eds_contact_2 + ./syncevolution --daemon=no --print-databases backend=evolution-contacts + grep Test_eds_contact_2 Test_eds_contact_2 (1303827279.6946.22@mob-sync2) + echo evolution-contacts: Test_eds_contact_2 exists evolution-contacts: Test_eds_contact_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-calendar=eds_event ++ sed -e 's/=.*//' + backend=evolution-calendar ++ echo evolution-calendar=eds_event ++ sed -e 's/.*=//' + name=eds_event + for i in 1 2 + databasename=Test_eds_event_1 + ./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 ++ echo evolution-tasks=eds_task ++ sed -e 's/=.*//' + backend=evolution-tasks ++ echo evolution-tasks=eds_task ++ sed -e 's/.*=//' + name=eds_task + for i in 1 2 + databasename=Test_eds_task_1 + grep Test_eds_task_1 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_1 (1303829357.6946.35@mob-sync2) + echo evolution-tasks: Test_eds_task_1 exists evolution-tasks: Test_eds_task_1 exists + for i in 1 2 + databasename=Test_eds_task_2 + grep Test_eds_task_2 + ./syncevolution --daemon=no --print-databases backend=evolution-tasks Test_eds_task_2 (1303829493.6946.36@mob-sync2) + echo evolution-tasks: Test_eds_task_2 exists evolution-tasks: Test_eds_task_2 exists + for i in evolution-contacts=eds_contact evolution-calendar=eds_event evolution-tasks=eds_task evolution-memos=eds_memo ++ echo evolution-memos=eds_memo ++ sed -e 's/=.*//' + backend=evolution-memos ++ echo evolution-memos=eds_memo ++ sed -e 's/.*=//' + name=eds_memo + for i in 1 2 + databasename=Test_eds_memo_1 + grep Test_eds_memo_1 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_1 (1303828148.6946.31@mob-sync2) + echo evolution-memos: Test_eds_memo_1 exists evolution-memos: Test_eds_memo_1 exists + for i in 1 2 + databasename=Test_eds_memo_2 + grep Test_eds_memo_2 + ./syncevolution --daemon=no --print-databases backend=evolution-memos Test_eds_memo_2 (1303828749.6946.32@mob-sync2) + echo evolution-memos: Test_eds_memo_2 exists evolution-memos: Test_eds_memo_2 exists wrappercheck-101 line 100: RET=0 wrappercheck-101 line 101: set -e wrappercheck-101 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-101 line 108: kill -INT -103 wrappercheck-101 line 108: kill -TERM -103 wrappercheck-101 line 108: kill -TERM 103 wrappercheck-101 line 109: perl -e 'sleep(60); kill(9, -103);' wrappercheck-101 line 110: KILL_PID=187 wrappercheck-101 line 115: set +e wrappercheck-101 line 116: wait 103 wrappercheck-101 line 117: SUBRET=143 wrappercheck-101 line 118: case $SUBRET in wrappercheck-101 line 118: SUBRET=0 wrappercheck-101 line 120: SUBRET=0 wrappercheck-101 line 121: '[' 187 ']' wwrappercheck-101 line 122: LC_ALL=C wwrappercheck-101 line 122: kill -KILL 187 wrappercheck-101 line 122: msg= wrappercheck-101 line 123: echo '' wrappercheck-101 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 187 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-101 line 127: echo '' wrappercheck-101 line 129: wait 187 wrappercheck-101 line 131: set -e wrappercheck-101 line 132: '[' 0 = 0 ']' wrappercheck-101 line 133: RET=0 wrappercheck-101 line 136: exit 0 wrappercheck-81 line 100: RET=0 wrappercheck-81 line 101: set -e wrappercheck-81 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-81 line 108: kill -INT -83 wrappercheck-81 line 108: kill -TERM -83 wrappercheck-81 line 108: kill -TERM 83 wrappercheck-81 line 110: KILL_PID=192 wrappercheck-81 line 109: perl -e 'sleep(60); kill(9, -83);' wrappercheck-81 line 115: set +e wrappercheck-81 line 116: wait 83 wrappercheck-81 line 117: SUBRET=143 wrappercheck-81 line 118: case $SUBRET in wrappercheck-81 line 118: SUBRET=0 wrappercheck-81 line 120: SUBRET=0 wrappercheck-81 line 121: '[' 192 ']' wwrappercheck-81 line 122: LC_ALL=C wwrappercheck-81 line 122: kill -KILL 192 wrappercheck-81 line 122: msg= wrappercheck-81 line 123: grep -q 'No such process' wrappercheck-81 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 192 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-81 line 127: echo '' wrappercheck-81 line 129: wait 192 wrappercheck-81 line 131: set -e wrappercheck-81 line 132: '[' 0 = 0 ']' wrappercheck-81 line 133: RET=0 wrappercheck-81 line 136: exit 0 wrappercheck-22 line 100: RET=0 wrappercheck-22 line 101: set -e wrappercheck-22 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-source-registry wrappercheck-22 line 108: kill -INT -27 wrappercheck-22 line 108: kill -TERM -27 wrappercheck-22 line 108: kill -TERM 27 wrappercheck-22 line 110: KILL_PID=197 wrappercheck-22 line 115: set +e wrappercheck-22 line 116: wait 27 wrappercheck-22 line 109: perl -e 'sleep(60); kill(9, -27);' wrappercheck-22 line 117: SUBRET=143 wrappercheck-22 line 118: case $SUBRET in wrappercheck-22 line 118: SUBRET=0 wrappercheck-22 line 120: SUBRET=0 wrappercheck-22 line 121: '[' 197 ']' wwrappercheck-22 line 122: LC_ALL=C wwrappercheck-22 line 122: kill -KILL 197 wrappercheck-22 line 122: msg= wrappercheck-22 line 123: echo '' wrappercheck-22 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 197 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-22 line 127: echo '' wrappercheck-22 line 129: wait 197 wrappercheck-22 line 131: set -e wrappercheck-22 line 132: '[' 0 = 0 ']' wrappercheck-22 line 133: RET=0 wrappercheck-22 line 136: exit 0 wrappercheck-15 line 100: RET=0 wrappercheck-15 line 101: set -e wrappercheck-15 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-15 line 108: kill -INT -18 wrappercheck-15 line 108: kill -TERM -18 wrappercheck-15 line 108: kill -TERM 18 wrappercheck-15 line 110: KILL_PID=202 wrappercheck-15 line 115: set +e wrappercheck-15 line 116: wait 18 wrappercheck-15 line 109: perl -e 'sleep(60); kill(9, -18);' wrappercheck-15 line 117: SUBRET=143 wrappercheck-15 line 118: case $SUBRET in wrappercheck-15 line 118: SUBRET=0 wrappercheck-15 line 120: SUBRET=0 wrappercheck-15 line 121: '[' 202 ']' wwrappercheck-15 line 122: LC_ALL=C wwrappercheck-15 line 122: kill -KILL 202 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: 202 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-15 line 127: echo '' wrappercheck-15 line 129: wait 202 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.YvfgnJ85uY Fri Jan 5 16:03:56 2018 UTC (+ 7.8s / 455.5s) === cleaning up === runtests.py-17075 Fri Jan 5 16:03:56 2018 UTC (+ 455.6s / 2089.2s) *** ( cd /data/schroot/2018-01-05-07-10-all-testing-amd64/data/runtests/work/testing-amd64/tests/unittests; export 'PATH=/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin' 'HOME=/data/runtests/work/testing-amd64/home/unittests' 'XDG_CONFIG_HOME=/data/runtests/work/testing-amd64/home/unittests/config' 'XDG_DATA_HOME=/data/runtests/work/testing-amd64/home/unittests/data' 'XDG_CACHE_HOME=/data/runtests/work/testing-amd64/home/unittests/cache'; unset LD_LIBRARY_PATH; /data/runtests/work/sources/syncevolution/test/resources.py -j 1 -r unittests -- env VALGRIND_LEAK_CHECK_SKIP=akonadi_control,.bin.sh.-c. VALGRIND_LEAK_CHECK_ONLY_FIRST=1 'VALGRIND_ARGS=--show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp' VALGRIND_LOG= http_proxy= CLIENT_TEST_SERVER=unittests CLIENT_TEST_SOURCES= SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_FAILURES= CLIENT_TEST_SKIP= SYNCEVOLUTION_DATA_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution SYNCEVOLUTION_TEMPLATE_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/templates SYNCEVOLUTION_XML_CONFIG_DIR=/data/runtests/work/testing-amd64/install/usr/share/syncevolution/xml SYNCEVOLUTION_BACKEND_DIR=backends SYNCEVOLUTION_LOCALE_DIR=/data/runtests/work/testing-amd64/install/usr/share/locale CLIENT_TEST_LOG= CLIENT_TEST_EVOLUTION_PREFIX=Test_ schroot -d /data/runtests/work/testing-amd64/tests/unittests -r -p -c 2018-01-05-07-10-all-testing-amd64 -- env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:$PATH: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution ) Fri Jan 5 16:03:56 2018 UTC (+ 0.0s / 0.0s) === locking resource(s) ['unittests'] === Fri Jan 5 16:03:56 2018 UTC (+ 0.0s / 0.0s) property changed: status = acquired Fri Jan 5 16:03:56 2018 UTC (+ 0.0s / 0.0s) using jobserver Fri Jan 5 16:03:56 2018 UTC (+ 0.0s / 0.0s) === allocating 1 job slot(s) === Fri Jan 5 16:03:56 2018 UTC (+ 0.2s / 0.3s) === allocated 1 job slot(s) === W: line 4 [2018-01-05-07-10-all-release-eas-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-clang-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-xenial-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-testing-amd64] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-stretch-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-prebuilt-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-xenial-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-unstable] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-downstream-testing] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. W: line 4 [2018-01-05-07-10-all-release-eas-testing-i386] custom-session-purgeable: Configuration key name ‘custom-session-purgeable’ is not a permitted name. I: [2018-01-05-07-10-all-testing-amd64 chroot] Running command: “env PKG_CONFIG_PATH=/data/runtests/install/stable-amd64/libwbxml/lib/pkgconfig DBUS_SESSION_SH_SYSTEM_BUS=1 /unshare --pid --mount-proc --fork -- /data/runtests/work/sources/syncevolution/test/dbus-session.sh /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log dbus-monitor.log dbus-monitor interface=org.freedesktop.DBus -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution” gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used ** Message: couldn't access control socket: /tmp/tmp.TsdflvKy4c/keyring/control: No such file or directory + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-18 line 16: PIDS= wrappercheck-18 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-18 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-18 line 21: DAEMON_LOG= wrappercheck-18 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-18 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-18 line 25: declare -a BACKGROUND wrappercheck-18 line 26: declare -a ENV wrappercheck-18 line 28: '[' 34 -gt 1 ']' wrappercheck-18 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 31: shift wrappercheck-18 line 32: DAEMON_LOG=dbus-monitor.log wrappercheck-18 line 53: shift wrappercheck-18 line 28: '[' 32 -gt 1 ']' wrappercheck-18 line 28: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 29: case "$1" in wrappercheck-18 line 50: break wrappercheck-18 line 56: '[' 32 -gt 1 ']' wrappercheck-18 line 56: '[' dbus-monitor '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=dbus-monitor wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 31 -gt 1 ']' wrappercheck-18 line 56: '[' interface=org.freedesktop.DBus '!=' -- ']' wrappercheck-18 line 57: BACKGROUND[${#BACKGROUND[*]}]=interface=org.freedesktop.DBus wrappercheck-18 line 58: shift wrappercheck-18 line 56: '[' 30 -gt 1 ']' wrappercheck-18 line 56: '[' -- '!=' -- ']' wrappercheck-18 line 60: shift wrappercheck-18 line 62: '[' dbus-monitor.log ']' wrappercheck-18 line 62: '[' '' ']' wrappercheck-18 line 66: set +x *** starting dbus-monitor as background daemon, output to dbus-monitor.log wrappercheck-18 line 72: BACKGROUND_PID=22 wrappercheck-18 line 73: PIDS+=22 wrappercheck-18 line 75: '[' dbus-monitor.log ']' wrappercheck-18 line 75: '[' '' ']' wrappercheck-18 line 70: set -x wrappercheck-18 line 70: exec wrappercheck-18 line 84: '[' '' ']' wrappercheck-18 line 93: kill -0 22 wrappercheck-18 line 94: set +e wrappercheck-18 line 95: '[' '' ']' wrappercheck-18 line 99: set -x wrappercheck-18 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-source-registry.log --daemon-sleep 5 --wait-for-dbus-daemon org.gnome.evolution.dataserver.Sources /usr/lib/evolution/evolution-source-registry -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution + 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: '[' 28 -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: '[' 26 -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: '[' 24 -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: '[' 22 -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: '[' 22 -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: '[' 21 -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=29 wrappercheck-25 line 73: PIDS+=29 wrappercheck-25 line 75: '[' evolution-source-registry.log ']' wrappercheck-25 line 75: '[' '' ']' wrappercheck-25 line 70: set -x wrappercheck-25 line 84: '[' org.gnome.evolution.dataserver.Sources ']' wrappercheck-25 line 70: exec wrappercheck-25 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.Sources' wrappercheck-25 line 93: kill -0 29 wrappercheck-25 line 94: set +e wrappercheck-25 line 95: '[' 5 ']' wrappercheck-25 line 96: set +x *** 'sleep 5' for daemon to settle down wrappercheck-25 line 97: sleep 5 wrappercheck-25 line 99: set -x wrappercheck-25 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-addressbook-factory.log --wait-for-dbus-daemon org.gnome.evolution.dataserver.AddressBook /usr/lib/evolution/evolution-addressbook-factory --keep-running -- /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-82 line 16: PIDS= wrappercheck-82 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-82 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-82 line 21: DAEMON_LOG= wrappercheck-82 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-82 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-82 line 25: declare -a BACKGROUND wrappercheck-82 line 26: declare -a ENV wrappercheck-82 line 28: '[' 19 -gt 1 ']' wrappercheck-82 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 31: shift wrappercheck-82 line 32: DAEMON_LOG=evolution-addressbook-factory.log wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 17 -gt 1 ']' wrappercheck-82 line 28: '[' --wait-for-dbus-daemon '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 35: shift wrappercheck-82 line 36: WAIT_FOR_DBUS_DAEMON=org.gnome.evolution.dataserver.AddressBook wrappercheck-82 line 53: shift wrappercheck-82 line 28: '[' 15 -gt 1 ']' wrappercheck-82 line 28: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 29: case "$1" in wrappercheck-82 line 50: break wrappercheck-82 line 56: '[' 15 -gt 1 ']' wrappercheck-82 line 56: '[' /usr/lib/evolution/evolution-addressbook-factory '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 14 -gt 1 ']' wrappercheck-82 line 56: '[' --keep-running '!=' -- ']' wrappercheck-82 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-82 line 58: shift wrappercheck-82 line 56: '[' 13 -gt 1 ']' wrappercheck-82 line 56: '[' -- '!=' -- ']' wrappercheck-82 line 60: shift wrappercheck-82 line 62: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 62: '[' '' ']' wrappercheck-82 line 66: set +x *** starting /usr/lib/evolution/evolution-addressbook-factory as background daemon, output to evolution-addressbook-factory.log wrappercheck-82 line 72: BACKGROUND_PID=84 wrappercheck-82 line 73: PIDS+=84 wrappercheck-82 line 75: '[' evolution-addressbook-factory.log ']' wrappercheck-82 line 75: '[' '' ']' wrappercheck-82 line 70: set -x wrappercheck-82 line 70: exec wrappercheck-82 line 84: '[' org.gnome.evolution.dataserver.AddressBook ']' wrappercheck-82 line 85: set +x *** waiting for daemon to connect to D-Bus as 'org.gnome.evolution.dataserver.AddressBook' wrappercheck-82 line 93: kill -0 84 wrappercheck-82 line 94: set +e wrappercheck-82 line 95: '[' '' ']' wrappercheck-82 line 99: set -x wrappercheck-82 line 99: /data/runtests/work/sources/syncevolution/test/wrappercheck.sh --daemon-log evolution-calendar-factory.log /usr/lib/evolution/evolution-calendar-factory --keep-running -- env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution + PS4='wrappercheck-$$ line ${LINENO}: ' wrappercheck-102 line 16: PIDS= wrappercheck-102 line 18: trap '[ "" ] && kill -TERM ' TERM wrappercheck-102 line 19: trap '[ "" ] && kill -INT ' INT wrappercheck-102 line 21: DAEMON_LOG= wrappercheck-102 line 22: WAIT_FOR_DAEMON_OUTPUT= wrappercheck-102 line 23: WAIT_FOR_DBUS_DAEMON= wrappercheck-102 line 25: declare -a BACKGROUND wrappercheck-102 line 26: declare -a ENV wrappercheck-102 line 28: '[' 11 -gt 1 ']' wrappercheck-102 line 28: '[' --daemon-log '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 31: shift wrappercheck-102 line 32: DAEMON_LOG=evolution-calendar-factory.log wrappercheck-102 line 53: shift wrappercheck-102 line 28: '[' 9 -gt 1 ']' wrappercheck-102 line 28: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 29: case "$1" in wrappercheck-102 line 50: break wrappercheck-102 line 56: '[' 9 -gt 1 ']' wrappercheck-102 line 56: '[' /usr/lib/evolution/evolution-calendar-factory '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=/usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 8 -gt 1 ']' wrappercheck-102 line 56: '[' --keep-running '!=' -- ']' wrappercheck-102 line 57: BACKGROUND[${#BACKGROUND[*]}]=--keep-running wrappercheck-102 line 58: shift wrappercheck-102 line 56: '[' 7 -gt 1 ']' wrappercheck-102 line 56: '[' -- '!=' -- ']' wrappercheck-102 line 60: shift wrappercheck-102 line 62: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 62: '[' '' ']' wrappercheck-102 line 66: set +x *** starting /usr/lib/evolution/evolution-calendar-factory as background daemon, output to evolution-calendar-factory.log wrappercheck-102 line 72: BACKGROUND_PID=104 wrappercheck-102 line 73: PIDS+=104 wrappercheck-102 line 75: '[' evolution-calendar-factory.log ']' wrappercheck-102 line 75: '[' '' ']' wrappercheck-102 line 84: '[' '' ']' wrappercheck-102 line 93: kill -0 104 wrappercheck-102 line 94: set +e wrappercheck-102 line 95: '[' '' ']' wrappercheck-102 line 99: set -x wrappercheck-102 line 99: env LD_LIBRARY_PATH=build-synthesis/src/.libs:.libs:syncevo/.libs:gdbus/.libs:gdbusxx/.libs: PATH=backends/webdav:.:/home/nightly/bin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/testing:/usr/sbin:/sbin:/home/nightly/bin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin: /data/runtests/work/sources/syncevolution/test/valgrindcheck.sh ./client-test SyncEvolution wrappercheck-102 line 70: set -x wrappercheck-102 line 70: exec *** starting ./client-test under valgrind, output to stdout + [ ] + exec env GLIBCXX_FORCE_NEW=1 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --show-possibly-lost=no --suppressions=/data/runtests/work/sources/syncevolution/test/sys.supp --suppressions=/data/runtests/work/sources/syncevolution/test/evo.supp --num-callers=30 --trace-children=yes --trace-children-skip=*synclog2html,*synccompare*,*akonadi_*resource,*akonadi_*agent,*akonadi_*feeder,*akonadiserver*,/bin/ls,/bin/sed,/bin/cp,/bin/rm,/usr/bin/kdeinit4,/usr/bin/perl,*/modify-remote,*/modify-local,*/mktemp,*/nslookup,*/host,*/adnshost,*/grep --suppressions=/data/runtests/work/sources/activesyncd/sys.supp --leak-check=yes --suppressions=/home/nightly/testing/gdbus.supp --gen-suppressions=all --log-file=/data/runtests/work/testing-amd64/tests/unittests/valgrind.p106.c%p.out ./client-test SyncEvolution SyncEvo::ActiveSyncsTest::testInstantiate okay SyncEvo::AkonadiTest::testInstantiate okay SyncEvo::EvolutionCalendarTest::testInstantiate okay SyncEvo::EvolutionCalendarTest::testOpenDefaultCalendar okay SyncEvo::EvolutionCalendarTest::testOpenDefaultTodo okay SyncEvo::EvolutionCalendarTest::testOpenDefaultMemo okay SyncEvo::EvolutionCalendarTest::testTimezones okay SyncEvo::EvolutionContactTest::testInstantiate okay SyncEvo::EvolutionContactTest::testImport okay SyncEvo::FileSyncSourceUnitTest::testInstantiate okay SyncEvo::WebDAVTest::testInstantiate okay SyncEvo::WebDAVTest::testHTMLEntities okay SyncEvo::GLibTest::notify okay SyncEvo::LogRedirectTest::simple okay SyncEvo::LogRedirectTest::largeChunk okay SyncEvo::LogRedirectTest::streams okay SyncEvo::LogRedirectTest::overload okay SyncEvo::LogRedirectTest::glib okay SyncEvo::TimespecTest::add okay SyncEvo::TimespecTest::substract okay SyncEvo::StringEscapeTest::escape okay SyncEvo::StringEscapeTest::unescape okay SyncEvo::LCSTest::lcs okay SyncEvo::ForkExecTest::testTrue okay SyncEvo::ForkExecTest::testFalse okay SyncEvo::ForkExecTest::testPath okay SyncEvo::ForkExecTest::testNotFound okay SyncEvo::ForkExecTest::testEnv1 okay SyncEvo::ForkExecTest::testEnv2 okay SyncEvo::ForkExecTest::testOutErr okay SyncEvo::ForkExecTest::testMerged okay SyncEvo::CmdlineTest::testFramework okay SyncEvo::CmdlineTest::testSetupScheduleWorld okay SyncEvo::CmdlineTest::testFutureConfig okay SyncEvo::CmdlineTest::testPeerConfigMigration okay SyncEvo::CmdlineTest::testContextConfigMigration okay SyncEvo::CmdlineTest::testSetupDefault okay SyncEvo::CmdlineTest::testSetupRenamed okay SyncEvo::CmdlineTest::testSetupFunambol okay SyncEvo::CmdlineTest::testSetupSynthesis okay SyncEvo::CmdlineTest::testPrintServers okay SyncEvo::CmdlineTest::testPrintFileTemplates okay SyncEvo::CmdlineTest::testPrintFileTemplatesConfig okay SyncEvo::CmdlineTest::testTemplate okay SyncEvo::CmdlineTest::testMatchTemplate okay SyncEvo::CmdlineTest::testAddSource okay SyncEvo::CmdlineTest::testSync okay SyncEvo::CmdlineTest::testKeyring okay SyncEvo::CmdlineTest::testWebDAV okay SyncEvo::CmdlineTest::testConfigure okay SyncEvo::CmdlineTest::testConfigureSources okay SyncEvo::CmdlineTest::testOldConfigure okay SyncEvo::CmdlineTest::testMigrate ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered okay SyncEvo::CmdlineTest::testMigrateContext okay SyncEvo::CmdlineTest::testMigrateAutoSync ** (gnome-keyring-daemon:14): WARNING **: asked to register item /org/freedesktop/secrets/collection/default/8, but it's already registered okay SyncEvo::SyncSourceTest::backendsAvailable okay SyncEvo::LogDirTest::testQuickCompare okay SyncEvo::LogDirTest::testSessionNoChanges okay SyncEvo::LogDirTest::testSessionChanges okay SyncEvo::LogDirTest::testMultipleSessions okay SyncEvo::LogDirTest::testExpire okay SyncEvo::SyncConfigTest::normalize okay SyncEvo::SyncConfigTest::parseDuration okay SyncEvo::SyncConfigTest::propertySpec okay SyncEvo::SingleIniTest::simple okay OKvalgrindcheck (106): './client-test SyncEvolution' (111): returned 0 ==1053== Memcheck, a memory error detector ==1053== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1053== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1053== Command: ./client-test SyncEvo::CmdlineTest::testSync ==1053== Parent PID: 111 ==1053== ==1053== ==1053== HEAP SUMMARY: ==1053== in use at exit: 262,056 bytes in 3,726 blocks ==1053== total heap usage: 63,809 allocs, 60,083 frees, 11,420,453 bytes allocated ==1053== ==1053== LEAK SUMMARY: ==1053== definitely lost: 0 bytes in 0 blocks ==1053== indirectly lost: 0 bytes in 0 blocks ==1053== possibly lost: 96 bytes in 1 blocks ==1053== still reachable: 44,967 bytes in 278 blocks ==1053== of which reachable via heuristic: ==1053== newarray : 5,800 bytes in 17 blocks ==1053== suppressed: 216,993 bytes in 3,447 blocks ==1053== Reachable blocks (those to which a pointer was found) are not shown. ==1053== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1053== ==1053== For counts of detected and suppressed errors, rerun with: -v ==1053== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1054== Memcheck, a memory error detector ==1054== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1054== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1054== Command: ./client-test SyncEvo::CmdlineTest::testKeyring ==1054== Parent PID: 111 ==1054== ==1054== ==1054== HEAP SUMMARY: ==1054== in use at exit: 261,928 bytes in 3,727 blocks ==1054== total heap usage: 108,872 allocs, 105,145 frees, 19,125,819 bytes allocated ==1054== ==1054== LEAK SUMMARY: ==1054== definitely lost: 0 bytes in 0 blocks ==1054== indirectly lost: 0 bytes in 0 blocks ==1054== possibly lost: 96 bytes in 1 blocks ==1054== still reachable: 44,815 bytes in 279 blocks ==1054== of which reachable via heuristic: ==1054== newarray : 5,800 bytes in 17 blocks ==1054== suppressed: 217,017 bytes in 3,447 blocks ==1054== Reachable blocks (those to which a pointer was found) are not shown. ==1054== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1054== ==1054== For counts of detected and suppressed errors, rerun with: -v ==1054== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1055== Memcheck, a memory error detector ==1055== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1055== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1055== Command: ./client-test SyncEvo::CmdlineTest::testWebDAV ==1055== Parent PID: 111 ==1055== ==1055== ==1055== HEAP SUMMARY: ==1055== in use at exit: 261,912 bytes in 3,727 blocks ==1055== total heap usage: 120,596 allocs, 116,869 frees, 20,238,518 bytes allocated ==1055== ==1055== LEAK SUMMARY: ==1055== definitely lost: 0 bytes in 0 blocks ==1055== indirectly lost: 0 bytes in 0 blocks ==1055== possibly lost: 96 bytes in 1 blocks ==1055== still reachable: 44,815 bytes in 279 blocks ==1055== of which reachable via heuristic: ==1055== newarray : 5,800 bytes in 17 blocks ==1055== suppressed: 217,001 bytes in 3,447 blocks ==1055== Reachable blocks (those to which a pointer was found) are not shown. ==1055== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1055== ==1055== For counts of detected and suppressed errors, rerun with: -v ==1055== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1056== Memcheck, a memory error detector ==1056== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1056== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1056== Command: ./client-test SyncEvo::CmdlineTest::testConfigure ==1056== Parent PID: 111 ==1056== ==1056== ==1056== HEAP SUMMARY: ==1056== in use at exit: 810,042 bytes in 9,692 blocks ==1056== total heap usage: 336,335 allocs, 326,643 frees, 48,769,360 bytes allocated ==1056== ==1056== LEAK SUMMARY: ==1056== definitely lost: 0 bytes in 0 blocks ==1056== indirectly lost: 0 bytes in 0 blocks ==1056== possibly lost: 960 bytes in 3 blocks ==1056== still reachable: 109,645 bytes in 361 blocks ==1056== of which reachable via heuristic: ==1056== length64 : 5,368 bytes in 82 blocks ==1056== newarray : 6,360 bytes in 52 blocks ==1056== suppressed: 624,949 bytes in 8,749 blocks ==1056== Reachable blocks (those to which a pointer was found) are not shown. ==1056== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1056== ==1056== For counts of detected and suppressed errors, rerun with: -v ==1056== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==111== Memcheck, a memory error detector ==111== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==111== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==111== Command: ./client-test SyncEvolution ==111== Parent PID: 106 ==111== ==111== ==111== HEAP SUMMARY: ==111== in use at exit: 261,784 bytes in 3,725 blocks ==111== total heap usage: 98,905 allocs, 95,180 frees, 17,647,937 bytes allocated ==111== ==111== LEAK SUMMARY: ==111== definitely lost: 0 bytes in 0 blocks ==111== indirectly lost: 0 bytes in 0 blocks ==111== possibly lost: 96 bytes in 1 blocks ==111== still reachable: 44,695 bytes in 277 blocks ==111== of which reachable via heuristic: ==111== newarray : 5,800 bytes in 17 blocks ==111== suppressed: 216,993 bytes in 3,447 blocks ==111== Reachable blocks (those to which a pointer was found) are not shown. ==111== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==111== ==111== For counts of detected and suppressed errors, rerun with: -v ==111== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1127== Memcheck, a memory error detector ==1127== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1127== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1127== Command: ./client-test SyncEvo::CmdlineTest::testConfigureSources ==1127== Parent PID: 111 ==1127== ==1127== ==1127== HEAP SUMMARY: ==1127== in use at exit: 785,124 bytes in 9,300 blocks ==1127== total heap usage: 255,855 allocs, 246,555 frees, 27,721,063 bytes allocated ==1127== ==1127== LEAK SUMMARY: ==1127== definitely lost: 0 bytes in 0 blocks ==1127== indirectly lost: 0 bytes in 0 blocks ==1127== possibly lost: 528 bytes in 2 blocks ==1127== still reachable: 108,653 bytes in 340 blocks ==1127== of which reachable via heuristic: ==1127== length64 : 4,688 bytes in 74 blocks ==1127== newarray : 6,312 bytes in 49 blocks ==1127== suppressed: 606,703 bytes in 8,429 blocks ==1127== Reachable blocks (those to which a pointer was found) are not shown. ==1127== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1127== ==1127== For counts of detected and suppressed errors, rerun with: -v ==1127== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==1182== Memcheck, a memory error detector ==1182== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1182== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1182== Command: ./client-test SyncEvo::CmdlineTest::testOldConfigure ==1182== Parent PID: 111 ==1182== ==1182== ==1182== HEAP SUMMARY: ==1182== in use at exit: 354,466 bytes in 4,906 blocks ==1182== total heap usage: 135,135 allocs, 130,177 frees, 28,226,725 bytes allocated ==1182== ==1182== LEAK SUMMARY: ==1182== definitely lost: 0 bytes in 0 blocks ==1182== indirectly lost: 0 bytes in 0 blocks ==1182== possibly lost: 1,392 bytes in 4 blocks ==1182== still reachable: 69,535 bytes in 537 blocks ==1182== of which reachable via heuristic: ==1182== length64 : 1,032 bytes in 18 blocks ==1182== newarray : 5,976 bytes in 28 blocks ==1182== suppressed: 272,067 bytes in 4,282 blocks ==1182== Reachable blocks (those to which a pointer was found) are not shown. ==1182== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1182== ==1182== For counts of detected and suppressed errors, rerun with: -v ==1182== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1186== Memcheck, a memory error detector ==1186== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1186== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1186== Command: ./client-test SyncEvo::CmdlineTest::testMigrate ==1186== Parent PID: 111 ==1186== ==1186== ==1186== HEAP SUMMARY: ==1186== in use at exit: 354,442 bytes in 4,906 blocks ==1186== total heap usage: 182,638 allocs, 177,678 frees, 47,732,093 bytes allocated ==1186== ==1186== LEAK SUMMARY: ==1186== definitely lost: 0 bytes in 0 blocks ==1186== indirectly lost: 0 bytes in 0 blocks ==1186== possibly lost: 1,392 bytes in 4 blocks ==1186== still reachable: 69,535 bytes in 537 blocks ==1186== of which reachable via heuristic: ==1186== length64 : 1,032 bytes in 18 blocks ==1186== newarray : 5,976 bytes in 28 blocks ==1186== suppressed: 272,043 bytes in 4,282 blocks ==1186== Reachable blocks (those to which a pointer was found) are not shown. ==1186== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1186== ==1186== For counts of detected and suppressed errors, rerun with: -v ==1186== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==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 SyncEvo::ActiveSyncsTest::testInstantiate ==119== Parent PID: 111 ==119== ==119== ==119== HEAP SUMMARY: ==119== in use at exit: 261,840 bytes in 3,726 blocks ==119== total heap usage: 88,291 allocs, 84,565 frees, 12,149,362 bytes allocated ==119== ==119== LEAK SUMMARY: ==119== definitely lost: 0 bytes in 0 blocks ==119== indirectly lost: 0 bytes in 0 blocks ==119== possibly lost: 96 bytes in 1 blocks ==119== still reachable: 44,743 bytes in 278 blocks ==119== of which reachable via heuristic: ==119== newarray : 5,800 bytes in 17 blocks ==119== suppressed: 217,001 bytes in 3,447 blocks ==119== Reachable blocks (those to which a pointer was found) are not shown. ==119== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==119== ==119== For counts of detected and suppressed errors, rerun with: -v ==119== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1190== Memcheck, a memory error detector ==1190== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1190== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1190== Command: ./client-test SyncEvo::CmdlineTest::testMigrateContext ==1190== Parent PID: 111 ==1190== ==1190== ==1190== HEAP SUMMARY: ==1190== in use at exit: 261,856 bytes in 3,726 blocks ==1190== total heap usage: 93,885 allocs, 90,159 frees, 21,017,924 bytes allocated ==1190== ==1190== LEAK SUMMARY: ==1190== definitely lost: 0 bytes in 0 blocks ==1190== indirectly lost: 0 bytes in 0 blocks ==1190== possibly lost: 96 bytes in 1 blocks ==1190== still reachable: 44,775 bytes in 278 blocks ==1190== of which reachable via heuristic: ==1190== newarray : 5,800 bytes in 17 blocks ==1190== suppressed: 216,985 bytes in 3,447 blocks ==1190== Reachable blocks (those to which a pointer was found) are not shown. ==1190== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1190== ==1190== For counts of detected and suppressed errors, rerun with: -v ==1190== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1191== Memcheck, a memory error detector ==1191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1191== Command: ./client-test SyncEvo::CmdlineTest::testMigrateAutoSync ==1191== Parent PID: 111 ==1191== ==1191== ==1191== HEAP SUMMARY: ==1191== in use at exit: 354,442 bytes in 4,906 blocks ==1191== total heap usage: 97,819 allocs, 92,861 frees, 22,421,026 bytes allocated ==1191== ==1191== LEAK SUMMARY: ==1191== definitely lost: 0 bytes in 0 blocks ==1191== indirectly lost: 0 bytes in 0 blocks ==1191== possibly lost: 1,392 bytes in 4 blocks ==1191== still reachable: 69,535 bytes in 537 blocks ==1191== of which reachable via heuristic: ==1191== length64 : 1,032 bytes in 18 blocks ==1191== newarray : 5,976 bytes in 28 blocks ==1191== suppressed: 272,043 bytes in 4,282 blocks ==1191== Reachable blocks (those to which a pointer was found) are not shown. ==1191== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1191== ==1191== For counts of detected and suppressed errors, rerun with: -v ==1191== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 67 from 67) ==1195== Memcheck, a memory error detector ==1195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1195== Command: ./client-test SyncEvo::SyncSourceTest::backendsAvailable ==1195== Parent PID: 111 ==1195== ==1195== ==1195== HEAP SUMMARY: ==1195== in use at exit: 261,864 bytes in 3,726 blocks ==1195== total heap usage: 62,896 allocs, 59,170 frees, 10,654,265 bytes allocated ==1195== ==1195== LEAK SUMMARY: ==1195== definitely lost: 0 bytes in 0 blocks ==1195== indirectly lost: 0 bytes in 0 blocks ==1195== possibly lost: 96 bytes in 1 blocks ==1195== still reachable: 44,743 bytes in 278 blocks ==1195== of which reachable via heuristic: ==1195== newarray : 5,800 bytes in 17 blocks ==1195== suppressed: 217,025 bytes in 3,447 blocks ==1195== Reachable blocks (those to which a pointer was found) are not shown. ==1195== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1195== ==1195== For counts of detected and suppressed errors, rerun with: -v ==1195== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1196== Memcheck, a memory error detector ==1196== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1196== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1196== Command: ./client-test SyncEvo::LogDirTest::testQuickCompare ==1196== Parent PID: 111 ==1196== ==1196== ==1196== HEAP SUMMARY: ==1196== in use at exit: 261,856 bytes in 3,726 blocks ==1196== total heap usage: 63,293 allocs, 59,567 frees, 11,076,794 bytes allocated ==1196== ==1196== LEAK SUMMARY: ==1196== definitely lost: 0 bytes in 0 blocks ==1196== indirectly lost: 0 bytes in 0 blocks ==1196== possibly lost: 96 bytes in 1 blocks ==1196== still reachable: 44,775 bytes in 278 blocks ==1196== of which reachable via heuristic: ==1196== newarray : 5,800 bytes in 17 blocks ==1196== suppressed: 216,985 bytes in 3,447 blocks ==1196== Reachable blocks (those to which a pointer was found) are not shown. ==1196== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1196== ==1196== For counts of detected and suppressed errors, rerun with: -v ==1196== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1197== Memcheck, a memory error detector ==1197== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1197== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1197== Command: /bin/sh -c cp\ -l\ -r\ LogDirTest/data/file_event.two\ LogDirTest/data/file_event.copy\ &&\ rm\ LogDirTest/data/file_event.copy/2 ==1197== Parent PID: 1196 ==1197== ==1197== ==1197== HEAP SUMMARY: ==1197== in use at exit: 3,077 bytes in 92 blocks ==1197== total heap usage: 97 allocs, 5 frees, 4,221 bytes allocated ==1197== ==1197== LEAK SUMMARY: ==1197== definitely lost: 0 bytes in 0 blocks ==1197== indirectly lost: 0 bytes in 0 blocks ==1197== possibly lost: 0 bytes in 0 blocks ==1197== still reachable: 3,077 bytes in 92 blocks ==1197== suppressed: 0 bytes in 0 blocks ==1197== Reachable blocks (those to which a pointer was found) are not shown. ==1197== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1197== ==1197== For counts of detected and suppressed errors, rerun with: -v ==1197== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==1198== Memcheck, a memory error detector ==1198== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1198== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1198== Command: /bin/sh -c cp\ -l\ -r\ LogDirTest/data/file_event.two\ LogDirTest/data/file_event.copy\ &&\ rm\ LogDirTest/data/file_event.copy/2 ==1198== Parent PID: 1197 ==1198== ==1199== Memcheck, a memory error detector ==1199== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1199== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1199== Command: /bin/sh -c cp\ -l\ -r\ LogDirTest/data/file_event.two\ LogDirTest/data/file_event.copy\ &&\ rm\ LogDirTest/data/file_event.copy/2 ==1199== Parent PID: 1197 ==1199== ==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 SyncEvo::AkonadiTest::testInstantiate ==120== Parent PID: 111 ==120== ==120== ==120== HEAP SUMMARY: ==120== in use at exit: 261,840 bytes in 3,726 blocks ==120== total heap usage: 134,417 allocs, 130,691 frees, 15,285,155 bytes allocated ==120== ==120== LEAK SUMMARY: ==120== definitely lost: 0 bytes in 0 blocks ==120== indirectly lost: 0 bytes in 0 blocks ==120== possibly lost: 96 bytes in 1 blocks ==120== still reachable: 44,743 bytes in 278 blocks ==120== of which reachable via heuristic: ==120== newarray : 5,800 bytes in 17 blocks ==120== suppressed: 217,001 bytes in 3,447 blocks ==120== Reachable blocks (those to which a pointer was found) are not shown. ==120== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==120== ==120== For counts of detected and suppressed errors, rerun with: -v ==120== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1200== Memcheck, a memory error detector ==1200== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1200== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1200== Command: ./client-test SyncEvo::LogDirTest::testSessionNoChanges ==1200== Parent PID: 111 ==1200== ==1200== ==1200== HEAP SUMMARY: ==1200== in use at exit: 261,856 bytes in 3,726 blocks ==1200== total heap usage: 70,764 allocs, 67,038 frees, 12,219,121 bytes allocated ==1200== ==1200== LEAK SUMMARY: ==1200== definitely lost: 0 bytes in 0 blocks ==1200== indirectly lost: 0 bytes in 0 blocks ==1200== possibly lost: 96 bytes in 1 blocks ==1200== still reachable: 44,775 bytes in 278 blocks ==1200== of which reachable via heuristic: ==1200== newarray : 5,800 bytes in 17 blocks ==1200== suppressed: 216,985 bytes in 3,447 blocks ==1200== Reachable blocks (those to which a pointer was found) are not shown. ==1200== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1200== ==1200== For counts of detected and suppressed errors, rerun with: -v ==1200== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1201== Memcheck, a memory error detector ==1201== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1201== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1201== Command: ./client-test SyncEvo::LogDirTest::testSessionChanges ==1201== Parent PID: 111 ==1201== ==1201== ==1201== HEAP SUMMARY: ==1201== in use at exit: 261,856 bytes in 3,726 blocks ==1201== total heap usage: 70,847 allocs, 67,121 frees, 12,309,939 bytes allocated ==1201== ==1201== LEAK SUMMARY: ==1201== definitely lost: 0 bytes in 0 blocks ==1201== indirectly lost: 0 bytes in 0 blocks ==1201== possibly lost: 96 bytes in 1 blocks ==1201== still reachable: 44,775 bytes in 278 blocks ==1201== of which reachable via heuristic: ==1201== newarray : 5,800 bytes in 17 blocks ==1201== suppressed: 216,985 bytes in 3,447 blocks ==1201== Reachable blocks (those to which a pointer was found) are not shown. ==1201== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1201== ==1201== For counts of detected and suppressed errors, rerun with: -v ==1201== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1202== Memcheck, a memory error detector ==1202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1202== Command: ./client-test SyncEvo::LogDirTest::testMultipleSessions ==1202== Parent PID: 111 ==1202== ==1202== ==1202== HEAP SUMMARY: ==1202== in use at exit: 261,864 bytes in 3,726 blocks ==1202== total heap usage: 93,208 allocs, 89,482 frees, 15,270,610 bytes allocated ==1202== ==1202== LEAK SUMMARY: ==1202== definitely lost: 0 bytes in 0 blocks ==1202== indirectly lost: 0 bytes in 0 blocks ==1202== possibly lost: 96 bytes in 1 blocks ==1202== still reachable: 44,775 bytes in 278 blocks ==1202== of which reachable via heuristic: ==1202== newarray : 5,800 bytes in 17 blocks ==1202== suppressed: 216,993 bytes in 3,447 blocks ==1202== Reachable blocks (those to which a pointer was found) are not shown. ==1202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1202== ==1202== For counts of detected and suppressed errors, rerun with: -v ==1202== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1203== Memcheck, a memory error detector ==1203== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1203== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1203== Command: ./client-test SyncEvo::LogDirTest::testExpire ==1203== Parent PID: 111 ==1203== ==1203== ==1203== HEAP SUMMARY: ==1203== in use at exit: 261,872 bytes in 3,726 blocks ==1203== total heap usage: 163,857 allocs, 160,131 frees, 28,167,800 bytes allocated ==1203== ==1203== LEAK SUMMARY: ==1203== definitely lost: 0 bytes in 0 blocks ==1203== indirectly lost: 0 bytes in 0 blocks ==1203== possibly lost: 96 bytes in 1 blocks ==1203== still reachable: 44,775 bytes in 278 blocks ==1203== of which reachable via heuristic: ==1203== newarray : 5,800 bytes in 17 blocks ==1203== suppressed: 217,001 bytes in 3,447 blocks ==1203== Reachable blocks (those to which a pointer was found) are not shown. ==1203== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1203== ==1203== For counts of detected and suppressed errors, rerun with: -v ==1203== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1204== Memcheck, a memory error detector ==1204== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1204== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1204== Command: ./client-test SyncEvo::SyncConfigTest::normalize ==1204== Parent PID: 111 ==1204== ==1204== ==1204== HEAP SUMMARY: ==1204== in use at exit: 261,848 bytes in 3,726 blocks ==1204== total heap usage: 64,011 allocs, 60,285 frees, 12,232,959 bytes allocated ==1204== ==1204== LEAK SUMMARY: ==1204== definitely lost: 0 bytes in 0 blocks ==1204== indirectly lost: 0 bytes in 0 blocks ==1204== possibly lost: 96 bytes in 1 blocks ==1204== still reachable: 44,743 bytes in 278 blocks ==1204== of which reachable via heuristic: ==1204== newarray : 5,800 bytes in 17 blocks ==1204== suppressed: 217,009 bytes in 3,447 blocks ==1204== Reachable blocks (those to which a pointer was found) are not shown. ==1204== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1204== ==1204== For counts of detected and suppressed errors, rerun with: -v ==1204== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1205== Memcheck, a memory error detector ==1205== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1205== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1205== Command: ./client-test SyncEvo::SyncConfigTest::parseDuration ==1205== Parent PID: 111 ==1205== ==1205== ==1205== HEAP SUMMARY: ==1205== in use at exit: 261,856 bytes in 3,726 blocks ==1205== total heap usage: 63,014 allocs, 59,288 frees, 10,665,688 bytes allocated ==1205== ==1205== LEAK SUMMARY: ==1205== definitely lost: 0 bytes in 0 blocks ==1205== indirectly lost: 0 bytes in 0 blocks ==1205== possibly lost: 96 bytes in 1 blocks ==1205== still reachable: 44,743 bytes in 278 blocks ==1205== of which reachable via heuristic: ==1205== newarray : 5,800 bytes in 17 blocks ==1205== suppressed: 217,017 bytes in 3,447 blocks ==1205== Reachable blocks (those to which a pointer was found) are not shown. ==1205== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1205== ==1205== For counts of detected and suppressed errors, rerun with: -v ==1205== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1206== Memcheck, a memory error detector ==1206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1206== Command: ./client-test SyncEvo::SyncConfigTest::propertySpec ==1206== Parent PID: 111 ==1206== ==1206== ==1206== HEAP SUMMARY: ==1206== in use at exit: 261,848 bytes in 3,726 blocks ==1206== total heap usage: 62,981 allocs, 59,255 frees, 10,658,957 bytes allocated ==1206== ==1206== LEAK SUMMARY: ==1206== definitely lost: 0 bytes in 0 blocks ==1206== indirectly lost: 0 bytes in 0 blocks ==1206== possibly lost: 96 bytes in 1 blocks ==1206== still reachable: 44,743 bytes in 278 blocks ==1206== of which reachable via heuristic: ==1206== newarray : 5,800 bytes in 17 blocks ==1206== suppressed: 217,009 bytes in 3,447 blocks ==1206== Reachable blocks (those to which a pointer was found) are not shown. ==1206== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1206== ==1206== For counts of detected and suppressed errors, rerun with: -v ==1206== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==1207== Memcheck, a memory error detector ==1207== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==1207== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==1207== Command: ./client-test SyncEvo::SingleIniTest::simple ==1207== Parent PID: 111 ==1207== ==1207== ==1207== HEAP SUMMARY: ==1207== in use at exit: 261,840 bytes in 3,726 blocks ==1207== total heap usage: 63,231 allocs, 59,505 frees, 10,679,436 bytes allocated ==1207== ==1207== LEAK SUMMARY: ==1207== definitely lost: 0 bytes in 0 blocks ==1207== indirectly lost: 0 bytes in 0 blocks ==1207== possibly lost: 96 bytes in 1 blocks ==1207== still reachable: 44,743 bytes in 278 blocks ==1207== of which reachable via heuristic: ==1207== newarray : 5,800 bytes in 17 blocks ==1207== suppressed: 217,001 bytes in 3,447 blocks ==1207== Reachable blocks (those to which a pointer was found) are not shown. ==1207== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==1207== ==1207== For counts of detected and suppressed errors, rerun with: -v ==1207== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==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 SyncEvo::EvolutionCalendarTest::testInstantiate ==121== Parent PID: 111 ==121== ==121== ==121== HEAP SUMMARY: ==121== in use at exit: 261,848 bytes in 3,726 blocks ==121== total heap usage: 134,316 allocs, 130,590 frees, 15,107,300 bytes allocated ==121== ==121== LEAK SUMMARY: ==121== definitely lost: 0 bytes in 0 blocks ==121== indirectly lost: 0 bytes in 0 blocks ==121== possibly lost: 96 bytes in 1 blocks ==121== still reachable: 44,743 bytes in 278 blocks ==121== of which reachable via heuristic: ==121== newarray : 5,800 bytes in 17 blocks ==121== suppressed: 217,009 bytes in 3,447 blocks ==121== Reachable blocks (those to which a pointer was found) are not shown. ==121== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==121== ==121== For counts of detected and suppressed errors, rerun with: -v ==121== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==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 SyncEvo::EvolutionCalendarTest::testOpenDefaultCalendar ==122== Parent PID: 111 ==122== ==122== ==122== HEAP SUMMARY: ==122== in use at exit: 781,619 bytes in 9,228 blocks ==122== total heap usage: 121,732 allocs, 112,504 frees, 13,643,065 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: 528 bytes in 2 blocks ==122== still reachable: 114,844 bytes in 452 blocks ==122== of which reachable via heuristic: ==122== length64 : 4,448 bytes in 71 blocks ==122== newarray : 6,296 bytes in 48 blocks ==122== suppressed: 598,623 bytes in 8,263 blocks ==122== Reachable blocks (those to which a pointer was found) are not shown. ==122== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==122== ==122== For counts of detected and suppressed errors, rerun with: -v ==122== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==143== Memcheck, a memory error detector ==143== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==143== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==143== Command: ./client-test SyncEvo::EvolutionCalendarTest::testOpenDefaultTodo ==143== Parent PID: 111 ==143== ==143== ==143== HEAP SUMMARY: ==143== in use at exit: 781,619 bytes in 9,228 blocks ==143== total heap usage: 121,444 allocs, 112,216 frees, 13,628,698 bytes allocated ==143== ==143== LEAK SUMMARY: ==143== definitely lost: 0 bytes in 0 blocks ==143== indirectly lost: 0 bytes in 0 blocks ==143== possibly lost: 528 bytes in 2 blocks ==143== still reachable: 114,860 bytes in 452 blocks ==143== of which reachable via heuristic: ==143== length64 : 4,448 bytes in 71 blocks ==143== newarray : 6,296 bytes in 48 blocks ==143== suppressed: 598,607 bytes in 8,263 blocks ==143== Reachable blocks (those to which a pointer was found) are not shown. ==143== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==143== ==143== For counts of detected and suppressed errors, rerun with: -v ==143== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==159== Memcheck, a memory error detector ==159== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==159== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==159== Command: ./client-test SyncEvo::EvolutionCalendarTest::testOpenDefaultMemo ==159== Parent PID: 111 ==159== ==159== ==159== HEAP SUMMARY: ==159== in use at exit: 781,875 bytes in 9,226 blocks ==159== total heap usage: 121,198 allocs, 111,972 frees, 13,620,017 bytes allocated ==159== ==159== LEAK SUMMARY: ==159== definitely lost: 0 bytes in 0 blocks ==159== indirectly lost: 0 bytes in 0 blocks ==159== possibly lost: 528 bytes in 2 blocks ==159== still reachable: 114,516 bytes in 449 blocks ==159== of which reachable via heuristic: ==159== length64 : 4,448 bytes in 71 blocks ==159== newarray : 6,296 bytes in 48 blocks ==159== suppressed: 599,207 bytes in 8,264 blocks ==159== Reachable blocks (those to which a pointer was found) are not shown. ==159== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==159== ==159== For counts of detected and suppressed errors, rerun with: -v ==159== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==175== Memcheck, a memory error detector ==175== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==175== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==175== Command: ./client-test SyncEvo::EvolutionCalendarTest::testTimezones ==175== Parent PID: 111 ==175== ==175== ==175== HEAP SUMMARY: ==175== in use at exit: 959,810 bytes in 12,056 blocks ==175== total heap usage: 147,840 allocs, 135,784 frees, 16,794,591 bytes allocated ==175== ==175== LEAK SUMMARY: ==175== definitely lost: 0 bytes in 0 blocks ==175== indirectly lost: 0 bytes in 0 blocks ==175== possibly lost: 528 bytes in 2 blocks ==175== still reachable: 294,465 bytes in 3,331 blocks ==175== of which reachable via heuristic: ==175== length64 : 4,448 bytes in 71 blocks ==175== newarray : 6,296 bytes in 48 blocks ==175== suppressed: 597,361 bytes in 8,214 blocks ==175== Reachable blocks (those to which a pointer was found) are not shown. ==175== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==175== ==175== For counts of detected and suppressed errors, rerun with: -v ==175== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 70 from 70) ==191== Memcheck, a memory error detector ==191== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==191== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==191== Command: ./client-test SyncEvo::EvolutionContactTest::testInstantiate ==191== Parent PID: 111 ==191== ==191== ==191== HEAP SUMMARY: ==191== in use at exit: 261,856 bytes in 3,726 blocks ==191== total heap usage: 102,094 allocs, 98,368 frees, 13,128,205 bytes allocated ==191== ==191== LEAK SUMMARY: ==191== definitely lost: 0 bytes in 0 blocks ==191== indirectly lost: 0 bytes in 0 blocks ==191== possibly lost: 96 bytes in 1 blocks ==191== still reachable: 44,743 bytes in 278 blocks ==191== of which reachable via heuristic: ==191== newarray : 5,800 bytes in 17 blocks ==191== suppressed: 217,017 bytes in 3,447 blocks ==191== Reachable blocks (those to which a pointer was found) are not shown. ==191== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==191== ==191== For counts of detected and suppressed errors, rerun with: -v ==191== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==192== Memcheck, a memory error detector ==192== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==192== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==192== Command: ./client-test SyncEvo::EvolutionContactTest::testImport ==192== Parent PID: 111 ==192== ==192== ==192== HEAP SUMMARY: ==192== in use at exit: 261,832 bytes in 3,726 blocks ==192== total heap usage: 76,208 allocs, 72,482 frees, 11,492,448 bytes allocated ==192== ==192== LEAK SUMMARY: ==192== definitely lost: 0 bytes in 0 blocks ==192== indirectly lost: 0 bytes in 0 blocks ==192== possibly lost: 96 bytes in 1 blocks ==192== still reachable: 44,743 bytes in 278 blocks ==192== of which reachable via heuristic: ==192== newarray : 5,800 bytes in 17 blocks ==192== suppressed: 216,993 bytes in 3,447 blocks ==192== Reachable blocks (those to which a pointer was found) are not shown. ==192== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==192== ==192== For counts of detected and suppressed errors, rerun with: -v ==192== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==193== Memcheck, a memory error detector ==193== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==193== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==193== Command: ./client-test SyncEvo::FileSyncSourceUnitTest::testInstantiate ==193== Parent PID: 111 ==193== ==193== ==193== HEAP SUMMARY: ==193== in use at exit: 261,840 bytes in 3,726 blocks ==193== total heap usage: 82,514 allocs, 78,788 frees, 11,894,650 bytes allocated ==193== ==193== LEAK SUMMARY: ==193== definitely lost: 0 bytes in 0 blocks ==193== indirectly lost: 0 bytes in 0 blocks ==193== possibly lost: 96 bytes in 1 blocks ==193== still reachable: 44,743 bytes in 278 blocks ==193== of which reachable via heuristic: ==193== newarray : 5,800 bytes in 17 blocks ==193== suppressed: 217,001 bytes in 3,447 blocks ==193== Reachable blocks (those to which a pointer was found) are not shown. ==193== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==193== ==193== For counts of detected and suppressed errors, rerun with: -v ==193== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==194== Memcheck, a memory error detector ==194== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==194== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==194== Command: ./client-test SyncEvo::WebDAVTest::testInstantiate ==194== Parent PID: 111 ==194== ==194== ==194== HEAP SUMMARY: ==194== in use at exit: 261,824 bytes in 3,726 blocks ==194== total heap usage: 99,415 allocs, 95,689 frees, 12,890,196 bytes allocated ==194== ==194== LEAK SUMMARY: ==194== definitely lost: 0 bytes in 0 blocks ==194== indirectly lost: 0 bytes in 0 blocks ==194== possibly lost: 96 bytes in 1 blocks ==194== still reachable: 44,743 bytes in 278 blocks ==194== of which reachable via heuristic: ==194== newarray : 5,800 bytes in 17 blocks ==194== suppressed: 216,985 bytes in 3,447 blocks ==194== Reachable blocks (those to which a pointer was found) are not shown. ==194== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==194== ==194== For counts of detected and suppressed errors, rerun with: -v ==194== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==195== Memcheck, a memory error detector ==195== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==195== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==195== Command: ./client-test SyncEvo::WebDAVTest::testHTMLEntities ==195== Parent PID: 111 ==195== ==195== ==195== HEAP SUMMARY: ==195== in use at exit: 261,848 bytes in 3,726 blocks ==195== total heap usage: 62,891 allocs, 59,165 frees, 10,655,999 bytes allocated ==195== ==195== LEAK SUMMARY: ==195== definitely lost: 0 bytes in 0 blocks ==195== indirectly lost: 0 bytes in 0 blocks ==195== possibly lost: 96 bytes in 1 blocks ==195== still reachable: 44,743 bytes in 278 blocks ==195== of which reachable via heuristic: ==195== newarray : 5,800 bytes in 17 blocks ==195== suppressed: 217,009 bytes in 3,447 blocks ==195== Reachable blocks (those to which a pointer was found) are not shown. ==195== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==195== ==195== For counts of detected and suppressed errors, rerun with: -v ==195== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==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 SyncEvo::GLibTest::notify ==196== Parent PID: 111 ==196== ==196== ==196== HEAP SUMMARY: ==196== in use at exit: 389,271 bytes in 5,480 blocks ==196== total heap usage: 68,293 allocs, 62,813 frees, 11,080,603 bytes allocated ==196== ==196== LEAK SUMMARY: ==196== definitely lost: 0 bytes in 0 blocks ==196== indirectly lost: 0 bytes in 0 blocks ==196== possibly lost: 96 bytes in 1 blocks ==196== still reachable: 55,478 bytes in 435 blocks ==196== of which reachable via heuristic: ==196== length64 : 1,688 bytes in 32 blocks ==196== newarray : 6,104 bytes in 36 blocks ==196== suppressed: 320,993 bytes in 4,943 blocks ==196== Reachable blocks (those to which a pointer was found) are not shown. ==196== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==196== ==196== For counts of detected and suppressed errors, rerun with: -v ==196== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 69 from 69) ==199== Memcheck, a memory error detector ==199== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==199== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==199== Command: ./client-test SyncEvo::LogRedirectTest::simple ==199== Parent PID: 111 ==199== ==199== ==199== HEAP SUMMARY: ==199== in use at exit: 261,872 bytes in 3,726 blocks ==199== total heap usage: 62,898 allocs, 59,172 frees, 10,660,927 bytes allocated ==199== ==199== LEAK SUMMARY: ==199== definitely lost: 0 bytes in 0 blocks ==199== indirectly lost: 0 bytes in 0 blocks ==199== possibly lost: 96 bytes in 1 blocks ==199== still reachable: 44,775 bytes in 278 blocks ==199== of which reachable via heuristic: ==199== newarray : 5,800 bytes in 17 blocks ==199== suppressed: 217,001 bytes in 3,447 blocks ==199== Reachable blocks (those to which a pointer was found) are not shown. ==199== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==199== ==199== For counts of detected and suppressed errors, rerun with: -v ==199== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==200== Memcheck, a memory error detector ==200== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==200== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==200== Command: ./client-test SyncEvo::LogRedirectTest::largeChunk ==200== Parent PID: 111 ==200== ==200== ==200== HEAP SUMMARY: ==200== in use at exit: 261,880 bytes in 3,726 blocks ==200== total heap usage: 62,921 allocs, 59,195 frees, 11,295,570 bytes allocated ==200== ==200== LEAK SUMMARY: ==200== definitely lost: 0 bytes in 0 blocks ==200== indirectly lost: 0 bytes in 0 blocks ==200== possibly lost: 96 bytes in 1 blocks ==200== still reachable: 44,775 bytes in 278 blocks ==200== of which reachable via heuristic: ==200== newarray : 5,800 bytes in 17 blocks ==200== suppressed: 217,009 bytes in 3,447 blocks ==200== Reachable blocks (those to which a pointer was found) are not shown. ==200== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==200== ==200== For counts of detected and suppressed errors, rerun with: -v ==200== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==201== Memcheck, a memory error detector ==201== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==201== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==201== Command: ./client-test SyncEvo::LogRedirectTest::streams ==201== Parent PID: 111 ==201== ==201== ==201== HEAP SUMMARY: ==201== in use at exit: 261,880 bytes in 3,726 blocks ==201== total heap usage: 62,926 allocs, 59,200 frees, 10,664,407 bytes allocated ==201== ==201== LEAK SUMMARY: ==201== definitely lost: 0 bytes in 0 blocks ==201== indirectly lost: 0 bytes in 0 blocks ==201== possibly lost: 96 bytes in 1 blocks ==201== still reachable: 44,775 bytes in 278 blocks ==201== of which reachable via heuristic: ==201== newarray : 5,800 bytes in 17 blocks ==201== suppressed: 217,009 bytes in 3,447 blocks ==201== Reachable blocks (those to which a pointer was found) are not shown. ==201== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==201== ==201== For counts of detected and suppressed errors, rerun with: -v ==201== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==202== Memcheck, a memory error detector ==202== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==202== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==202== Command: ./client-test SyncEvo::LogRedirectTest::overload ==202== Parent PID: 111 ==202== ==202== ==202== HEAP SUMMARY: ==202== in use at exit: 261,856 bytes in 3,726 blocks ==202== total heap usage: 70,927 allocs, 67,201 frees, 12,035,252 bytes allocated ==202== ==202== LEAK SUMMARY: ==202== definitely lost: 0 bytes in 0 blocks ==202== indirectly lost: 0 bytes in 0 blocks ==202== possibly lost: 96 bytes in 1 blocks ==202== still reachable: 44,775 bytes in 278 blocks ==202== of which reachable via heuristic: ==202== newarray : 5,800 bytes in 17 blocks ==202== suppressed: 216,985 bytes in 3,447 blocks ==202== Reachable blocks (those to which a pointer was found) are not shown. ==202== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==202== ==202== For counts of detected and suppressed errors, rerun with: -v ==202== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==203== Memcheck, a memory error detector ==203== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==203== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==203== Command: ./client-test SyncEvo::LogRedirectTest::glib ==203== Parent PID: 111 ==203== ==203== ==203== HEAP SUMMARY: ==203== in use at exit: 261,946 bytes in 3,732 blocks ==203== total heap usage: 63,030 allocs, 59,298 frees, 10,769,847 bytes allocated ==203== ==203== LEAK SUMMARY: ==203== definitely lost: 0 bytes in 0 blocks ==203== indirectly lost: 0 bytes in 0 blocks ==203== possibly lost: 96 bytes in 1 blocks ==203== still reachable: 44,817 bytes in 283 blocks ==203== of which reachable via heuristic: ==203== newarray : 5,800 bytes in 17 blocks ==203== suppressed: 217,033 bytes in 3,448 blocks ==203== Reachable blocks (those to which a pointer was found) are not shown. ==203== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==203== ==203== For counts of detected and suppressed errors, rerun with: -v ==203== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==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 SyncEvo::TimespecTest::add ==204== Parent PID: 111 ==204== ==204== ==204== HEAP SUMMARY: ==204== in use at exit: 261,848 bytes in 3,726 blocks ==204== total heap usage: 62,862 allocs, 59,136 frees, 10,652,954 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: 96 bytes in 1 blocks ==204== still reachable: 44,743 bytes in 278 blocks ==204== of which reachable via heuristic: ==204== newarray : 5,800 bytes in 17 blocks ==204== suppressed: 217,009 bytes in 3,447 blocks ==204== Reachable blocks (those to which a pointer was found) are not shown. ==204== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==204== ==204== For counts of detected and suppressed errors, rerun with: -v ==204== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==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 SyncEvo::TimespecTest::substract ==205== Parent PID: 111 ==205== ==205== ==205== HEAP SUMMARY: ==205== in use at exit: 261,840 bytes in 3,726 blocks ==205== total heap usage: 62,863 allocs, 59,137 frees, 10,653,081 bytes allocated ==205== ==205== LEAK SUMMARY: ==205== definitely lost: 0 bytes in 0 blocks ==205== indirectly lost: 0 bytes in 0 blocks ==205== possibly lost: 96 bytes in 1 blocks ==205== still reachable: 44,743 bytes in 278 blocks ==205== of which reachable via heuristic: ==205== newarray : 5,800 bytes in 17 blocks ==205== suppressed: 217,001 bytes in 3,447 blocks ==205== Reachable blocks (those to which a pointer was found) are not shown. ==205== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==205== ==205== For counts of detected and suppressed errors, rerun with: -v ==205== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==206== Memcheck, a memory error detector ==206== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==206== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==206== Command: ./client-test SyncEvo::StringEscapeTest::escape ==206== Parent PID: 111 ==206== ==206== ==206== HEAP SUMMARY: ==206== in use at exit: 261,832 bytes in 3,726 blocks ==206== total heap usage: 62,890 allocs, 59,164 frees, 10,654,336 bytes allocated ==206== ==206== LEAK SUMMARY: ==206== definitely lost: 0 bytes in 0 blocks ==206== indirectly lost: 0 bytes in 0 blocks ==206== possibly lost: 96 bytes in 1 blocks ==206== still reachable: 44,743 bytes in 278 blocks ==206== of which reachable via heuristic: ==206== newarray : 5,800 bytes in 17 blocks ==206== suppressed: 216,993 bytes in 3,447 blocks ==206== Reachable blocks (those to which a pointer was found) are not shown. ==206== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==206== ==206== For counts of detected and suppressed errors, rerun with: -v ==206== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==207== Memcheck, a memory error detector ==207== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==207== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==207== Command: ./client-test SyncEvo::StringEscapeTest::unescape ==207== Parent PID: 111 ==207== ==207== ==207== HEAP SUMMARY: ==207== in use at exit: 261,840 bytes in 3,726 blocks ==207== total heap usage: 62,869 allocs, 59,143 frees, 10,653,320 bytes allocated ==207== ==207== LEAK SUMMARY: ==207== definitely lost: 0 bytes in 0 blocks ==207== indirectly lost: 0 bytes in 0 blocks ==207== possibly lost: 96 bytes in 1 blocks ==207== still reachable: 44,743 bytes in 278 blocks ==207== of which reachable via heuristic: ==207== newarray : 5,800 bytes in 17 blocks ==207== suppressed: 217,001 bytes in 3,447 blocks ==207== Reachable blocks (those to which a pointer was found) are not shown. ==207== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==207== ==207== For counts of detected and suppressed errors, rerun with: -v ==207== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==208== Memcheck, a memory error detector ==208== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==208== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==208== Command: ./client-test SyncEvo::LCSTest::lcs ==208== Parent PID: 111 ==208== ==208== ==208== HEAP SUMMARY: ==208== in use at exit: 261,832 bytes in 3,726 blocks ==208== total heap usage: 62,890 allocs, 59,164 frees, 10,673,010 bytes allocated ==208== ==208== LEAK SUMMARY: ==208== definitely lost: 0 bytes in 0 blocks ==208== indirectly lost: 0 bytes in 0 blocks ==208== possibly lost: 96 bytes in 1 blocks ==208== still reachable: 44,743 bytes in 278 blocks ==208== of which reachable via heuristic: ==208== newarray : 5,800 bytes in 17 blocks ==208== suppressed: 216,993 bytes in 3,447 blocks ==208== Reachable blocks (those to which a pointer was found) are not shown. ==208== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==208== ==208== For counts of detected and suppressed errors, rerun with: -v ==208== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==209== Memcheck, a memory error detector ==209== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==209== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==209== Command: ./client-test SyncEvo::ForkExecTest::testTrue ==209== Parent PID: 111 ==209== ==209== ==209== HEAP SUMMARY: ==209== in use at exit: 311,386 bytes in 4,351 blocks ==209== total heap usage: 64,337 allocs, 59,986 frees, 10,829,433 bytes allocated ==209== ==209== LEAK SUMMARY: ==209== definitely lost: 0 bytes in 0 blocks ==209== indirectly lost: 0 bytes in 0 blocks ==209== possibly lost: 528 bytes in 2 blocks ==209== still reachable: 54,620 bytes in 393 blocks ==209== of which reachable via heuristic: ==209== length64 : 528 bytes in 9 blocks ==209== newarray : 5,976 bytes in 28 blocks ==209== suppressed: 249,870 bytes in 3,908 blocks ==209== Reachable blocks (those to which a pointer was found) are not shown. ==209== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==209== ==209== For counts of detected and suppressed errors, rerun with: -v ==209== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==212== Memcheck, a memory error detector ==212== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==212== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==212== Command: /bin/true ==212== Parent PID: 209 ==212== ==212== ==212== HEAP SUMMARY: ==212== in use at exit: 0 bytes in 0 blocks ==212== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==212== ==212== All heap blocks were freed -- no leaks are possible ==212== ==212== For counts of detected and suppressed errors, rerun with: -v ==212== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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 SyncEvo::ForkExecTest::testFalse ==213== Parent PID: 111 ==213== ==213== ==213== HEAP SUMMARY: ==213== in use at exit: 311,394 bytes in 4,351 blocks ==213== total heap usage: 64,367 allocs, 60,016 frees, 10,834,348 bytes allocated ==213== ==213== LEAK SUMMARY: ==213== definitely lost: 0 bytes in 0 blocks ==213== indirectly lost: 0 bytes in 0 blocks ==213== possibly lost: 528 bytes in 2 blocks ==213== still reachable: 54,620 bytes in 393 blocks ==213== of which reachable via heuristic: ==213== length64 : 528 bytes in 9 blocks ==213== newarray : 5,976 bytes in 28 blocks ==213== suppressed: 249,878 bytes in 3,908 blocks ==213== Reachable blocks (those to which a pointer was found) are not shown. ==213== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==213== ==213== For counts of detected and suppressed errors, rerun with: -v ==213== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==216== Memcheck, a memory error detector ==216== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==216== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==216== Command: /bin/false ==216== Parent PID: 213 ==216== ==216== ==216== HEAP SUMMARY: ==216== in use at exit: 0 bytes in 0 blocks ==216== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==216== ==216== All heap blocks were freed -- no leaks are possible ==216== ==216== For counts of detected and suppressed errors, rerun with: -v ==216== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==217== Memcheck, a memory error detector ==217== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==217== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==217== Command: ./client-test SyncEvo::ForkExecTest::testPath ==217== Parent PID: 111 ==217== ==217== ==217== HEAP SUMMARY: ==217== in use at exit: 311,378 bytes in 4,351 blocks ==217== total heap usage: 64,340 allocs, 59,989 frees, 10,829,446 bytes allocated ==217== ==217== LEAK SUMMARY: ==217== definitely lost: 0 bytes in 0 blocks ==217== indirectly lost: 0 bytes in 0 blocks ==217== possibly lost: 528 bytes in 2 blocks ==217== still reachable: 54,620 bytes in 393 blocks ==217== of which reachable via heuristic: ==217== length64 : 528 bytes in 9 blocks ==217== newarray : 5,976 bytes in 28 blocks ==217== suppressed: 249,862 bytes in 3,908 blocks ==217== Reachable blocks (those to which a pointer was found) are not shown. ==217== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==217== ==217== For counts of detected and suppressed errors, rerun with: -v ==217== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==220== Memcheck, a memory error detector ==220== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==220== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==220== Command: /bin/true ==220== Parent PID: 217 ==220== ==220== ==220== HEAP SUMMARY: ==220== in use at exit: 0 bytes in 0 blocks ==220== total heap usage: 0 allocs, 0 frees, 0 bytes allocated ==220== ==220== All heap blocks were freed -- no leaks are possible ==220== ==220== For counts of detected and suppressed errors, rerun with: -v ==220== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==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 SyncEvo::ForkExecTest::testNotFound ==221== Parent PID: 111 ==221== ==221== ==221== HEAP SUMMARY: ==221== in use at exit: 317,197 bytes in 4,386 blocks ==221== total heap usage: 64,081 allocs, 59,695 frees, 10,808,759 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: 528 bytes in 2 blocks ==221== still reachable: 59,175 bytes in 407 blocks ==221== of which reachable via heuristic: ==221== length64 : 528 bytes in 9 blocks ==221== newarray : 5,976 bytes in 28 blocks ==221== suppressed: 250,518 bytes in 3,922 blocks ==221== Reachable blocks (those to which a pointer was found) are not shown. ==221== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==221== ==221== For counts of detected and suppressed errors, rerun with: -v ==221== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==224== Memcheck, a memory error detector ==224== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==224== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==224== Command: ./client-test SyncEvo::ForkExecTest::testNotFound ==224== Parent PID: 221 ==224== ==224== ==224== HEAP SUMMARY: ==224== in use at exit: 1,424,475 bytes in 14,320 blocks ==224== total heap usage: 64,004 allocs, 49,684 frees, 10,770,229 bytes allocated ==224== ==224== LEAK SUMMARY: ==224== definitely lost: 0 bytes in 0 blocks ==224== indirectly lost: 0 bytes in 0 blocks ==224== possibly lost: 96 bytes in 1 blocks ==224== still reachable: 994,345 bytes in 7,741 blocks ==224== of which reachable via heuristic: ==224== length64 : 528 bytes in 9 blocks ==224== newarray : 5,976 bytes in 28 blocks ==224== suppressed: 423,058 bytes in 6,523 blocks ==224== Reachable blocks (those to which a pointer was found) are not shown. ==224== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==224== ==224== For counts of detected and suppressed errors, rerun with: -v ==224== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 169 from 169) ==225== Memcheck, a memory error detector ==225== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==225== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==225== Command: ./client-test SyncEvo::ForkExecTest::testEnv1 ==225== Parent PID: 111 ==225== ==225== ==225== HEAP SUMMARY: ==225== in use at exit: 311,498 bytes in 4,349 blocks ==225== total heap usage: 64,389 allocs, 60,040 frees, 10,861,335 bytes allocated ==225== ==225== LEAK SUMMARY: ==225== definitely lost: 0 bytes in 0 blocks ==225== indirectly lost: 0 bytes in 0 blocks ==225== possibly lost: 528 bytes in 2 blocks ==225== still reachable: 54,852 bytes in 394 blocks ==225== of which reachable via heuristic: ==225== length64 : 528 bytes in 9 blocks ==225== newarray : 5,976 bytes in 28 blocks ==225== suppressed: 249,750 bytes in 3,905 blocks ==225== Reachable blocks (those to which a pointer was found) are not shown. ==225== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==225== ==225== For counts of detected and suppressed errors, rerun with: -v ==225== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==228== Memcheck, a memory error detector ==228== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==228== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==228== Command: /usr/bin/env ==228== Parent PID: 225 ==228== ==228== ==228== HEAP SUMMARY: ==228== in use at exit: 0 bytes in 0 blocks ==228== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==228== ==228== All heap blocks were freed -- no leaks are possible ==228== ==228== For counts of detected and suppressed errors, rerun with: -v ==228== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==229== Memcheck, a memory error detector ==229== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==229== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==229== Command: ./client-test SyncEvo::ForkExecTest::testEnv2 ==229== Parent PID: 111 ==229== ==229== ==229== HEAP SUMMARY: ==229== in use at exit: 311,554 bytes in 4,351 blocks ==229== total heap usage: 64,407 allocs, 60,056 frees, 10,871,226 bytes allocated ==229== ==229== LEAK SUMMARY: ==229== definitely lost: 0 bytes in 0 blocks ==229== indirectly lost: 0 bytes in 0 blocks ==229== possibly lost: 528 bytes in 2 blocks ==229== still reachable: 54,852 bytes in 394 blocks ==229== of which reachable via heuristic: ==229== length64 : 528 bytes in 9 blocks ==229== newarray : 5,976 bytes in 28 blocks ==229== suppressed: 249,806 bytes in 3,907 blocks ==229== Reachable blocks (those to which a pointer was found) are not shown. ==229== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==229== ==229== For counts of detected and suppressed errors, rerun with: -v ==229== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==232== Memcheck, a memory error detector ==232== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==232== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==232== Command: /usr/bin/env ==232== Parent PID: 229 ==232== ==232== ==232== HEAP SUMMARY: ==232== in use at exit: 0 bytes in 0 blocks ==232== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==232== ==232== All heap blocks were freed -- no leaks are possible ==232== ==232== For counts of detected and suppressed errors, rerun with: -v ==232== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==233== Memcheck, a memory error detector ==233== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==233== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==233== Command: ./client-test SyncEvo::ForkExecTest::testOutErr ==233== Parent PID: 111 ==233== ==233== ==233== HEAP SUMMARY: ==233== in use at exit: 317,922 bytes in 4,396 blocks ==233== total heap usage: 72,643 allocs, 68,247 frees, 11,105,397 bytes allocated ==233== ==233== LEAK SUMMARY: ==233== definitely lost: 0 bytes in 0 blocks ==233== indirectly lost: 0 bytes in 0 blocks ==233== possibly lost: 528 bytes in 2 blocks ==233== still reachable: 59,772 bytes in 412 blocks ==233== of which reachable via heuristic: ==233== length64 : 528 bytes in 9 blocks ==233== newarray : 5,976 bytes in 28 blocks ==233== suppressed: 250,646 bytes in 3,927 blocks ==233== Reachable blocks (those to which a pointer was found) are not shown. ==233== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==233== ==233== For counts of detected and suppressed errors, rerun with: -v ==233== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==236== Memcheck, a memory error detector ==236== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==236== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==236== Command: /usr/bin/env ==236== Parent PID: 233 ==236== ==236== ==236== HEAP SUMMARY: ==236== in use at exit: 0 bytes in 0 blocks ==236== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==236== ==236== All heap blocks were freed -- no leaks are possible ==236== ==236== For counts of detected and suppressed errors, rerun with: -v ==236== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==237== Memcheck, a memory error detector ==237== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==237== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==237== Command: ./client-test SyncEvo::ForkExecTest::testMerged ==237== Parent PID: 111 ==237== ==237== ==237== HEAP SUMMARY: ==237== in use at exit: 318,948 bytes in 4,405 blocks ==237== total heap usage: 72,875 allocs, 68,470 frees, 11,120,891 bytes allocated ==237== ==237== LEAK SUMMARY: ==237== definitely lost: 0 bytes in 0 blocks ==237== indirectly lost: 0 bytes in 0 blocks ==237== possibly lost: 528 bytes in 2 blocks ==237== still reachable: 59,284 bytes in 402 blocks ==237== of which reachable via heuristic: ==237== length64 : 528 bytes in 9 blocks ==237== newarray : 5,976 bytes in 28 blocks ==237== suppressed: 252,408 bytes in 3,949 blocks ==237== Reachable blocks (those to which a pointer was found) are not shown. ==237== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==237== ==237== For counts of detected and suppressed errors, rerun with: -v ==237== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 68 from 68) ==240== Memcheck, a memory error detector ==240== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==240== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==240== Command: /usr/bin/env ==240== Parent PID: 237 ==240== ==240== ==240== HEAP SUMMARY: ==240== in use at exit: 0 bytes in 0 blocks ==240== total heap usage: 3 allocs, 3 frees, 4,140 bytes allocated ==240== ==240== All heap blocks were freed -- no leaks are possible ==240== ==240== For counts of detected and suppressed errors, rerun with: -v ==240== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==241== Memcheck, a memory error detector ==241== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==241== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==241== Command: ./client-test SyncEvo::CmdlineTest::testFramework ==241== Parent PID: 111 ==241== ==241== ==241== HEAP SUMMARY: ==241== in use at exit: 261,848 bytes in 3,726 blocks ==241== total heap usage: 62,924 allocs, 59,198 frees, 10,921,998 bytes allocated ==241== ==241== LEAK SUMMARY: ==241== definitely lost: 0 bytes in 0 blocks ==241== indirectly lost: 0 bytes in 0 blocks ==241== possibly lost: 96 bytes in 1 blocks ==241== still reachable: 44,743 bytes in 278 blocks ==241== of which reachable via heuristic: ==241== newarray : 5,800 bytes in 17 blocks ==241== suppressed: 217,009 bytes in 3,447 blocks ==241== Reachable blocks (those to which a pointer was found) are not shown. ==241== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==241== ==241== For counts of detected and suppressed errors, rerun with: -v ==241== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==242== Memcheck, a memory error detector ==242== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==242== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==242== Command: ./client-test SyncEvo::CmdlineTest::testSetupScheduleWorld ==242== Parent PID: 111 ==242== ==242== ==242== HEAP SUMMARY: ==242== in use at exit: 810,579 bytes in 9,698 blocks ==242== total heap usage: 230,957 allocs, 221,259 frees, 24,013,008 bytes allocated ==242== ==242== LEAK SUMMARY: ==242== definitely lost: 0 bytes in 0 blocks ==242== indirectly lost: 0 bytes in 0 blocks ==242== possibly lost: 960 bytes in 3 blocks ==242== still reachable: 109,477 bytes in 358 blocks ==242== of which reachable via heuristic: ==242== length64 : 5,368 bytes in 82 blocks ==242== newarray : 6,360 bytes in 52 blocks ==242== suppressed: 625,654 bytes in 8,758 blocks ==242== Reachable blocks (those to which a pointer was found) are not shown. ==242== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==242== ==242== For counts of detected and suppressed errors, rerun with: -v ==242== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==313== Memcheck, a memory error detector ==313== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==313== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==313== Command: ./client-test SyncEvo::CmdlineTest::testFutureConfig ==313== Parent PID: 111 ==313== ==313== ==313== HEAP SUMMARY: ==313== in use at exit: 807,481 bytes in 9,650 blocks ==313== total heap usage: 234,937 allocs, 225,287 frees, 25,237,039 bytes allocated ==313== ==313== LEAK SUMMARY: ==313== definitely lost: 0 bytes in 0 blocks ==313== indirectly lost: 0 bytes in 0 blocks ==313== possibly lost: 960 bytes in 3 blocks ==313== still reachable: 109,357 bytes in 358 blocks ==313== of which reachable via heuristic: ==313== length64 : 5,368 bytes in 82 blocks ==313== newarray : 6,360 bytes in 52 blocks ==313== suppressed: 622,676 bytes in 8,710 blocks ==313== Reachable blocks (those to which a pointer was found) are not shown. ==313== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==313== ==313== For counts of detected and suppressed errors, rerun with: -v ==313== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==382== Memcheck, a memory error detector ==382== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==382== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==382== Command: ./client-test SyncEvo::CmdlineTest::testPeerConfigMigration ==382== Parent PID: 111 ==382== ==382== ==382== HEAP SUMMARY: ==382== in use at exit: 809,562 bytes in 9,679 blocks ==382== total heap usage: 260,509 allocs, 250,830 frees, 30,208,995 bytes allocated ==382== ==382== LEAK SUMMARY: ==382== definitely lost: 0 bytes in 0 blocks ==382== indirectly lost: 0 bytes in 0 blocks ==382== possibly lost: 960 bytes in 3 blocks ==382== still reachable: 109,261 bytes in 357 blocks ==382== of which reachable via heuristic: ==382== length64 : 5,368 bytes in 82 blocks ==382== newarray : 6,360 bytes in 52 blocks ==382== suppressed: 624,853 bytes in 8,740 blocks ==382== Reachable blocks (those to which a pointer was found) are not shown. ==382== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==382== ==382== For counts of detected and suppressed errors, rerun with: -v ==382== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==451== Memcheck, a memory error detector ==451== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==451== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==451== Command: ./client-test SyncEvo::CmdlineTest::testContextConfigMigration ==451== Parent PID: 111 ==451== ==451== ==451== HEAP SUMMARY: ==451== in use at exit: 807,505 bytes in 9,650 blocks ==451== total heap usage: 274,304 allocs, 264,654 frees, 32,633,816 bytes allocated ==451== ==451== LEAK SUMMARY: ==451== definitely lost: 0 bytes in 0 blocks ==451== indirectly lost: 0 bytes in 0 blocks ==451== possibly lost: 960 bytes in 3 blocks ==451== still reachable: 109,365 bytes in 358 blocks ==451== of which reachable via heuristic: ==451== length64 : 5,368 bytes in 82 blocks ==451== newarray : 6,360 bytes in 52 blocks ==451== suppressed: 622,692 bytes in 8,710 blocks ==451== Reachable blocks (those to which a pointer was found) are not shown. ==451== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==451== ==451== For counts of detected and suppressed errors, rerun with: -v ==451== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==520== Memcheck, a memory error detector ==520== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==520== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==520== Command: ./client-test SyncEvo::CmdlineTest::testSetupDefault ==520== Parent PID: 111 ==520== ==520== ==520== HEAP SUMMARY: ==520== in use at exit: 808,233 bytes in 9,664 blocks ==520== total heap usage: 199,213 allocs, 189,549 frees, 20,243,681 bytes allocated ==520== ==520== LEAK SUMMARY: ==520== definitely lost: 0 bytes in 0 blocks ==520== indirectly lost: 0 bytes in 0 blocks ==520== possibly lost: 960 bytes in 3 blocks ==520== still reachable: 109,749 bytes in 362 blocks ==520== of which reachable via heuristic: ==520== length64 : 5,368 bytes in 82 blocks ==520== newarray : 6,360 bytes in 52 blocks ==520== suppressed: 623,036 bytes in 8,720 blocks ==520== Reachable blocks (those to which a pointer was found) are not shown. ==520== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==520== ==520== For counts of detected and suppressed errors, rerun with: -v ==520== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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 SyncEvo::CmdlineTest::testSetupRenamed ==576== Parent PID: 111 ==576== ==576== ==576== HEAP SUMMARY: ==576== in use at exit: 809,490 bytes in 9,677 blocks ==576== total heap usage: 199,343 allocs, 189,666 frees, 19,840,678 bytes allocated ==576== ==576== LEAK SUMMARY: ==576== definitely lost: 0 bytes in 0 blocks ==576== indirectly lost: 0 bytes in 0 blocks ==576== possibly lost: 960 bytes in 3 blocks ==576== still reachable: 109,269 bytes in 357 blocks ==576== of which reachable via heuristic: ==576== length64 : 5,368 bytes in 82 blocks ==576== newarray : 6,360 bytes in 52 blocks ==576== suppressed: 624,773 bytes in 8,738 blocks ==576== Reachable blocks (those to which a pointer was found) are not shown. ==576== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==576== ==576== For counts of detected and suppressed errors, rerun with: -v ==576== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==633== Memcheck, a memory error detector ==633== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==633== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==633== Command: ./client-test SyncEvo::CmdlineTest::testSetupFunambol ==633== Parent PID: 111 ==633== ==633== ==633== HEAP SUMMARY: ==633== in use at exit: 801,055 bytes in 9,539 blocks ==633== total heap usage: 200,078 allocs, 190,539 frees, 19,870,855 bytes allocated ==633== ==633== LEAK SUMMARY: ==633== definitely lost: 0 bytes in 0 blocks ==633== indirectly lost: 0 bytes in 0 blocks ==633== possibly lost: 960 bytes in 3 blocks ==633== still reachable: 106,925 bytes in 347 blocks ==633== of which reachable via heuristic: ==633== length64 : 5,368 bytes in 82 blocks ==633== newarray : 6,360 bytes in 52 blocks ==633== suppressed: 618,682 bytes in 8,610 blocks ==633== Reachable blocks (those to which a pointer was found) are not shown. ==633== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==633== ==633== For counts of detected and suppressed errors, rerun with: -v ==633== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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 SyncEvo::CmdlineTest::testSetupSynthesis ==689== Parent PID: 111 ==689== ==689== ==689== HEAP SUMMARY: ==689== in use at exit: 809,570 bytes in 9,679 blocks ==689== total heap usage: 157,935 allocs, 148,256 frees, 18,197,291 bytes allocated ==689== ==689== LEAK SUMMARY: ==689== definitely lost: 0 bytes in 0 blocks ==689== indirectly lost: 0 bytes in 0 blocks ==689== possibly lost: 960 bytes in 3 blocks ==689== still reachable: 109,269 bytes in 357 blocks ==689== of which reachable via heuristic: ==689== length64 : 5,368 bytes in 82 blocks ==689== newarray : 6,360 bytes in 52 blocks ==689== suppressed: 624,853 bytes in 8,740 blocks ==689== Reachable blocks (those to which a pointer was found) are not shown. ==689== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==689== ==689== For counts of detected and suppressed errors, rerun with: -v ==689== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==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 SyncEvo::CmdlineTest::testPrintServers ==722== Parent PID: 111 ==722== ==722== ==722== HEAP SUMMARY: ==722== in use at exit: 809,498 bytes in 9,677 blocks ==722== total heap usage: 372,930 allocs, 363,253 frees, 36,516,408 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: 960 bytes in 3 blocks ==722== still reachable: 109,269 bytes in 357 blocks ==722== of which reachable via heuristic: ==722== length64 : 5,368 bytes in 82 blocks ==722== newarray : 6,360 bytes in 52 blocks ==722== suppressed: 624,781 bytes in 8,738 blocks ==722== Reachable blocks (those to which a pointer was found) are not shown. ==722== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==722== ==722== For counts of detected and suppressed errors, rerun with: -v ==722== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==865== Memcheck, a memory error detector ==865== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==865== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==865== Command: ./client-test SyncEvo::CmdlineTest::testPrintFileTemplates ==865== Parent PID: 111 ==865== ==865== ==865== HEAP SUMMARY: ==865== in use at exit: 807,985 bytes in 9,650 blocks ==865== total heap usage: 239,141 allocs, 229,491 frees, 28,864,969 bytes allocated ==865== ==865== LEAK SUMMARY: ==865== definitely lost: 0 bytes in 0 blocks ==865== indirectly lost: 0 bytes in 0 blocks ==865== possibly lost: 960 bytes in 3 blocks ==865== still reachable: 109,005 bytes in 355 blocks ==865== of which reachable via heuristic: ==865== length64 : 5,368 bytes in 82 blocks ==865== newarray : 6,360 bytes in 52 blocks ==865== suppressed: 623,532 bytes in 8,713 blocks ==865== Reachable blocks (those to which a pointer was found) are not shown. ==865== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==865== ==865== For counts of detected and suppressed errors, rerun with: -v ==865== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==922== Memcheck, a memory error detector ==922== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==922== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==922== Command: ./client-test SyncEvo::CmdlineTest::testPrintFileTemplatesConfig ==922== Parent PID: 111 ==922== ==922== ==922== HEAP SUMMARY: ==922== in use at exit: 808,225 bytes in 9,664 blocks ==922== total heap usage: 241,152 allocs, 231,488 frees, 29,212,205 bytes allocated ==922== ==922== LEAK SUMMARY: ==922== definitely lost: 0 bytes in 0 blocks ==922== indirectly lost: 0 bytes in 0 blocks ==922== possibly lost: 960 bytes in 3 blocks ==922== still reachable: 109,749 bytes in 362 blocks ==922== of which reachable via heuristic: ==922== length64 : 5,368 bytes in 82 blocks ==922== newarray : 6,360 bytes in 52 blocks ==922== suppressed: 623,028 bytes in 8,720 blocks ==922== Reachable blocks (those to which a pointer was found) are not shown. ==922== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==922== ==922== For counts of detected and suppressed errors, rerun with: -v ==922== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) ==980== Memcheck, a memory error detector ==980== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==980== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==980== Command: ./client-test SyncEvo::CmdlineTest::testTemplate ==980== Parent PID: 111 ==980== ==980== ==980== HEAP SUMMARY: ==980== in use at exit: 261,920 bytes in 3,726 blocks ==980== total heap usage: 65,461 allocs, 61,735 frees, 11,834,698 bytes allocated ==980== ==980== LEAK SUMMARY: ==980== definitely lost: 0 bytes in 0 blocks ==980== indirectly lost: 0 bytes in 0 blocks ==980== possibly lost: 96 bytes in 1 blocks ==980== still reachable: 44,775 bytes in 278 blocks ==980== of which reachable via heuristic: ==980== newarray : 5,800 bytes in 17 blocks ==980== suppressed: 217,049 bytes in 3,447 blocks ==980== Reachable blocks (those to which a pointer was found) are not shown. ==980== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==980== ==980== For counts of detected and suppressed errors, rerun with: -v ==980== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==981== Memcheck, a memory error detector ==981== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==981== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==981== Command: ./client-test SyncEvo::CmdlineTest::testMatchTemplate ==981== Parent PID: 111 ==981== ==981== ==981== HEAP SUMMARY: ==981== in use at exit: 261,928 bytes in 3,726 blocks ==981== total heap usage: 64,744 allocs, 61,018 frees, 12,243,039 bytes allocated ==981== ==981== LEAK SUMMARY: ==981== definitely lost: 0 bytes in 0 blocks ==981== indirectly lost: 0 bytes in 0 blocks ==981== possibly lost: 96 bytes in 1 blocks ==981== still reachable: 44,839 bytes in 278 blocks ==981== of which reachable via heuristic: ==981== newarray : 5,800 bytes in 17 blocks ==981== suppressed: 216,993 bytes in 3,447 blocks ==981== Reachable blocks (those to which a pointer was found) are not shown. ==981== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==981== ==981== For counts of detected and suppressed errors, rerun with: -v ==981== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 61 from 61) ==982== Memcheck, a memory error detector ==982== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==982== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==982== Command: ./client-test SyncEvo::CmdlineTest::testAddSource ==982== Parent PID: 111 ==982== ==982== ==982== HEAP SUMMARY: ==982== in use at exit: 806,272 bytes in 9,621 blocks ==982== total heap usage: 239,285 allocs, 229,664 frees, 26,655,920 bytes allocated ==982== ==982== LEAK SUMMARY: ==982== definitely lost: 0 bytes in 0 blocks ==982== indirectly lost: 0 bytes in 0 blocks ==982== possibly lost: 960 bytes in 3 blocks ==982== still reachable: 108,485 bytes in 353 blocks ==982== of which reachable via heuristic: ==982== length64 : 5,368 bytes in 82 blocks ==982== newarray : 6,360 bytes in 52 blocks ==982== suppressed: 622,339 bytes in 8,686 blocks ==982== Reachable blocks (those to which a pointer was found) are not shown. ==982== To see them, rerun with: --leak-check=full --show-leak-kinds=all ==982== ==982== For counts of detected and suppressed errors, rerun with: -v ==982== ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 70 from 70) valgrindcheck: ./client-test SyncEvolution: final result 0 wrappercheck-102 line 100: RET=0 wrappercheck-102 line 101: set -e wrappercheck-102 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-calendar-factory wrappercheck-102 line 108: kill -INT -104 wrappercheck-102 line 108: kill -TERM -104 wrappercheck-102 line 108: kill -TERM 104 wrappercheck-102 line 110: KILL_PID=2217 wrappercheck-102 line 115: set +e wrappercheck-102 line 109: perl -e 'sleep(60); kill(9, -104);' wrappercheck-102 line 116: wait 104 wrappercheck-102 line 117: SUBRET=143 wrappercheck-102 line 118: case $SUBRET in wrappercheck-102 line 118: SUBRET=0 wrappercheck-102 line 120: SUBRET=0 wrappercheck-102 line 121: '[' 2217 ']' wwrappercheck-102 line 122: LC_ALL=C wwrappercheck-102 line 122: kill -KILL 2217 wrappercheck-102 line 122: msg= wrappercheck-102 line 123: grep -q 'No such process' wrappercheck-102 line 123: echo '' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2217 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-102 line 127: echo '' wrappercheck-102 line 129: wait 2217 wrappercheck-102 line 131: set -e wrappercheck-102 line 132: '[' 0 = 0 ']' wrappercheck-102 line 133: RET=0 wrappercheck-102 line 136: exit 0 wrappercheck-82 line 100: RET=0 wrappercheck-82 line 101: set -e wrappercheck-82 line 107: set +x *** killing and waiting for /usr/lib/evolution/evolution-addressbook-factory wrappercheck-82 line 108: kill -INT -84 wrappercheck-82 line 108: kill -TERM -84 wrappercheck-82 line 108: kill -TERM 84 wrappercheck-82 line 110: KILL_PID=2222 wrappercheck-82 line 109: perl -e 'sleep(60); kill(9, -84);' wrappercheck-82 line 115: set +e wrappercheck-82 line 116: wait 84 wrappercheck-82 line 117: SUBRET=143 wrappercheck-82 line 118: case $SUBRET in wrappercheck-82 line 118: SUBRET=0 wrappercheck-82 line 120: SUBRET=0 wrappercheck-82 line 121: '[' 2222 ']' wwrappercheck-82 line 122: LC_ALL=C wwrappercheck-82 line 122: kill -KILL 2222 wrappercheck-82 line 122: msg= wrappercheck-82 line 123: echo '' wrappercheck-82 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2222 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-82 line 127: echo '' wrappercheck-82 line 129: wait 2222 wrappercheck-82 line 131: set -e wrappercheck-82 line 132: '[' 0 = 0 ']' wrappercheck-82 line 133: RET=0 wrappercheck-82 line 136: exit 0 wrappercheck-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 -29 wrappercheck-25 line 108: kill -TERM -29 wrappercheck-25 line 108: kill -TERM 29 wrappercheck-25 line 110: KILL_PID=2227 wrappercheck-25 line 109: perl -e 'sleep(60); kill(9, -29);' wrappercheck-25 line 115: set +e wrappercheck-25 line 116: wait 29 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: '[' 2227 ']' wwrappercheck-25 line 122: LC_ALL=C wwrappercheck-25 line 122: kill -KILL 2227 wrappercheck-25 line 122: msg= wrappercheck-25 line 123: echo '' wrappercheck-25 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2227 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-25 line 127: echo '' wrappercheck-25 line 129: wait 2227 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-18 line 100: RET=0 wrappercheck-18 line 101: set -e wrappercheck-18 line 107: set +x *** killing and waiting for dbus-monitor wrappercheck-18 line 108: kill -INT -22 wrappercheck-18 line 108: kill -TERM -22 wrappercheck-18 line 108: kill -TERM 22 wrappercheck-18 line 110: KILL_PID=2232 wrappercheck-18 line 115: set +e wrappercheck-18 line 116: wait 22 wrappercheck-18 line 109: perl -e 'sleep(60); kill(9, -22);' wrappercheck-18 line 117: SUBRET=143 wrappercheck-18 line 118: case $SUBRET in wrappercheck-18 line 118: SUBRET=0 wrappercheck-18 line 120: SUBRET=0 wrappercheck-18 line 121: '[' 2232 ']' wwrappercheck-18 line 122: LC_ALL=C wwrappercheck-18 line 122: kill -KILL 2232 wrappercheck-18 line 122: msg= wrappercheck-18 line 123: echo '' wrappercheck-18 line 123: grep -q 'No such process' /data/runtests/work/sources/syncevolution/test/wrappercheck.sh: line 130: 2232 Killed perl -e "sleep(60); kill(9, -$BACKGROUND_PID);" wrappercheck-18 line 127: echo '' wrappercheck-18 line 129: wait 2232 wrappercheck-18 line 131: set -e wrappercheck-18 line 132: '[' 0 = 0 ']' wrappercheck-18 line 133: RET=0 wrappercheck-18 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.TsdflvKy4c Fri Jan 5 16:17:22 2018 UTC (+ 805.8s / 806.1s) === cleaning up ===