diff options
author | Michael Widenius <monty@askmonty.org> | 2012-06-13 12:59:45 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2012-06-13 12:59:45 +0300 |
commit | 94d68777bbb0ebd42674a4fae77c414050ef57d8 (patch) | |
tree | 66a65bef67fec8fa3052913709fc0da72fa4070e /unittest/mysys | |
parent | 036c4d8e8f67b5a6a805503a2861c7608c23970a (diff) | |
download | mariadb-git-94d68777bbb0ebd42674a4fae77c414050ef57d8.tar.gz |
Fixed some compiler warnings and test failures found by buildbot
client/mysqldump.c:
Added LINT_INIT
mysql-test/mysql-test-run.pl:
Disable warning if example engine is not found
mysql-test/suite/rpl/t/rpl_semi_sync.test:
Rpl_semi_sync_master_yes_tx may be different on Windows
sql/sql_plugin.cc:
More DBUG_PRINT
support-files/compiler_warnings.supp:
Disable some innobase warnings
unittest/mysys/my_vsnprintf-t.c:
Fixed test failure on Solaris (typo)
Diffstat (limited to 'unittest/mysys')
-rw-r--r-- | unittest/mysys/my_vsnprintf-t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mysys/my_vsnprintf-t.c b/unittest/mysys/my_vsnprintf-t.c index db0139945f4..3a76ffc902f 100644 --- a/unittest/mysys/my_vsnprintf-t.c +++ b/unittest/mysys/my_vsnprintf-t.c @@ -202,7 +202,7 @@ int main(void) const char *results[]= { "Error 1 - Operation not permitted", /* Linux */ - "Error 1 - Not Owner", /* Solaris */ + "Error 1 - Not owner", /* Solaris */ NullS }; test_many(results, "Error %M", 1); |