Skip to content

Commit 259394a

Browse files
committed
disable mariabackup.incremental_encrypted,64k on 32bit
it allocates 1GB of memory, it causes failures in CI
1 parent e2f95eb commit 259394a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

mysql-test/suite/mariabackup/incremental_encrypted.test

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ if (!$EXAMPLE_KEY_MANAGEMENT_SO)
77
}
88
call mtr.add_suppression("InnoDB: New log files created");
99

10+
if (`select @@innodb_page_size=65536`)
11+
{
12+
# this needs too much memory for 32bit
13+
source include/have_64bit.inc;
14+
}
15+
1016

1117
let $basedir=$MYSQLTEST_VARDIR/tmp/backup;
1218
let $incremental_dir=$MYSQLTEST_VARDIR/tmp/backup_inc1;

0 commit comments

Comments
 (0)