CURRENT_TEST: encryption.innodb-discard-import
mysqltest: At line 51: query 'call innodb_insert_proc(2000)' failed: <Unknown> (2013): Lost connection to server during query

The result from queries just before the failure was:
< snip >
show warnings;
Level	Code	Message
create table t4(c1 bigint not null, b char(200))  engine=innodb page_compressed=1;
show warnings;
Level	Code	Message
create procedure innodb_insert_proc (repeat_count int)
begin
declare current_num int;
set current_num = 0;
while current_num < repeat_count do
insert into t1 values(current_num, repeat('foobar',30));
insert into t2 values(current_num, repeat('barfoo',30));
insert into t3 values(current_num, repeat('tmpres',30));
insert into t4 values(current_num, repeat('mysql',30));
set current_num = current_num + 1;
end while;
end//
commit;
set autocommit=0;
call innodb_insert_proc(2000);

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