diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2011-09-19 16:11:15 +0200 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2011-09-19 16:11:15 +0200 |
commit | 7658a8eb496b34a156332e8cb0b2d810024f3147 (patch) | |
tree | 540eb5cde14a1096831e5c27275a22d6ba64b570 /mysql-test/mysql-test-run.pl | |
parent | 69d533866971d9eeafed44b7d659b28c37fc6f5c (diff) | |
parent | 6f8928cf468d24cceb992307ecdf2777240bad3f (diff) | |
download | mariadb-git-7658a8eb496b34a156332e8cb0b2d810024f3147.tar.gz |
upmerge 12916194
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 288aa2dfda2..43267ad303b 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -4196,6 +4196,11 @@ sub extract_server_log ($$) { else { push(@lines, $line); + if (scalar(@lines) > 1000000) { + $Ferr = undef; + mtr_warning("Too much log from test, bailing out from extracting"); + return (); + } } } else |