Commit 259394ae authored by Sergei Golubchik's avatar Sergei Golubchik

disable mariabackup.incremental_encrypted,64k on 32bit

it allocates 1GB of memory, it causes failures in CI
parent e2f95ebb
......@@ -7,6 +7,12 @@ if (!$EXAMPLE_KEY_MANAGEMENT_SO)
}
call mtr.add_suppression("InnoDB: New log files created");
if (`select @@innodb_page_size=65536`)
{
# this needs too much memory for 32bit
source include/have_64bit.inc;
}
let $basedir=$MYSQLTEST_VARDIR/tmp/backup;
let $incremental_dir=$MYSQLTEST_VARDIR/tmp/backup_inc1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment