CURRENT_TEST: encryption.innodb-checksum-algorithm
mysqltest: At line 34: query 'insert into tce(b) values (repeat('secret',20))' failed: <Unknown> (2013): Lost connection to server during query

The result from queries just before the failure was:
< snip >
create table tce(a serial, b blob, index(b(10))) engine=innodb
ROW_FORMAT=COMPRESSED encrypted=yes;
create table tc(a serial, b blob, index(b(10))) engine=innodb
ROW_FORMAT=COMPRESSED encrypted=no;
Warnings:
Warning	140	InnoDB: ENCRYPTED=NO implies ENCRYPTION_KEY_ID=1
create table te(a serial, b blob, index(b(10))) engine=innodb
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));

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