mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
e66c574df9
the --big-test flag is supplied. Test is too resource intensive under normal valgrind runs (takes more than 30min on powerful hardware). mysql-test/include/no_valgrind_without_big.inc: Add MTR prerequisite file by Matthias Leich. mysql-test/suite/funcs_1/t/myisam_views.test: Test is too resource intensive under "Valgrind".
12 lines
364 B
PHP
12 lines
364 B
PHP
# include/no_valgrind_without_big.inc
|
|
#
|
|
# If we are running with Valgrind ($VALGRIND_TEST <> 0) than the resource
|
|
# consumption (storage space needed, runtime ...) will be extreme.
|
|
# Therefore we require that the option "--big-test" is also set.
|
|
#
|
|
|
|
if (`SELECT $VALGRIND_TEST <> 0 AND '$BIG_TEST' = ''`)
|
|
{
|
|
--skip Need "--big-test" when running with Valgrind
|
|
}
|
|
|