diff options
author | kaa@polly.(none) <> | 2007-11-23 13:13:37 +0300 |
---|---|---|
committer | kaa@polly.(none) <> | 2007-11-23 13:13:37 +0300 |
commit | 347c33d606ec1ecfd208951a95b61a41bbe8d69f (patch) | |
tree | 85e0858bf38dc339b2af78254daf999b60056095 /mysql-test/lib | |
parent | 74bc350bcc7df6bda9b548501037e16ac6715063 (diff) | |
download | mariadb-git-347c33d606ec1ecfd208951a95b61a41bbe8d69f.tar.gz |
Fix for bug #32080: Excessive warnings on Solaris: setrlimit could not
change the size of core files.
Suppress the 'setrlimit could not change the size of the core files'
warning in mysql-test-run. We do not want core files on some of the
PushBuild hosts, and PushBuild itself does not set --core-files, so
that warning is expected.
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_report.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl index dcd7d1ec842..53854a6e3b9 100644 --- a/mysql-test/lib/mtr_report.pl +++ b/mysql-test/lib/mtr_report.pl @@ -346,7 +346,10 @@ sub mtr_report_stats ($) { # BUG#29839 - lowercase_table3.test: Cannot find table test/T1 # from the internal data dictiona - /Cannot find table test\/BUG29839 from the internal data dictionary/ + /Cannot find table test\/BUG29839 from the internal data dictionary/ or + # BUG#32080 - Excessive warnings on Solaris: setrlimit could not + # change the size of core files + /setrlimit could not change the size of core files to 'infinity'/ ) { next; # Skip these lines |