CURRENT_TEST: encryption.innodb-checksum-algorithm
mysqltest: At line 44: query 'FLUSH TABLES tce, tc, te, t, tpe, tp FOR EXPORT' failed: <Unknown> (2013): Lost connection to server during query

The result from queries just before the failure was:
< snip >
encrypted=yes;
create table t(a serial, b blob, index(b(10))) engine=innodb
encrypted=no;
Warnings:
Warning	140	InnoDB: ENCRYPTED=NO implies ENCRYPTION_KEY_ID=1
create table tpe(a serial, b blob, index(b(10))) engine=innodb
page_compressed=yes encrypted=yes;
create table tp(a serial, b blob, index(b(10))) engine=innodb
page_compressed=yes encrypted=no;
Warnings:
Warning	140	InnoDB: ENCRYPTED=NO implies ENCRYPTION_KEY_ID=1
begin;
insert into tce(b) values (repeat('secret',20));
insert into tc(b) values (repeat('secret',20));
insert into te(b) values (repeat('secret',20));
insert into t(b) values (repeat('secret',20));
insert into tpe(b) values (repeat('secret',20));
insert into tp(b) values (repeat('secret',20));
commit;
FLUSH TABLES tce, tc, te, t, tpe, tp FOR EXPORT;

More results from queries before failure can be found in /dev/shm/var/2/log/innodb-checksum-algorithm,32k.log
