mirror of
https://github.com/MariaDB/server.git
synced 2025-11-10 23:02:54 +03:00
A number of tests often trip warnings on Valgrind, because Valgrind runs all threads in a single thread and may cause starvation: InnoDB: A long wait (... seconds) was observed for dict_sys.latch Let us disable those tests on Valgrind in order to avoid bogus failures.
30 lines
774 B
Plaintext
30 lines
774 B
Plaintext
-- source include/have_innodb.inc
|
|
-- source include/no_valgrind_without_big.inc
|
|
|
|
let $MYSQLD_DATADIR=`select @@datadir`;
|
|
CREATE TABLE t1(f1 int auto_increment primary key,
|
|
f2 varchar(256),
|
|
f3 text) engine = innodb;
|
|
let $numinserts = 500;
|
|
--disable_query_log
|
|
begin;
|
|
while ($numinserts)
|
|
{
|
|
dec $numinserts;
|
|
eval INSERT INTO t1(f2,f3) VALUES ('repairman', repeat('unicycle', 1000));
|
|
}
|
|
commit;
|
|
--enable_query_log
|
|
FLUSH TABLE t1 FOR EXPORT;
|
|
UNLOCK TABLES;
|
|
|
|
let SEARCH_PATTERN= unicycle|repairman;
|
|
let SEARCH_FILE= $MYSQLD_DATADIR/test/t1.ibd;
|
|
-- source include/search_pattern_in_file.inc
|
|
DELETE FROM t1;
|
|
-- source include/wait_all_purged.inc
|
|
FLUSH TABLE t1 FOR EXPORT;
|
|
UNLOCK TABLES;
|
|
-- source include/search_pattern_in_file.inc
|
|
DROP TABLE t1;
|