diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-11-22 18:43:53 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-11-22 18:43:53 +0100 |
commit | e3108e6d2b71eb27fcad0e32a049a91313aa7c79 (patch) | |
tree | 9f215d851ce5063965b68067b6ab27f4112c29ff /mysql-test/suite.pm | |
parent | 912bbfda128bbfa049eb0d8fc7789eebe8553e6b (diff) | |
download | mariadb-git-e3108e6d2b71eb27fcad0e32a049a91313aa7c79.tar.gz |
silence stderr correctly
Diffstat (limited to 'mysql-test/suite.pm')
-rw-r--r-- | mysql-test/suite.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite.pm b/mysql-test/suite.pm index ac4068a6373..bef37ac4d04 100644 --- a/mysql-test/suite.pm +++ b/mysql-test/suite.pm @@ -53,7 +53,7 @@ sub skip_combinations { $skip{'include/check_ipv6.inc'} = 'No IPv6' unless ipv6_ok(); $skip{'t/openssl_6975.test'} = 'no or too old openssl' - unless ! IS_WINDOWS and ! system "openssl ciphers TLSv1.2 2>&1 >/dev/null"; + unless ! IS_WINDOWS and ! system "openssl ciphers TLSv1.2 >/dev/null 2>&1"; %skip; } |